/* Aqua Therapy Hero Section - Premium Design */

.aqua-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-bg);
    padding: 6rem 2rem;
}

.program-banner .btn-outline,
.program-banner .hero-benefits {
    display: none;
}

.aqua-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Media - Image Section */
.aqua-hero-media {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(2, 48, 75, 0.15);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aqua-hero-media:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(3, 120, 190, 0.3) 0%, rgba(0, 146, 68, 0.25) 100%);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.aqua-hero-media:hover .hero-overlay {
    opacity: 0.5;
}

/* Hero Content - Text Section */
.aqua-hero-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.badge {
    margin-bottom: 0.75rem;
}

.hero-title {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0 0 0.6rem;
    letter-spacing: -0.5px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 550px;
    margin: 0;
    font-weight: 400;
}

/* Hero Benefits - Quick Stats */
.hero-benefits {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.benefit-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-lighter);
    color: var(--green-primary);
    border-radius: 10px;
    font-size: 1.1rem;
}

/* Hero Actions - CTA Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .aqua-hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .aqua-hero-container {
        gap: 2rem;
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .aqua-hero {
        padding: 4rem 2rem;
        min-height: auto;
    }

    .aqua-hero-media {
        height: 500px;
    }

    .aqua-hero-content {
        width: 100%;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .benefit-item {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .aqua-hero {
        padding: 3rem 1.5rem;
    }

    .hero-subtext {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-benefits {
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .benefit-item i {
        font-size: 1rem;
    }

    .aqua-hero-media {
        height: 300px;
    }
}
