/* --- Registration Notice Styling --- */
.registration-notice {
    background: linear-gradient(90deg, #F0F9FF 0%, #f8fcff 100%);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,119,182,0.07);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    margin: 1.5rem auto 2.2rem auto;
    max-width: 520px;
    text-align: center;
    border: 1.5px solid #CAF0F8;
    position: relative;
}
.registration-notice h3 {
    color: #0077B6;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.registration-notice p {
    color: #334155;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
}
.registration-notice h3:last-of-type {
    color: #FF6B6B;
    margin-top: 1.1rem;
    margin-bottom: 0.5rem;
}
.registration-notice::before {
    content: "🎉";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.1rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(0,119,182,0.08);
    padding: 0.2rem 0.7rem;
}
@media (max-width: 600px) {
    .registration-notice {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 98vw;
    }
}

 

#programs {
    padding: 5rem 5%;
    background: linear-gradient(180deg, #F0F9FF 0%, #ffffff 100%);
    position: relative;
}

#programs h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #023E58;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programs-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Programs Grid - Professional Card Layout */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

/* Program Card */
.program-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 119, 182, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 8px 24px rgba(0, 119, 182, 0.15),
        0 16px 48px rgba(0, 119, 182, 0.1);
    border-color: #0077B6;
}

/* Featured & Premium Cards */
.program-card.featured {
    border: 2px solid #0077B6;
    background: linear-gradient(135deg, #ffffff 0%, #F0F9FF 100%);
}

.program-card.special {
    border: 2px solid #FF6B6B;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.program-card.premium {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

/* Featured Ribbon */
.featured-ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    background: linear-gradient(135deg, #0077B6, #005F8A);
    color: white;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.4);
    z-index: 5;
}

.premium-ribbon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Icon Wrapper */
.program-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077B6 0%, #0096C7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
    transition: transform 0.3s ease;
}

.program-card:hover .program-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
}

.program-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Font Awesome program icons */
.program-fa-icon {
    font-size: 1.8rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.program-card:hover .program-fa-icon {
    transform: scale(1.15);
}

/* Program Title */
.program-title {
    font-size: 1.3rem;
    color: #023E58;
    margin-bottom: 0.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.program-subtitle-small {
    font-size: 0.9rem;
    color: #023E58;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Age Range */
.program-age {
    font-size: 0.9rem;
    color: #0077B6;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description */
.program-description {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

/* Features List */
.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.program-features li {
    padding: 0.35rem 0;
    color: #334155;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.program-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0077B6, #0096C7);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Pricing */
.program-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid #F0F9FF;
}

.price-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: #023E58;
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

/* CTA Button */
.program-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FF6B6B, #E05555);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.program-cta:hover {
    background: linear-gradient(135deg, #E05555, #cc4444);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.program-cta:active {
    transform: translateY(0);
}

/* Special Variants */
.program-card.featured .program-cta {
    background: linear-gradient(135deg, #0077B6, #005F8A);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.4);
}

.program-card.special .program-icon-wrapper {
    background: linear-gradient(135deg, #FF6B6B, #E05555);
}

.program-card.special .program-features li::before {
    background: linear-gradient(135deg, #FF6B6B, #E05555);
}

.program-card.premium .program-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.program-card.premium .program-features li::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Animation on Scroll */
.program-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.15s; }
.program-card:nth-child(3) { animation-delay: 0.2s; }
.program-card:nth-child(4) { animation-delay: 0.25s; }
.program-card:nth-child(5) { animation-delay: 0.3s; }
.program-card:nth-child(6) { animation-delay: 0.35s; }
.program-card:nth-child(7) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    #programs {
        padding: 4rem 1.5rem;
    }

    #programs h2 {
        font-size: 2.2rem;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .program-card {
        padding: 1.5rem;
    }

    .program-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    #programs {
        padding: 3rem 1rem;
    }

    #programs h2 {
        font-size: 1.9rem;
    }

    .programs-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card {
        padding: 1.5rem;
    }

    .program-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .program-icon {
        width: 35px;
        height: 35px;
    }

    .program-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 1.7rem;
    }

    .featured-ribbon {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
}

/* PRINT STYLES */

@media print {
    .program-cta,
    .featured-ribbon {
        display: none;
    }

    .program-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}


/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background-color: #F9F9F9;
}

/* ========================================
   MODERN HEADER & NAVIGATION
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(240, 249, 255, 0.85) 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* --- Animated Water Ripple Border --- */
.header-ripple {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 18px;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.header-ripple svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ripple-wave {
    transform-origin: center;
}

.ripple-1 {
    animation: rippleFlow1 4s ease-in-out infinite;
}

.ripple-2 {
    animation: rippleFlow2 5s ease-in-out infinite;
}

.ripple-3 {
    animation: rippleFlow3 6s ease-in-out infinite;
}

.ripple-line {
    animation: rippleLineShimmer 3s ease-in-out infinite;
}

@keyframes rippleFlow1 {
    0%, 100% {
        d: path("M0,9 C120,2 240,16 360,9 C480,2 600,16 720,9 C840,2 960,16 1080,9 C1200,2 1320,16 1440,9 L1440,18 L0,18 Z");
    }
    50% {
        d: path("M0,9 C120,16 240,2 360,9 C480,16 600,2 720,9 C840,16 960,2 1080,9 C1200,16 1320,2 1440,9 L1440,18 L0,18 Z");
    }
}

@keyframes rippleFlow2 {
    0%, 100% {
        d: path("M0,10 C100,4 200,16 360,10 C520,4 640,16 720,10 C800,4 960,16 1080,10 C1200,4 1360,16 1440,10 L1440,18 L0,18 Z");
    }
    50% {
        d: path("M0,10 C140,16 280,4 420,10 C560,16 700,4 840,10 C980,16 1120,4 1260,10 C1400,16 1440,10 1440,10 L1440,18 L0,18 Z");
    }
}

@keyframes rippleFlow3 {
    0%, 100% {
        d: path("M0,11 C180,5 300,17 480,11 C660,5 780,17 960,11 C1140,5 1260,17 1440,11 L1440,18 L0,18 Z");
    }
    50% {
        d: path("M0,11 C180,17 360,5 540,11 C720,17 900,5 1080,11 C1260,17 1380,5 1440,11 L1440,18 L0,18 Z");
    }
}

@keyframes rippleLineShimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Scrolled / compact state */
header.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 249, 255, 0.94) 100%);
    backdrop-filter: blur(28px) saturate(2);
    -webkit-backdrop-filter: blur(28px) saturate(2);
    box-shadow:
        0 1px 0 rgba(0, 119, 182, 0.06),
        0 4px 16px rgba(0, 119, 182, 0.08),
        0 12px 40px rgba(0, 119, 182, 0.04);
}

