* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ed1e79;
    --primary-pink-light: #ed1e7995;
    --navy-blue: #00007c;
    --light-pink: #f0808090;
    --light-pink-subtle: #fff0f5;
    --white: #ffffff;
    --gradient-pink: linear-gradient(135deg, #ed1e79 0%, #ff6b9d 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* CRITICAL FIX: Ensures header stays on top of hero section */
header {
    position: relative;
    z-index: 10009;
}

/* Hide content during intro */
body.intro-active {
    overflow: hidden;
}

body.intro-active header,
body.intro-active .hero,
body.intro-active .about,
body.intro-active .why-choose,
body.intro-active .faqs,
body.intro-active .testimonials,
body.intro-active .contact,
body.intro-active .footer {
    opacity: 0;
    visibility: hidden;
}

body.loaded header,
body.loaded .hero,
body.loaded .about,
body.loaded .why-choose,
body.loaded .faqs,
body.loaded .testimonials,
body.loaded .contact,
body.loaded .footer {
    opacity: 1;
    visibility: visible;
    animation: fadeInContent 1s ease forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Intro Overlay */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #fff5f8 0%, #ffffff 40%, #fff0f5 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

html.intro-seen .intro-overlay {
    display: none !important;
}

/* Background Particles Canvas */
#bgParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-animation {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.animation-stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.animation-stage.active {
    opacity: 1;
}

.animation-stage img {
    width: auto;
    height: 65vh;
    max-width: 90vw;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1);
}

.animation-stage p {
    margin-top: 30px;
    font-size: 28px;
    font-weight: 300;
    color: var(--navy-blue);
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.intro-logo {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.intro-logo.active {
    opacity: 1;
}

.intro-logo img {
    width: 350px;
    max-width: 80vw;
    mix-blend-mode: multiply;
}

.intro-logo p {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-pink);
    text-align: center;
    letter-spacing: 2px;
}

.skip-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 10px 24px;
    background: transparent;
    color: var(--navy-blue);
    border: 1px solid rgba(0, 0, 124, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.skip-intro:hover {
    opacity: 1;
    border-color: var(--navy-blue);
}

/* Timeline Progress Indicator */
.timeline-progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 20;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(237, 30, 121, 0.3);
    border: 2px solid rgba(237, 30, 121, 0.5);
    transition: all 0.4s ease;
    cursor: default;
}

.progress-dot.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    box-shadow: 0 0 12px rgba(237, 30, 121, 0.5);
    transform: scale(1.2);
}

.progress-dot.completed {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
}

.progress-dot.logo-dot {
    width: auto;
    height: auto;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.progress-dot.logo-dot.active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: none;
}

.progress-line {
    width: 20px;
    height: 2px;
    background: rgba(237, 30, 121, 0.3);
    transition: all 0.4s ease;
}

.progress-line.active {
    background: var(--primary-pink);
}

/* Mobile Timeline Progress */
@media (max-width: 768px) {
    .timeline-progress {
        bottom: 100px;
        gap: 0;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }

    .progress-line {
        width: 12px;
    }

    .progress-dot.logo-dot {
        font-size: 14px;
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Connect Links Centering */
@media (min-width: 993px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }
}

.logo img {
    width: 180px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-blue);
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.whatsapp-icon button {
    background-color: #25D366;
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hero Section */
.hero {
    margin: 0;
    padding: 80px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.85) 100%),
        url('../assets/hero-background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 80px);
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.hero-button {
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    margin-top: 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 30, 121, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 30, 121, 0.4);
}

.hero-button svg {
    fill: var(--white);
}

.hero-image img {
    width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(237, 30, 121, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about {
    margin: 0;
    padding: 100px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background: var(--gradient-pink);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    z-index: 1;
}

.about-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.about-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    opacity: 0.95;
}

.about-button {
    background-color: var(--white);
    color: var(--primary-pink);
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-button:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-button svg {
    fill: var(--primary-pink);
}

.about-image img {
    width: 450px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Teacher Section */
.teacher {
    padding: 100px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    background-color: var(--white);
}

.teacher-content {
    flex: 1;
}

.teacher-content h2 {
    font-size: 36px;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.teacher-content h3 {
    font-size: 24px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 5px;
}

.teacher-content h4 {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-bottom: 24px;
}

.teacher-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.qualifications {
    list-style: none;
}

.qualifications li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--navy-blue);
    margin-bottom: 12px;
    font-weight: 500;
}

.qualifications li svg {
    color: var(--primary-pink);
}

.teacher-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.teacher-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--light-pink-subtle);
    border: 5px solid var(--white);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 60px;
    background: var(--white);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.why-choose-header p {
    font-size: 18px;
    color: #666;
}

.why-choose-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 350px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 30, 121, 0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(237, 30, 121, 0.15);
    border-color: var(--primary-pink);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    fill: var(--white);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.why-choose-image img {
    width: 400px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(237, 30, 121, 0.2);
}

/* FAQs Section */
.faqs {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--light-pink-subtle) 0%, var(--white) 100%);
}

