/* Services Page Styles */

/* Services Description Section */
.services-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.services-description .section-title {
    color: #148f76;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.services-description .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #148f76, #0d6b5a);
    border-radius: 2px;
}

.services-description .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Services Cards Section */
.services-cards-section {
    background: #ffffff;
    padding: 5rem 0;
}

.services-cards-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-cards-section .section-title {
    color: #148f76;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.services-cards-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #148f76, #0d6b5a);
    border-radius: 2px;
}

.services-cards-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card Enhancements */
.service-card {
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #ffffff;
    height: 350px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card .card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .circle-image {
    width: auto;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: 2rem;
}

.service-card .circle-image img {
    object-fit: cover;
}

.service-card .card-content {
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
}

.service-card .card-title-container {
    margin-bottom: 1rem;
}

.service-card .card-title {
    color: #148f76;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #148f76;
    border-radius: 1px;
}

.service-card .card-text-container {
    margin-bottom: 1.5rem;
}

.service-card .card-text {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #148f76 0%, #0d6b5a 100%);
    padding: 5rem 0;
    color: white;
}

.cta-section .container {
    position: relative;
}

.cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-section .btn-primary-custom {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-section .btn-primary-custom:hover {
    background: white;
    color: #148f76;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

.cta-section .btn-outline-custom:hover {
    background: white;
    color: #148f76;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-description,
    .services-cards-section,
    .cta-section {
        padding: 3rem 0;
    }

    .services-description .section-subtitle {
        font-size: 1rem;
    }

    .service-card .card-content {
        padding: 1.5rem 1rem;
    }

    .service-card .circle-image {
        height: 150px;
    }

    .service-card .circle-image img {
        width: 100px;
        height: 100px;
    }

    .cta-section .cta-title {
        font-size: 2rem;
    }

    .cta-section .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .service-card .card-title {
        font-size: 1.1rem;
    }

    .service-card .card-text {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animations for multiple elements */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }
