﻿/* Hero Section */
.hero-section-services {
    background: url('/images/hero-services-1024.jpg') center /cover no-repeat;
    background-size: cover;
    height: 64vh;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section-services {
        background-image: url('/images/hero-services-768.jpg');
        height: 46vh;
    }
}

@media (max-width: 480px) {
    .hero-section-services {
        background-image: url('/images/hero-services-320.jpg');
        height: 33vh;
    }
}

.hero-section-services .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 60, 0.5);
}

/* Services Overview Section */
.services-overview {
    background-color: #f8f9fa;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        border-color: #0077b6;
    }

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    background-color: #e3f2fd;
    padding: 1rem;
}

.service-title {
    color: #0077b6;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

    .service-benefits li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        color: #333;
    }

        .service-benefits li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2a9d8f;
            font-weight: bold;
        }

/* Virtual Sessions Card */
.virtual-sessions-card {
    background: linear-gradient(135deg, #0077b6, #2a9d8f);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

    .virtual-sessions-card h3 {
        color: white;
    }

.virtual-benefits {
    list-style: none;
    padding-left: 0;
}

    .virtual-benefits li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }

        .virtual-benefits li::before {
            content: "🌐";
            position: absolute;
            left: 0;
        }

/* Sherly Section */
.sherly-intro-section {
    background-color: #f8f9fa;
}

.sherly-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    object-position: center top;
    border: 4px solid #0077b6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sherly-img {
        width: 140px;
        height: 140px;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0077b6, #2a9d8f);
}

.stat-card {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD166;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Getting Started Section */
.getting-started {
    background-color: white;
}

.step-card {
    padding: 2rem 1rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077b6, #2a9d8f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h4 {
    color: #0077b6;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Additional Services */
.additional-services {
    border-top: 1px solid #dee2e6;
}

    .additional-services h5 {
        margin-bottom: 0.5rem;
    }

    .additional-services .text-muted {
        font-size: 0.85rem;
    }

    .additional-services a:hover h5 {
        color: #2a9d8f !important;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .virtual-sessions-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .step-card {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .service-benefits li,
    .virtual-benefits li {
        font-size: 0.9rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animation classes for hero section */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