header.scrolled nav {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

header.scrolled .logo-img {
    height: 58px;
}

/* --- Navigation Bar --- */
nav {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0.9rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 76px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0, 119, 182, 0.10));
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.3s ease,
                transform 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 16px rgba(0, 119, 182, 0.20));
    transform: scale(1.03);
}

/* --- Nav Menu (Desktop) --- */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(240, 249, 255, 0.64));
    border-radius: 60px;
    padding: 0.4rem 0.5rem;
    border: 1px solid rgba(0, 119, 182, 0.12);
    box-shadow:
        0 8px 24px rgba(0, 119, 182, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.nav-menu li {
    list-style: none;
}

.nav-menu li > a {
    cursor: pointer;
    color: #334155;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2px;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: color 0.25s ease,
                background 0.25s ease,
                transform 0.2s ease,
                box-shadow 0.25s ease;
    user-select: none;
    white-space: nowrap;
}

/* Animated underline dot + bar on hover */
.nav-menu li > a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    bottom: 2px;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #0ea5e9, #0077B6);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                width 0.3s ease;
}

.nav-menu li > a:not(.cta-btn):hover::after,
.nav-menu li > a:not(.cta-btn):focus::after {
    transform: translateX(-50%) scaleX(1);
}

@keyframes waveUnderline {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-menu li > a:not(.cta-btn):hover,
.nav-menu li > a:not(.cta-btn):focus {
    color: #0077B6;
    background: rgba(14, 165, 233, 0.14);
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.10);
}

.nav-menu li > a:not(.cta-btn):active {
    color: #005F8A;
    background: rgba(0, 95, 138, 0.14);
    transform: scale(0.96);
}

.nav-menu li > a:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.35);
    outline-offset: 2px;
}

/* --- CTA Button (Contact Us) --- */
.nav-menu .cta-btn {
    background: linear-gradient(135deg, #0077B6 0%, #0ea5e9 100%);
    color: #fff !important;
    padding: 0.65rem 1.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border: none;
    box-shadow:
        0 2px 8px rgba(0, 119, 182, 0.25),
        0 0 0 0 rgba(14, 165, 233, 0);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-left: 0.25rem;
}

.nav-menu .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.nav-menu .cta-btn:hover::before {
    left: 100%;
}

.nav-menu .cta-btn::after {
    display: none;
}

.nav-menu .cta-btn:hover {
    background: linear-gradient(135deg, #005F8A 0%, #0077B6 100%);
    box-shadow:
        0 4px 16px rgba(0, 119, 182, 0.35),
        0 0 0 3px rgba(14, 165, 233, 0.12);
    transform: translateY(-2px);
    color: #fff !important;
}

.nav-menu .cta-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 6px rgba(0, 119, 182, 0.20);
}

.nav-menu .cta-btn:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.35);
    outline-offset: 2px;
}

/* --- Mobile Navigation Toggle --- */
.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(0, 119, 182, 0.10);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-toggle:hover {
    background: rgba(14, 165, 233, 0.10);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.10);
}

.nav-toggle.active {
    background: rgba(14, 165, 233, 0.16);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 3px 14px rgba(14, 165, 233, 0.16);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #0077B6, #0ea5e9);
    margin: 3px auto;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Modern Hero Section */
#home {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(1.15);
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(0,30,60,0.25) 0%, rgba(0,119,182,0.18) 40%, rgba(0,180,216,0.12) 70%, rgba(0,30,60,0.35) 100%);
    z-index: 2;
}

/* --- Floating Bubbles --- */
.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), rgba(14,165,233,0.08));
    border: 1px solid rgba(255,255,255,0.15);
    animation: bubbleFloat linear infinite;
}

.b1 { width: 20px; height: 20px; left: 8%; bottom: -20px; animation-duration: 12s; animation-delay: 0s; }
.b2 { width: 14px; height: 14px; left: 25%; bottom: -14px; animation-duration: 10s; animation-delay: 2s; }
.b3 { width: 28px; height: 28px; left: 45%; bottom: -28px; animation-duration: 14s; animation-delay: 1s; }
.b4 { width: 10px; height: 10px; left: 62%; bottom: -10px; animation-duration: 11s; animation-delay: 3s; }
.b5 { width: 18px; height: 18px; left: 78%; bottom: -18px; animation-duration: 13s; animation-delay: 0.5s; }
.b6 { width: 24px; height: 24px; left: 90%; bottom: -24px; animation-duration: 15s; animation-delay: 4s; }

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.4; }
    100% {
        transform: translateY(-100vh) translateX(-30px) scale(0.6);
        opacity: 0;
    }
}

/* --- Hero Content --- */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    max-width: 1200px;
    width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #00B4D8);
    border-radius: 3px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-badge {
    display: inline-block;
    color: rgba(202, 240, 248, 0.9);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 1.4rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    line-height: 1.08;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.title-highlight {
    color: #0ea5e9;
    text-shadow: 0 2px 30px rgba(14,165,233,0.3);
}

.hero-subtitle {
    font-size: 1.12rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0ea5e9;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    border: none;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.hero-btn:hover {
    background: #0284c7;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-btn-outline {
    display: inline-block;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.65s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 6rem;
    right: 3rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); transform-origin: top; }
}

/* --- Wave Divider --- */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

     /* ========================================
   MOBILE NAVIGATION — FIXED
   Drop this in place of ALL your existing
   mobile nav @media blocks (768px and below)
   ======================================== */
/* ========================================
   MOBILE NAVIGATION — FIXED & COLOR-ALIGNED
   Drop this in place of ALL your existing
   mobile nav @media blocks (768px and below)

   Color palette used (matches site theme):
     Primary blue:   #0077B6
     Sky blue:       #0ea5e9
     Cyan:           #00B4D8
     Dark ocean:     #023E58
     Frost/light:    #F0F9FF / #CAF0F8
   ======================================== */