.faqs-header {
    text-align: center;
    margin-bottom: 60px;
}

.faqs-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.faqs-header p {
    font-size: 18px;
    color: #666;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(237, 30, 121, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-pink);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-pink-subtle);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
}

.faq-toggle {
    font-size: 28px;
    color: var(--primary-pink);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 80px;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.testimonials-header p {
    font-size: 18px;
    color: #666;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 30, 121, 0.1);
    transition: all 0.3s ease;
    margin: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(237, 30, 121, 0.15);
    border-color: var(--primary-pink);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-pink);
    box-shadow: 0 5px 20px rgba(237, 30, 121, 0.2);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars span {
    font-size: 24px;
    color: #FFD700;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.testimonial-title {
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 100px 80px;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.gallery-header p {
    font-size: 18px;
    color: #666;
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default Desktop Grid Layout */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Buttons Hidden on Desktop */
.gallery-btn,
.gallery-dots {
    display: none;
}

/* Tablet & Mobile Styles (Carousel Mode) */
@media (max-width: 1024px) {
    .gallery {
        padding: 60px 20px;
    }

    .gallery-wrapper {
        padding: 0 10px;
    }

    .gallery-container {
        display: flex;
        overflow-x: hidden;
        /* JS will handle scrolling/transform */
        scroll-behavior: smooth;
        gap: 0;
        /* No gap for slider logic, handle via padding if needed */
        border-radius: 20px;
        width: 100%;
        max-width: 600px;
        /* Limit width on tablet */
    }

    .gallery-item {
        min-width: 100%;
        height: 350px;
        flex-shrink: 0;
        border-radius: 20px;
    }

    /* Navigation Buttons */
    .gallery-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: var(--white);
        color: var(--primary-pink);
        border: 1px solid var(--primary-pink);
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }

    .gallery-btn:hover {
        background: var(--primary-pink);
        color: var(--white);
    }

    .prev-btn {
        left: -15px;
    }

    .next-btn {
        right: -15px;
    }

    /* Dots */
    .gallery-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dot.active {
        background: var(--primary-pink);
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-item {
        height: 250px;
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }
}

/* Contact Form Section */
.contact {
    padding: 100px 80px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Stretch children to match height */
    gap: 80px;
    background: linear-gradient(135deg, var(--light-pink-subtle) 0%, var(--white) 100%);
}

.contact-image {
    flex: 0 1 600px;
    /* Fixed width, grow height */
    position: relative;
    display: flex;
    /* Remove line-height gaps */
}

.contact-image img,
.contact-image iframe {
    width: 100%;
    height: 100%;
    /* Fill the flex parent */
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(237, 30, 121, 0.2);
    border: none;
    object-fit: cover;
}

/* Tablet/Mobile Adjustments for Contact */
@media (max-width: 1024px) {
    .contact {
        flex-direction: column;
        align-items: center;
        /* Reset stretch on mobile */
        padding: 60px 20px;
        gap: 40px;
    }

    .contact-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        height: 400px;
        /* Fixed height on mobile */
    }
}

.contact-form-container {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically if form is shorter than map (unlikely) */
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #eee;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(237, 30, 121, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    color: #555;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(237, 30, 121, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(237, 30, 121, 0.4);
}

.submit-button svg {
    fill: var(--white);
}

/* Footer */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    padding: 0 80px 60px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-pink);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item svg {
    fill: var(--primary-pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-hours p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-cta {
    margin-top: 24px;
}

.footer-button {
    display: inline-block;
    background: var(--gradient-pink);
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 30, 121, 0.3);
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 30, 121, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 80px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 80px;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(237, 30, 121, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(237, 30, 121, 0.15);
    border-color: var(--primary-pink);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-pink);
    box-shadow: 0 15px 50px rgba(237, 30, 121, 0.2);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.card-header p {
    color: #888;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.features li {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-pink);
    font-weight: bold;
}

.pricing-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover,
.pricing-btn.primary {
    background: var(--primary-pink);
    color: white;
}

.pricing-btn.primary:hover {
    background: #d41467;
    border-color: #d41467;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero {
        padding: 60px 60px;
    }

    .why-choose-container {
        flex-wrap: wrap;
    }

    .why-choose-image {
        order: -1;
    }

    .features-left,
    .features-right {
        flex-direction: row;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-box {
        max-width: 350px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem;
    }

    .hero,
    .about,
    .contact {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-image img,
    .about-image img,
    .contact-image img,
    .why-choose-image img {
        width: 100%;
        max-width: 400px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 40px 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

/* Video Testimonials */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    width: 100%;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(237, 30, 121, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(237, 30, 121, 0.5);
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-size: 18px;
}

.video-info p {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    background: var(--white);
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-header h2 {
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--navy-blue);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-pink);
}


/* Community Section */
.community {
    padding: 100px 80px;
    background: #fffafa;
}

.community-header {
    text-align: center;
    margin-bottom: 60px;
}

.community-header h2 {
    font-size: 48px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 16px;
    /* Added margin match */
}

.community-header p {
    font-size: 18px;
    color: #666;
}

.community-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.community-column {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.community-column h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-pink-subtle);
}

/* Event Cards */
.event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #fdfdfd;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-pink);
}

.event-date {
    background: var(--gradient-pink);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.event-date .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 18px;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.event-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.event-time {
    font-size: 12px;
    color: var(--primary-pink);
    font-weight: 600;
}

.join-btn {
    padding: 8px 20px;
    border: 1px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: var(--primary-pink);
    color: white;
}

/* Forum List */
.forum-topic {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.forum-topic:last-child {
    border-bottom: none;
}

.topic-icon {
    font-size: 24px;
    background: var(--light-pink-subtle);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.topic-content h4 {
    font-size: 16px;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.topic-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

.topic-meta {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.view-forum-btn {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.view-forum-btn:hover {
    text-decoration: underline;
}


/* Floating Elements */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #128C7E;
}

.float-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    /* Left of WhatsApp */
    width: 50px;
    height: 50px;
    background-color: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-pink);
    transform: translateY(-5px);
}

/* Zoom Transition */
.zoom-transition {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-pink) 0%, #ff6b9d 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

.zoom-transition.active {
    transform: translate(-50%, -50%) scale(50);
    opacity: 1;
}

/* Helper Class */
.scrolled {
    /* Adding this to handle JS effect */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {

    .why-choose-header h2,
    .faqs-header h2,
    .testimonials-header h2,
    .contact-header h2,
    .about-content h2 {
        font-size: 36px;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Form Success Overlay */
.contact-form-container {
    position: relative;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    text-align: center;
    padding: 40px;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-overlay h3 {
    color: var(--primary-pink);
    font-size: 28px;
    margin-bottom: 10px;
}

.form-overlay p {
    color: #555;
    margin-bottom: 20px;
}

/* Portal Reveal Effect */
.intro-overlay.portal-active {
    -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
    mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
    animation: expandPortal 1.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes expandPortal {
    0% {
        -webkit-mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
        mask-image: radial-gradient(circle at center, transparent 0%, black 0%);
    }

    100% {
        -webkit-mask-image: radial-gradient(circle at center, transparent 150%, black 150%);
        mask-image: radial-gradient(circle at center, transparent 150%, black 150%);
    }
}

/* Skip Intro Z-Index Fix */
.skip-intro {
    z-index: 10001 !important;
}

/* =========================================
   New Improvements - Accessibility & Features
   ========================================= */

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--navy-blue);
    color: white;
    padding: 8px;
    z-index: 10002;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility: Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--navy-blue);
    outline-offset: 2px;
}

/* Accessibility: Contrast Improvements for Pink Text */
.blog-date,
.event-time,
.check-icon {
    color: #d41467;
    /* Darker pink for better contrast on white */
}

/* Video Modal Styles */
.video-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 10005;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    background-color: #000;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-pink);
    text-decoration: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe,
.video-container .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    .hero,
    .footer,
    .intro-overlay {
        width: 100%;
        overflow-x: hidden;
    }

    /* Improve touch targets */
    .net-link,
    button,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-date {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10006;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    display: none;
    /* Initial state hidden to prevent FOUC */
}

.cookie-banner.visible {
    transform: translateY(0);
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 4px 10px rgba(237, 30, 121, 0.2);
}

.cookie-btn.accept:hover {
    background: #d41467;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
}

.cookie-btn.decline:hover {
    border-color: #999;
    color: #333;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Mobile Menu */
/* ============================================
   RESPONSIVE MOBILE NAVIGATION
   ============================================ */

/* Hamburger Menu - Hidden on Desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10008;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--navy-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
        position: relative;
    }

    /* Show Hamburger */
    .hamburger-menu {
        display: flex;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Nav Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10007;
        padding: 80px 20px 40px;
        gap: 25px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 20px;
        display: block;
        width: 100%;
    }

    /* Hide WhatsApp button on mobile (it's in floating button) */
    .whatsapp-icon {
        display: none;
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10006;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Global Responsive Layout Adjustments */
@media (max-width: 992px) {

    /* Sections Global */
    section {
        padding: 60px 20px !important;
        /* Override section paddings */
    }

    .hero {
        min-height: auto;
        padding-top: 100px !important;
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    /* About Section */
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about::before {
        width: 300px;
        height: 300px;
        top: -10%;
        right: -10%;
    }

    .about-content {
        align-items: center;
    }

    .about-image img {
        width: 100%;
        max-width: 400px;
    }

    /* Teacher Section */
    .teacher {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .teacher-content h2,
    .teacher-content h3,
    .teacher-content h4 {
        text-align: center;
    }

    .qualifications {
        display: inline-block;
        text-align: left;
    }

    .teacher-image img {
        max-width: 100%;
        width: 350px;
    }

    /* Why Choose Us */
    .why-choose-container {
        flex-direction: column;
        gap: 40px;
    }

    .features-left,
    .features-right {
        order: 2;
    }

    .why-choose-image {
        order: 1;
    }

    .why-choose-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    /* Contact Section */
    .contact {
        flex-direction: column;
    }

    .contact-image iframe {
        width: 100%;
        height: 300px;
    }

    .contact-form-container {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 32px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .testimonials-header h2 {
        font-size: 32px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        align-items: center;
    }
}
/* ===================================
   FORM VALIDATION STATES
   =================================== */
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10B981;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #EF4444;
}

/* ===================================
   SKELETON LOADING STATES
   =================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

body:not(.content-loaded) .hero-content h1::before {
    content: '';
    display: block;
    width: 80%;
    height: 60px;
    margin-bottom: 20px;
}
/* ===================================
   MOBILE TOUCH-FRIENDLY OPTIMIZATIONS
   =================================== */
@media (max-width: 768px) {
    /* Touch-friendly buttons - minimum 48px tap target */
    button, 
    .nav-links a, 
    .pricing-btn,
    .hero-button,
    .about-button,
    .submit-button {
        min-height: 48px;
        min-width: 48px;
        padding: 14px 24px;
    }
    
    /* Larger tap targets for interactive elements */
    .faq-question {
        padding: 20px;
        min-height: 48px;
    }
    
    /* Gallery navigation buttons */
    .gallery-btn {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
    }
    
    /* Back to top button */
    .back-to-top {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    /* WhatsApp floating button */
    .float-whatsapp {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 90px;
    }
}