@media (max-width: 768px) {
    nav {
        padding: 0.6rem 1rem;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo-img {
        height: 48px;
        max-width: 150px;
    }

    header.scrolled .logo-img {
        height: 40px;
    }

    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001 !important;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        background: rgba(0, 119, 182, 0.08) !important;
        border: 1.5px solid rgba(0, 119, 182, 0.18) !important;
    }

    .nav-toggle:hover {
        background: rgba(0, 119, 182, 0.15) !important;
        border-color: rgba(0, 119, 182, 0.30) !important;
    }

    .nav-toggle:focus-visible {
        outline: 3px solid rgba(255, 255, 255, 0.8);
        outline-offset: 2px;
    }

    .hamburger-line {
        background: linear-gradient(90deg, #0077B6, #0ea5e9) !important;
    }

    .header-ripple {
        display: none;
    }

    .nav-menu {
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin: 0 !important;
        list-style: none !important;

        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        min-height: 100dvh !important;
        padding: calc(5.5rem + env(safe-area-inset-top)) 1.2rem calc(2.5rem + env(safe-area-inset-bottom)) !important;

        background: linear-gradient(
            160deg,
            rgba(2, 62, 88, 0.98) 0%,
            rgba(0, 119, 182, 0.97) 55%,
            rgba(0, 180, 216, 0.95) 100%
        ) !important;
        backdrop-filter: blur(20px) saturate(1.5) !important;
        -webkit-backdrop-filter: blur(20px) saturate(1.5) !important;
        box-shadow: inset 0 0 120px rgba(0, 180, 216, 0.08) !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.45rem !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;

        transform: translateY(-105%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0s linear 0.38s !important;
        z-index: 999 !important;
    }

    .nav-menu li {
        width: min(100%, 330px) !important;
        list-style: none !important;
        margin: 0 !important;
    }

    .nav-menu.open {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition:
            transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            visibility 0s linear 0s !important;
    }

    .nav-menu li > a {
        width: 100% !important;
        max-width: none !important;
        min-height: 52px !important;
        padding: 0.95rem 1.25rem !important;
        margin: 0 !important;
        border-radius: 14px !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        text-align: center !important;
        white-space: normal !important;

        color: rgba(255, 255, 255, 0.94) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(202, 240, 248, 0.18) !important;
        box-shadow: 0 2px 12px rgba(0, 119, 182, 0.12) !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transform: none !important;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
        opacity: 0;
        animation: none !important;
    }

    .nav-menu.open li > a {
        animation: navItemIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    }

    .nav-menu.open li:nth-child(1) > a { animation-delay: 0.08s !important; }
    .nav-menu.open li:nth-child(2) > a { animation-delay: 0.13s !important; }
    .nav-menu.open li:nth-child(3) > a { animation-delay: 0.18s !important; }
    .nav-menu.open li:nth-child(4) > a { animation-delay: 0.23s !important; }
    .nav-menu.open li:nth-child(5) > a { animation-delay: 0.28s !important; }
    .nav-menu.open li:nth-child(6) > a { animation-delay: 0.33s !important; }
    .nav-menu.open li:nth-child(7) > a { animation-delay: 0.38s !important; }

    @keyframes navItemIn {
        from {
            opacity: 0;
            transform: translateY(16px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu li > a:not(.cta-btn):hover,
    .nav-menu li > a:not(.cta-btn):focus-visible {
        background: rgba(202, 240, 248, 0.18) !important;
        color: #ffffff !important;
        border-color: rgba(202, 240, 248, 0.35) !important;
        transform: scale(1.02) !important;
        box-shadow: 0 4px 20px rgba(0, 180, 216, 0.25) !important;
    }

    .nav-menu li > a:not(.cta-btn)::after {
        display: none !important;
    }

    .nav-menu .cta-btn {
        margin-top: 0.9rem !important;
        width: 100% !important;
        max-width: none !important;
        border-radius: 999px !important;
        padding: 0.95rem 2rem !important;
        font-size: 1.02rem !important;
        font-weight: 700 !important;
        text-align: center !important;
        background: #ffffff !important;
        color: #0077B6 !important;
        border: none !important;
        box-shadow:
            0 6px 24px rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(0, 119, 182, 0.2) !important;
        letter-spacing: 0.3px !important;
    }

    .nav-menu .cta-btn:hover,
    .nav-menu .cta-btn:focus-visible {
        background: #F0F9FF !important;
        color: #023E58 !important;
        box-shadow:
            0 8px 28px rgba(0, 0, 0, 0.18),
            0 4px 12px rgba(0, 119, 182, 0.25) !important;
        transform: scale(1.03) !important;
    }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .nav-menu,
    .nav-menu.open,
    .nav-menu li > a,
    .nav-menu.open li > a {
        transition: none !important;
        animation: none !important;
    }

    .nav-menu li > a,
    .nav-menu.open li > a {
        opacity: 1 !important;
        transform: none !important;
    }
}

        section {
            padding: 5rem 6%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #0077B6, #00B4D8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* About section */
        #about {
            padding: 6rem 5%;
            background: #FFFFFF;
        }

        .about-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            flex: 1 1 45%;
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 16px;
            display: block;
            position: relative;
            z-index: 2;
        }

        .about-image-accent {
            position: absolute;
            top: 20px;
            left: -16px;
            right: 16px;
            bottom: -20px;
            border-radius: 16px;
            border: 2px solid #0ea5e9;
            opacity: 0.2;
            z-index: 1;
        }

        .about-content {
            flex: 1 1 55%;
        }

        .about-tag {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .about-accent-line {
            display: inline-block;
            width: 32px;
            height: 2px;
            background: #0ea5e9;
            border-radius: 2px;
        }

        .about-tag span:last-child {
            font-size: 0.8rem;
            font-weight: 600;
            color: #0ea5e9;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        #about h2 {
            text-align: left;
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.2rem;
            background: none;
            -webkit-text-fill-color: #1e293b;
            color: #1e293b;
        }

        .about-content .lead {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1.8rem;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .about-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            transition: all 0.25s ease;
        }

        .about-feature-item:hover {
            background: #f0f9ff;
            border-color: rgba(14, 165, 233, 0.15);
            transform: translateX(4px);
        }

        .feature-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 165, 233, 0.08);
            border-radius: 10px;
        }

        .about-feature-item strong {
            display: block;
            color: #1e293b;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .about-feature-item p {
            color: #64748b;
            font-size: 0.88rem;
            line-height: 1.5;
            margin: 0;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #0ea5e9;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 0.6rem 0;
            border-bottom: 2px solid transparent;
            transition: all 0.25s ease;
        }

        .about-cta:hover {
            border-bottom-color: #0ea5e9;
            gap: 0.75rem;
        }

        .about-cta span {
            transition: transform 0.25s ease;
        }

        .about-cta:hover span {
            transform: translateX(4px);
        }

        @media (max-width: 900px) {
            .about-wrapper { flex-direction: column; gap: 2rem; }
            .about-image img { height: 260px; }
            .about-image-accent { display: none; }
            #about h2 { font-size: 2rem; text-align: center; }
            .about-tag { justify-content: center; }
            .about-content .lead { text-align: center; }
            section { padding: 3rem 4%; }
        }

        /* Footer styles */
        .site-footer {
            position: relative;
            background: linear-gradient(180deg, #F0F9FF 0%, #E0F4FF 60%, #d0efff 100%);
            color: #023E58;
            overflow: hidden;
        }

        .footer-wave svg { display: block; width: 100%; height: 96px; transform: translateY(1px); }

        .footer-content {
            max-width: 1100px;
            margin: -48px auto 0;
            display: flex;
            gap: 2.5rem;
            padding: 2.5rem 5% 2rem;
            align-items: flex-start;
        }

        .footer-col { flex: 1 1 220px; min-width: 180px; }
        .footer-col.about { flex: 1.4 1 260px; }

        .footer-logo { height: 56px; width: auto; display: block; margin-bottom: 0.5rem; }

        .footer-tagline {
            font-weight: 700;
            font-size: 1rem;
            color: #0077B6;
            letter-spacing: 0.5px;
            margin-bottom: 0.6rem;
            text-transform: uppercase;
        }

        .footer-col h4 {
            margin-bottom: 1rem;
            color: #0077B6;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 3px;
            border-radius: 2px;
            background: linear-gradient(90deg, #0077B6, #00B4D8);
        }

        .footer-col p, .footer-col li { color: #334155; font-size: 0.95rem; line-height: 1.7; }

        .footer-col ul { list-style: none; padding: 0; margin: 0; }

        .footer-col.links li {
            margin-bottom: 0.5rem;
        }
        .footer-col.links a {
            color: #334155;
            text-decoration: none;
            transition: color 0.2s, padding-left 0.2s;
            display: inline-block;
            position: relative;
        }
        .footer-col.links a::before {
            content: '\203A';
            margin-right: 6px;
            color: #0077B6;
            font-weight: 700;
            font-size: 1.1em;
        }
        .footer-col.links a:hover {
            color: #0077B6;
            padding-left: 4px;
        }

        .footer-col a { color: #0077B6; text-decoration: none; transition: color 0.2s; }
        .footer-col a:hover { color: #023E58; }

        /* Hours list */
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px dashed rgba(0,119,182,0.12);
            font-size: 0.93rem;
        }
        .hours-list li:last-child { border-bottom: none; }
        .hours-list li span:first-child { font-weight: 600; color: #023E58; }
        .hours-list li span:last-child { color: #0077B6; font-weight: 500; }

        /* Contact items */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: #334155;
        }
        .contact-icon {
            font-size: 1.15rem;
            color: #0077B6;
            flex-shrink: 0;
            margin-top: 1px;
        }
        .contact-item a {
            color: #334155;
            text-decoration: none;
            transition: color 0.2s;
        }
        .contact-item a:hover {
            color: #0077B6;
        }

        /* Social icons */
        .social-icons {
            display: flex;
            gap: 14px;
            margin-top: 1.2rem;
        }
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
            border: 2px solid rgba(0,119,182,0.15);
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 3px 10px rgba(0,119,182,0.12), inset 0 1px 2px rgba(255,255,255,0.8);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                        box-shadow 0.3s ease,
                        background 0.3s ease,
                        border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .social-link::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle at center, rgba(0,180,216,0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .social-link:hover::before {
            opacity: 1;
        }
        .social-link:hover {
            transform: translateY(-4px) scale(1.08);
            box-shadow: 0 8px 24px rgba(0,119,182,0.22), 0 0 0 3px rgba(0,119,182,0.08);
            border-color: transparent;
        }
        .social-link.facebook:hover {
            background: #1877F2;
            box-shadow: 0 8px 24px rgba(24,119,242,0.35), 0 0 0 3px rgba(24,119,242,0.12);
        }
        .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            box-shadow: 0 8px 24px rgba(225,48,108,0.35), 0 0 0 3px rgba(225,48,108,0.12);
        }
        .social-link.tiktok:hover {
            background: #010101;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 3px rgba(0,0,0,0.08);
        }
        .social-icon-img {
            width: 22px;
            height: 22px;
            object-fit: contain;
            transition: filter 0.3s ease, transform 0.3s ease;
        }
        .social-link:hover .social-icon-img {
            transform: scale(1.1);
        }
        .social-link.facebook:hover .social-icon-img,
        .social-link.tiktok:hover .social-icon-img {
            filter: brightness(0) invert(1);
        }
        .social-link.instagram:hover .social-icon-img {
            filter: brightness(0) invert(1);
        }

        /* Footer bottom */
        .footer-bottom {
            text-align: center;
            padding: 1.2rem 5%;
            border-top: 1px solid rgba(0,119,182,0.10);
            font-size: 0.92rem;
            color: #475569;
            background: rgba(0,119,182,0.03);
        }
        .footer-bottom-content {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-bottom-content p { margin: 0; }
        .footer-bottom-links a {
            color: #0077B6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-bottom-links a:hover { color: #023E58; }

        @media (max-width: 900px) {
            .footer-content { flex-direction: column; gap: 1.5rem; margin-top: 0; padding: 2rem 5%; }
            .footer-col.about { flex: 1 1 auto; }
            .footer-wave svg { height: 64px; }
            .footer-logo { height: 48px; }
            .footer-bottom-content { flex-direction: column; gap: 0.6rem; }
        }

        .programs-plates {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .program-plate {
            text-align: center;
            transition: all 0.4s ease;
        }

        .plate-circle {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #F0F9FF, #CAF0F8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(0, 119, 182, 0.15);
            transition: all 0.4s ease;
            border: 3px solid rgba(0, 119, 182, 0.2);
        }

        .program-plate:hover .plate-circle {
            transform: scale(1.1) translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 119, 182, 0.3);
            border-color: #0077B6;
        }

        .program-icon {
            width: 120px;
            height: 120px;
            object-fit: contain;
            display: block;
        }

        .program-plate h3 {
            color: #0077B6;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .program-plate p {
            color: #334155;
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .program-price {
            margin-top: 1rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: #0077B6;
            background: rgba(0, 119, 182, 0.08);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            border: 2px solid rgba(0, 119, 182, 0.15);
        }

        /* School Programs Plates */
        .school-programs-plates {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .program-icon-text {
            font-size: 3.5rem;
            display: block;
        }

        /* Team Styles */
        .team-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .team-member {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid #0077B6;
        }

        .team-member:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            transform: translateX(10px);
        }

        .member-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .member-avatar {
            font-size: 2.5rem;
            min-width: 60px;
            text-align: center;
        }

        .member-info h3 {
            color: #1E293B;
            margin: 0;
            font-size: 1.3rem;
        }

        .member-role {
            color: #0077B6;
            font-weight: 600;
            margin: 0.3rem 0 0 0;
            font-size: 0.95rem;
        }

        .member-bio {
            color: #334155;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .member-specialties {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .specialty-badge {
            background: #F0F9FF;
            color: #0077B6;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid #0077B6;
        }

        /* Reviews Styles */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #0077B6;
        }

        .review-stars {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: #334155;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .review-author {
            color: #0077B6;
            font-weight: 600;
            text-align: right;
        }

        /* FAQ Styles */
        .faqs-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            background: #F8FAFC;
            font-weight: 600;
            color: #1E293B;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #F0F9FF;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #0077B6;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
            background: white;
        }

        .faq-answer p {
            color: #334155;
            line-height: 1.8;
            margin: 0;
        }

        /* Registration Styles */
        .registration-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .registration-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        /* Team Styles */
        #team {
            padding: 6rem 5%;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        .team-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .team-tag {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 0.8rem;
        }

        .team-accent-line {
            display: inline-block;
            width: 32px;
            height: 2px;
            background: #0ea5e9;
            border-radius: 2px;
        }

        .team-tag span:last-child {
            font-size: 0.8rem;
            font-weight: 600;
            color: #0ea5e9;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        #team h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1e293b;
            background: none;
            -webkit-text-fill-color: #1e293b;
            margin-bottom: 0.6rem;
        }

        .team-subtitle {
            color: #64748b;
            font-size: 1.05rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .team-grid {
            display: flex;
            justify-content: center;
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-member {
            text-align: center;
            max-width: 260px;
            transition: transform 0.35s ease;
        }

        .team-member:hover {
            transform: translateY(-6px);
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.4rem;
            border: 4px solid #f1f5f9;
            box-shadow:
                0 6px 20px rgba(0, 0, 0, 0.06),
                0 0 0 6px rgba(14, 165, 233, 0.06);
            transition: all 0.4s ease;
        }

        .team-member:hover .team-avatar {
            border-color: rgba(14, 165, 233, 0.3);
            box-shadow:
                0 10px 30px rgba(14, 165, 233, 0.12),
                0 0 0 8px rgba(14, 165, 233, 0.08);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .team-member:hover .team-avatar img {
            transform: scale(1.08);
        }

        .team-member h3 {
            color: #1e293b;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
        }

        .team-role {
            display: inline-block;
            background: rgba(14, 165, 233, 0.08);
            color: #0284c7;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 0.9rem;
        }

        .team-bio {
            color: #64748b;
            line-height: 1.65;
            font-size: 0.88rem;
        }

        /* Reviews Styles */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #0077B6;
        }

        .review-stars {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: #334155;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .review-author {
            color: #0077B6;
            font-weight: 600;
            text-align: right;
        }

        /* FAQ Styles */
        .faqs-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
            background: #F8FAFC;
            font-weight: 600;
            color: #1E293B;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #F0F9FF;
        }

        .faq-toggle {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            color: #0077B6;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
            background: white;
        }

        .faq-answer p {
            color: #334155;
            line-height: 1.8;
            margin: 0;
        }

        /* Registration Styles */
        .registration-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .registration-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        footer {
            background: linear-gradient(135deg, #1E293B, #0F172A);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #0077B6, #005F8A);
            padding: 3rem;
            border-radius: 20px;
            color: white;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .info-item .icon {
            font-size: 1.5rem;
        }

        .info-item strong {
            display: block;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }

        .info-item p {
            opacity: 0.9;
            margin: 0;
        }

        .social-media {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .social-media a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-media a:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .social-icon {
            display: block;
        }

        .contact-form-wrapper {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #334155;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #E2E8F0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0077B6;
            box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #FF6B6B, #E05555);
            color: white;
            padding: 1.1rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .form-status {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .form-status.success {
            background: #D1FAE5;
            color: #065F46;
            display: block;
        }

        .form-status.error {
            background: #FEE2E2;
            color: #991B1B;
            display: block;
        }

        /* Reset styles specifically for the contact form to use browser defaults */
        .contact-form-wrapper {
            background: transparent !important;
            padding: 0 !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        .contact-form-wrapper .form-group {
            margin-bottom: 0.8rem;
        }

        .contact-form-wrapper .form-group label {
            color: inherit !important;
            font-weight: 400 !important;
            margin-bottom: 0.3rem !important;
            display: block !important;
        }

        .contact-form-wrapper .form-group input,
        .contact-form-wrapper .form-group select,
        .contact-form-wrapper .form-group textarea {
            width: 100% !important;
            padding: 0.4rem !important;
            border: 1px solid #cfcfcf !important;
            border-radius: 4px !important;
            background: transparent !important;
            box-shadow: none !important;
            transition: none !important;
        }

        .contact-form-wrapper .form-group input:focus,
        .contact-form-wrapper .form-group select:focus,
        .contact-form-wrapper .form-group textarea:focus {
            outline: auto !important;
            border-color: #888 !important;
            box-shadow: none !important;
        }

        .contact-form-wrapper .submit-btn {
            width: auto !important;
            background: transparent !important;
            color: inherit !important;
            padding: 0.45rem 0.8rem !important;
            border: 1px solid #cfcfcf !important;
            border-radius: 4px !important;
            font-size: 1rem !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            transition: none !important;
        }

        .contact-form-wrapper .submit-btn:hover {
            transform: none !important;
            box-shadow: none !important;
            background: rgba(0,0,0,0.02) !important;
        }

        .contact-form-wrapper .submit-btn:active {
            transform: none !important;
        }

    


            /* Keep hamburger above mobile menu overlay */
          

            h2 {
                font-size: 2rem;
            }

            .programs-plates {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .plate-circle {
                width: 150px;
                height: 150px;
            }

            .program-icon {
                font-size: 2.5rem;
            }

            .program-price {
                font-size: 1rem;
                padding: 0.4rem 0.8rem;
            }

            .programs-plates {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .school-programs-plates {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
            /* Mobile responsive for new sections */
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .program-price {
                font-size: 0.95rem;
                padding: 0.3rem 0.6rem;
            }

/* ========================================
   TESTIMONIALS / REVIEWS SECTION
   ======================================== */
#reviews {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #ffffff 0%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background bubbles */
#reviews::before,
#reviews::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: #0077B6;
    pointer-events: none;
}

#reviews::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

#reviews::after {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px;
}

/* Reviews Header */
.reviews-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.reviews-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}

.reviews-accent-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #0ea5e9;
    border-radius: 2px;
}

.reviews-tag span:last-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0ea5e9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#reviews h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

.reviews-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 18px;
    padding: 2.2rem 2rem 1.8rem;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 6px 24px rgba(0, 119, 182, 0.07);
    border: 1.5px solid transparent;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 32px rgba(0, 119, 182, 0.12),
        0 20px 50px rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.15);
}

/* Accent bar at top of card */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0077B6, #0096C7, #00B4D8);
    border-radius: 0 0 3px 3px;
}

/* Quote Mark */
.review-quote {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0077B6;
    opacity: 0.18;
    line-height: 1;
    margin-bottom: -0.6rem;
    font-family: Georgia, 'Times New Roman', serif;
    user-select: none;
}

/* Star Rating */
.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

/* Review Text */
.review-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

/* Review Footer */
.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.review-author {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-label {
    display: inline-block;
    background: rgba(0, 119, 182, 0.08);
    color: #0077B6;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* ========================================
   FAQs SECTION
   ======================================== */
#faqs {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #F0F9FF 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative accent */
#faqs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0077B6, #00B4D8, transparent);
    opacity: 0.15;
}

#faqs h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}

/* Optional: add a subtitle-style paragraph under the heading */
#faqs > p {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Container */
.faqs-container {
    max-width: 780px;
    margin: 3rem auto 0;
}

/* Individual FAQ Item */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 14px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 4px 16px rgba(0, 119, 182, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1.5px solid #f1f5f9;
}

.faq-item:hover {
    border-color: rgba(0, 119, 182, 0.15);
    box-shadow:
        0 4px 12px rgba(0, 119, 182, 0.08),
        0 8px 24px rgba(0, 119, 182, 0.05);
}

.faq-item.open {
    border-color: rgba(0, 119, 182, 0.2);
    box-shadow:
        0 6px 20px rgba(0, 119, 182, 0.1),
        0 12px 32px rgba(0, 119, 182, 0.06);
}

/* Question Row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    background: white;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1e293b;
    user-select: none;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    background: #F8FBFF;
    color: #0077B6;
}

.faq-item.open .faq-question {
    color: #0077B6;
    background: #F8FBFF;
}

/* Toggle Icon */
.faq-toggle {
    font-size: 1.6rem;
    font-weight: 300;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    color: #94a3b8;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
}

.faq-question:hover .faq-toggle {
    color: #0077B6;
    background: rgba(0, 119, 182, 0.08);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: white;
    background: #0077B6;
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.6rem;
    background: white;
}

.faq-answer p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
    font-size: 0.98rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.2rem;
}

/* ========================================
   REGISTRATION HIGHLIGHT (TOP)
   ======================================== */
#registration-highlight {
    padding: 3.5rem 5% 2.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #F0F9FF 100%);
}

#registration-highlight h2 {
    text-align: center;
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#registration-highlight .registration-notice {
    margin-bottom: 0;
}

/* ========================================
   REGISTRATION SECTION
   ======================================== */
#registration {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #ffffff 0%, #F0F9FF 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative side accents */
#registration::before,
#registration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: #0077B6;
    pointer-events: none;
}

#registration::before {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -200px;
}

#registration::after {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -150px;
}

#registration h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Registration Notice Card */
.registration-notice {
    background: white;
    border-radius: 18px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 28px rgba(0, 119, 182, 0.08);
    padding: 2.5rem 2rem 2rem;
    margin: 0 auto 2.5rem auto;
    max-width: 560px;
    text-align: center;
    border: 1.5px solid rgba(0, 119, 182, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.registration-notice:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 24px rgba(0, 119, 182, 0.12),
        0 16px 40px rgba(0, 119, 182, 0.06);
}

.registration-notice::before {
    content: "🎉";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 119, 182, 0.1);
    padding: 0.15rem 0.6rem;
    line-height: 1;
}

/* Top accent bar on notice */
.registration-notice::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    background: linear-gradient(90deg, #0077B6, #00B4D8, #0077B6);
    border-radius: 0 0 3px 3px;
}

.registration-notice h3 {
    color: #0077B6;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.registration-notice h3:last-of-type {
    color: #1e293b;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FF6B6B, #E05555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-notice p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.registration-notice p:first-of-type {
    margin-bottom: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

/* Registration Form Container */
.registration-container {
    max-width: 640px;
    margin: 0 auto;
}

.registration-form {
    background: white;
    padding: 2.5rem 2.2rem;
    border-radius: 18px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 28px rgba(0, 119, 182, 0.08);
    border: 1.5px solid rgba(0, 119, 182, 0.06);
    position: relative;
}

/* Form top accent */
.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, #0077B6, #0096C7, #00B4D8);
    border-radius: 0 0 3px 3px;
}

/* Form Row (2-col grid) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* Form Group */
.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: #334155;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.98rem;
    font-family: inherit;
    color: #1e293b;
    background: #fafbfc;
    transition: all 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077B6;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0077B6, #0096C7);
    color: white;
    padding: 1.1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
    background: linear-gradient(135deg, #005F8A, #0077B6);
}

.submit-btn:hover::after {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.2);
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
    display: block;
}

.form-status.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
    display: block;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
#gallery {
    padding: 5rem 2rem;
    background: linear-gradient(160deg, #e0f7fa 0%, #b2ebf2 40%, #F0F9FF 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative wave layers */
#gallery::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64 C360,120 720,0 1080,64 C1260,96 1380,80 1440,72 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E") top repeat-x;
    pointer-events: none;
    z-index: 1;
}

#gallery::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,32 C320,96 480,0 720,48 C960,96 1120,32 1440,64 L1440,120 L0,120 Z'%3E%3C/path%3E%3C/svg%3E") bottom repeat-x;
    pointer-events: none;
    z-index: 1;
}

/* Section heading with decorative line */
#gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 8px rgba(14, 165, 233, 0.12);
    letter-spacing: -0.5px;
}

#gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #0369a1;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

/* Gallery Grid - Masonry-inspired layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    position: relative;
    z-index: 2;
}

/* Make select items span 2 rows for visual variety */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-row: span 2;
}

/* Gallery Item Card */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow:
        0 4px 20px rgba(14, 165, 233, 0.15),
        0 1px 6px rgba(6, 182, 212, 0.10);
    cursor: pointer;
}

/* Glowing border on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4, #22d3ee, #0ea5e9);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    animation: wave-border 3s linear infinite;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.gallery-item:hover::after {
    opacity: 1;
}

@keyframes wave-border {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
        0 16px 48px rgba(14, 165, 233, 0.30),
        0 8px 24px rgba(6, 182, 212, 0.20),
        0 0 0 1px rgba(14, 165, 233, 0.08);
    z-index: 5;
}

/* Bubble decoration on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.95), rgba(14, 165, 233, 0.25));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 6;
    box-shadow:
        0 0 12px rgba(255,255,255,0.5),
        inset 0 0 6px rgba(14, 165, 233, 0.2);
}

.gallery-item:hover::before {
    opacity: 1;
    animation: bubble-float 2.5s ease-in-out infinite;
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-6px) scale(1.05); }
}

/* Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

/* Gallery Image */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    border-radius: 20px;
    filter: brightness(0.97) saturate(1.1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.2);
}

/* Overlay with caption area */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(12, 74, 110, 0.85) 0%,
        rgba(14, 165, 233, 0.40) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.2rem;
    border-radius: 20px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Overlay caption text */
.gallery-caption {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery Icon */
.gallery-icon {
    font-size: 3.5rem;
    transform: scale(0) rotate(-45deg);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
    color: #fff;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1) rotate(0deg);
}

/* Water Ripple on Click */
.gallery-item .gallery-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(14,165,233,0.2) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, opacity 0.6s;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}

.gallery-item:active .gallery-image-wrapper::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

/* Floating Bubbles Animation */
.gallery-bubbles {
    position: absolute;
    left: 0; right: 0; bottom: 0; top: 0;
    pointer-events: none;
    z-index: 0;
}

.gallery-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(14, 165, 233, 0.15));
    box-shadow: 0 2px 8px rgba(6,182,212,0.10), inset 0 0 4px rgba(255,255,255,0.3);
    animation: float-bubble 14s ease-in-out infinite;
}

@keyframes float-bubble {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 0.7; }
    50%  { opacity: 0.9; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-110vh) scale(1.3); opacity: 0; }
}

/* Staggered Fade-In */
.gallery-item {
    animation: galleryFadeIn 0.7s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.12s; }
.gallery-item:nth-child(3) { animation-delay: 0.19s; }
.gallery-item:nth-child(4) { animation-delay: 0.26s; }
.gallery-item:nth-child(5) { animation-delay: 0.33s; }
.gallery-item:nth-child(6) { animation-delay: 0.40s; }
.gallery-item:nth-child(7) { animation-delay: 0.47s; }
.gallery-item:nth-child(8) { animation-delay: 0.54s; }

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ========================================
   GALLERY RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 260px;
        gap: 1.2rem;
    }
    .gallery-item:nth-child(1) { grid-row: span 2; }
    .gallery-item:nth-child(6) { grid-row: span 1; }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
        gap: 1.1rem;
    }
}

@media (max-width: 768px) {
    #gallery {
        padding: 4rem 1rem;
    }

    #gallery h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: 1rem;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-row: span 1;
    }

    .gallery-icon {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    #gallery {
        padding: 3rem 0.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 0.7rem;
    }

    #gallery h2 {
        font-size: 1.8rem;
    }

    .gallery-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .gallery-icon {
        font-size: 2.2rem;
    }

    .gallery-item {
        border-radius: 14px;
    }

    .gallery-image-wrapper,
    .gallery-image,
    .gallery-overlay {
        border-radius: 14px;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ======================================== */

/* --- Tablet (max-width: 900px) --- */
@media (max-width: 900px) {
    /* Hero scaling */
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-btn {
        padding: 0.9rem 2.2rem;
        font-size: 1.05rem;
    }

    /* Team on tablet */
    .team-grid {
        gap: 2.5rem;
    }
    .team-avatar {
        width: 130px;
        height: 130px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* FAQs on tablet */
    #faqs {
        padding: 4rem 4%;
    }
    .faqs-container {
        max-width: 100%;
    }
    .faq-question {
        padding: 1.3rem 1.5rem;
        font-size: 1rem;
    }

    /* Registration on tablet */
    #registration {
        padding: 4rem 4%;
    }
    .registration-form {
        padding: 2rem 1.8rem;
    }
    .registration-notice {
        max-width: 90%;
    }

    /* General section */
    section {
        padding: 3rem 4%;
    }
    h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Hero section */
    #home {
        height: 90vh;
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }
    .hero-content {
        padding: 2rem 1.2rem;
    }
    .hero-btn {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    /* About section */
    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .about-image img {
        height: 240px;
    }
    .about-image-accent {
        display: none;
    }
    .about-content .lead {
        font-size: 1rem;
    }

    /* Team & Reviews: single column */
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    .team-member {
        max-width: 300px;
    }
    .team-avatar {
        width: 120px;
        height: 120px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    #reviews {
        padding: 4rem 4%;
    }
    #reviews h2 {
        font-size: 1.8rem;
    }
    .reviews-subtitle {
        font-size: 0.95rem;
    }
    .reviews-header {
        margin-bottom: 2.5rem;
    }
    .review-card {
        padding: 1.8rem 1.5rem 1.4rem;
    }
    .review-quote {
        font-size: 2.8rem;
    }
    .review-card::before {
        left: 16px;
        right: 16px;
    }
    #team h2 {
        font-size: 1.8rem;
    }
    .team-subtitle {
        font-size: 0.95rem;
    }

    /* FAQs */
    #faqs {
        padding: 3.5rem 3%;
    }
    #faqs h2 {
        font-size: 1.8rem;
    }
    .faq-question {
        padding: 1.2rem 1.4rem;
        font-size: 0.95rem;
    }
    .faq-item.open .faq-answer {
        padding: 0 1.4rem 1.4rem;
    }
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }

    /* Registration */
    #registration {
        padding: 3.5rem 3%;
    }
    #registration h2 {
        font-size: 1.8rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .registration-form {
        padding: 1.8rem 1.4rem;
        border-radius: 14px;
    }
    .registration-notice {
        padding: 2rem 1.2rem 1.5rem;
        border-radius: 14px;
        max-width: 100%;
    }
    .registration-notice::after {
        left: 20px;
        right: 20px;
    }
    .registration-form::before {
        left: 16px;
        right: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 5%;
    }
    .footer-wave svg {
        height: 56px;
    }
    .footer-col.about {
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto 0.5rem;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col.links,
    .footer-col.hours,
    .footer-col.contact {
        text-align: center;
    }
    .footer-col.links a {
        justify-content: center;
    }
    .hours-list li {
        max-width: 280px;
        margin: 0 auto;
    }
    .contact-item {
        justify-content: center;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.6rem;
    }

    /* General */
    section {
        padding: 2.5rem 4%;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    /* Contact grid */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .contact-info {
        padding: 2rem;
    }
}

/* --- Small Phone (max-width: 480px) --- */
@media (max-width: 480px) {
    /* Nav */
    nav {
        padding: 0.5rem 0.8rem;
    }
    .logo-img {
        height: 44px;
        max-width: 140px;
    }

    /* Hero */
    #home {
        height: 85vh;
        min-height: 420px;
    }
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .hero-content {
        padding: 1.5rem 1rem;
    }
    .hero-btn {
        padding: 0.75rem 1.6rem;
        font-size: 0.95rem;
    }

    /* About */
    .about-image img {
        height: 200px;
    }
    .about-content .lead {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .about-feature-item {
        padding: 0.8rem 1rem;
    }
    .about-features li {
        font-size: 0.9rem;
    }

    /* Programs */
    #programs {
        padding: 2.5rem 0.8rem;
    }
    #programs h2 {
        font-size: 1.7rem;
    }
    .programs-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .program-card {
        padding: 1.2rem;
    }
    .program-title {
        font-size: 1.25rem;
    }
    .program-description {
        font-size: 0.9rem;
    }
    .price-amount {
        font-size: 1.5rem;
    }

    /* Team */
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    .team-member h3 {
        font-size: 1.05rem;
    }
    .team-bio {
        font-size: 0.82rem;
    }

    /* Reviews */
    #reviews {
        padding: 3rem 3%;
    }
    .review-card {
        padding: 1.4rem 1.2rem 1.2rem;
    }
    .review-text {
        font-size: 0.88rem;
        line-height: 1.65;
    }
    .review-stars img {
        width: 15px;
        height: 15px;
    }
    .review-quote {
        font-size: 2.4rem;
    }
    #reviews h2 {
        font-size: 1.5rem;
    }
    .reviews-header {
        margin-bottom: 2rem;
    }
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    /* FAQs */
    #faqs {
        padding: 2.5rem 0.8rem;
    }
    #faqs h2 {
        font-size: 1.4rem;
    }
    .faq-item {
        border-radius: 10px;
        margin-bottom: 0.7rem;
    }
    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.88rem;
        gap: 0.5rem;
    }
    .faq-question span:first-child {
        flex: 1;
    }
    .faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
    .faq-item.open .faq-answer {
        padding: 0 1.1rem 1.2rem;
    }
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Registration */
    #registration {
        padding: 2.5rem 0.8rem;
    }
    #registration h2 {
        font-size: 1.5rem;
    }
    .registration-form {
        padding: 1.4rem 1rem;
        border-radius: 12px;
    }
    .registration-form::before {
        left: 12px;
        right: 12px;
    }
    .registration-notice {
        padding: 1.8rem 0.8rem 1.2rem;
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    .registration-notice::after {
        left: 16px;
        right: 16px;
    }
    .registration-notice h3 {
        font-size: 1.1rem;
    }
    .registration-notice h3:last-of-type {
        font-size: 1.25rem;
    }
    .registration-notice p {
        font-size: 0.92rem;
    }
    .form-group label {
        font-size: 0.88rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.92rem;
        border-radius: 10px;
    }
    .submit-btn {
        padding: 0.95rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Footer */
    .footer-content {
        padding: 1.2rem 4%;
        gap: 1.2rem;
    }
    .footer-col {
        min-width: unset;
    }
    .footer-logo {
        height: 40px;
    }
    .footer-tagline {
        font-size: 0.88rem;
    }
    .footer-col p,
    .footer-col li {
        font-size: 0.9rem;
    }
    .footer-bottom {
        font-size: 0.85rem;
        padding: 1rem 0;
    }
    .social-link {
        width: 42px;
        height: 42px;
    }
    .social-icon-img {
        width: 20px;
        height: 20px;
    }
    .contact-item {
        font-size: 0.88rem;
    }
    .hours-list li {
        font-size: 0.88rem;
    }

    /* General */
    section {
        padding: 2rem 3%;
    }
    h2 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
}

/* --- Very Small Phone (max-width: 360px) --- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.88rem;
    }
    .hero-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .program-title {
        font-size: 1.15rem;
    }
    .price-amount {
        font-size: 1.35rem;
    }
    .program-cta {
        font-size: 0.9rem;
        padding: 0.85rem;
    }
    nav {
        padding: 0.4rem 0.6rem;
    }
    .logo-img {
        height: 38px;
        max-width: 120px;
    }
}

/* --- Touch-friendly: increase tap target sizes on touch devices --- */
@media (hover: none) and (pointer: coarse) {
    .nav-menu li > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .program-cta {
        min-height: 48px;
    }
    .submit-btn {
        min-height: 48px;
    }
    .faq-question {
        min-height: 48px;
    }
    .social-icons a {
        width: 46px;
        height: 46px;
    }
    .social-link {
        width: 46px;
        height: 46px;
    }
    .hero-btn {
        min-height: 48px;
    }
}
