/* ============================================
   CSS Reset & Base Styles
   ============================================ */

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

img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

:root {
    /* Kid-Friendly Color Palette - Warm & Playful */
    --primary-color: #FF8A65;
    --primary-dark: #FF6B35;
    --primary-light: #FFBFA3;
    --secondary-color: #81C784;
    --secondary-dark: #66BB6A;
    --secondary-light: #C8E6C9;
    --accent-color: #FFD54F;
    --accent-pink: #F48FB1;
    --accent-purple: #BA68C8;
    --accent-blue: #64B5F6;
    --accent-light: #FFE082;
    --text-dark: #2C3E50;
    --text-medium: #455A64;
    --text-light: #78909C;
    --bg-light: #FFF9F5;
    --bg-lighter: #FFFBF7;
    --bg-white: #FFFFFF;
    --success-color: #66BB6A;
    --gradient-primary: linear-gradient(135deg, #FF8A65 0%, #FF6B35 50%, #FFD54F 100%);
    --gradient-secondary: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
    --gradient-playful: linear-gradient(135deg, #FF8A65 0%, #F48FB1 25%, #BA68C8 50%, #64B5F6 75%, #81C784 100%);
    --gradient-soft: linear-gradient(135deg, #FFE082 0%, #FFBFA3 50%, #C8E6C9 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 138, 101, 0.95) 0%, rgba(255, 107, 53, 0.9) 50%, rgba(255, 213, 79, 0.95) 100%);
    
    /* Enhanced Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 30px rgba(255, 184, 77, 0.3);
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 7rem;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Navigation - Modern Glass Effect
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure mobile menu appears above navbar */
body.menu-open .navbar {
    z-index: 999;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.navbar.scrolled .nav-wrapper {
    padding: 0.75rem 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.logo h1:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

/* Mobile menu overlay */
.nav-menu-overlay {
    display: none;
}

/* Mobile Menu Wrapper - Hidden on desktop */
.mobile-menu-wrapper {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    gap: 5px;
    z-index: 1003;
    transition: var(--transition);
    position: relative;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: var(--radius-full);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section - Modern Professional Design
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFBF7 50%, #FFF5E6 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 138, 101, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(244, 143, 177, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 213, 79, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 20% 60%, rgba(186, 104, 200, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 138, 101, 0.05) 0%, transparent 25%, rgba(129, 199, 132, 0.05) 50%, transparent 75%, rgba(255, 213, 79, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 138, 101, 0.03) 2px,
            rgba(255, 138, 101, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(129, 199, 132, 0.03) 2px,
            rgba(129, 199, 132, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
    overflow: hidden;
    clip-path: inset(0);
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 600px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(255, 138, 101, 0.15) 0%, rgba(255, 213, 79, 0.15) 100%);
    border: 2px solid rgba(255, 138, 101, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 2px 8px rgba(255, 138, 101, 0.15);
    text-align: center;
}

.badge-text {
    display: block;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.headline-main {
    display: inline;
    color: var(--text-dark);
}

.headline-accent {
    display: inline;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    animation: fadeInUp 0.8s ease 0.3s both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, #E0E0E0, transparent);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn svg {
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(255, 138, 101, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 138, 101, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 14px rgba(255, 138, 101, 0.3);
}

.hero-image-wrapper {
    position: relative;
    height: 450px;
    max-height: 60vh;
    animation: fadeInRight 1s ease 0.2s both;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    animation: pulse 5s ease-in-out infinite 1s;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--bg-white);
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.12) 0%, rgba(255, 184, 77, 0.04) 40%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    filter: blur(80px);
    animation: blobFloat 8s ease-in-out infinite;
    opacity: 0.8;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, rgba(74, 144, 226, 0.03) 40%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(70px);
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-10px, -20px) scale(0.95);
        border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    }
    75% {
        transform: translate(15px, 10px) scale(1.05);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Section Styles - Enhanced
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    font-weight: 400;
    margin-top: var(--spacing-md);
}

/* ============================================
   About Section - Redesigned
   ============================================ */

.about {
    background: linear-gradient(180deg, var(--bg-white) 0%, #FFF9F5 50%, var(--bg-lighter) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-lg) 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 101, 0.4), rgba(255, 213, 79, 0.4), transparent);
}

.about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 138, 101, 0.08) 0%, rgba(255, 213, 79, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-image-section {
    position: sticky;
    top: 100px;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    aspect-ratio: 3/4;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--bg-white);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.about-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-xs);
}

.highlight-number {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.35rem;
    background: var(--gradient-playful);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.feature-item {
    text-align: center;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 184, 77, 0.25);
}

.feature-icon-wrapper {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.25);
}

.feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #F48FB1 0%, #EC407A 100%);
}


.feature-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 16px rgba(255, 138, 101, 0.35);
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   Programs Section - Modern Card Design
   ============================================ */

.programs {
    background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.08) 0%, rgba(255, 213, 79, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.program-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.program-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 184, 77, 0.25);
}

.program-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-primary);
    color: var(--bg-white);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.25);
}

.program-card:nth-child(1) .program-icon {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
}

.program-card:nth-child(2) .program-icon {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.program-card:nth-child(3) .program-icon {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.program-card:nth-child(4) .program-icon {
    background: linear-gradient(135deg, #BA68C8 0%, #AB47BC 100%);
}

.program-icon svg {
    width: 32px;
    height: 32px;
    color: var(--bg-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(255, 184, 77, 0.3);
}

.program-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: -0.2px;
}

.program-card > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 0.9rem;
}

.program-features {
    list-style: none;
    text-align: left;
    margin-top: var(--spacing-sm);
}

.program-features li {
    padding: 0.25rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: var(--spacing-sm);
    font-size: 0.85rem;
    transition: var(--transition);
    line-height: 1.5;
}

.program-features li:hover {
    color: var(--text-dark);
    padding-left: var(--spacing-md);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery {
    background: var(--bg-white);
    position: relative;
    padding: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--bg-white);
}

.gallery-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   Testimonials Section - Enhanced Slider
   ============================================ */

.testimonials {
    background: var(--bg-white);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: var(--radius-lg);
}

.testimonial-card {
    display: none;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: fadeInSlide 0.6s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card.active {
    display: block;
}

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.star {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 184, 77, 0.3));
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: var(--spacing-md);
}

.testimonial-author strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--bg-white);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-colored);
}

.slider-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-btn-prev {
    left: -28px;
}

.slider-btn-next {
    right: -28px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    opacity: 0.4;
}

.dot:hover {
    opacity: 0.7;
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
}

/* ============================================
   Contact Section - Modern Form Design
   ============================================ */

.contact {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    padding: var(--spacing-lg) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.contact-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-card:nth-child(1)::before {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
}

.contact-card:nth-child(2)::before {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
}

.contact-card:nth-child(3)::before {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
}

.contact-card:nth-child(4)::before {
    background: linear-gradient(135deg, #F48FB1 0%, #EC407A 100%);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
    background: var(--gradient-primary);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.25);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Address Icon - Orange/Coral */
.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
    box-shadow: 0 4px 12px rgba(255, 138, 101, 0.25);
}

.contact-card:nth-child(1):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(255, 138, 101, 0.4);
}

/* Phone Icon - Green */
.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #81C784 0%, #66BB6A 100%);
    box-shadow: 0 4px 12px rgba(129, 199, 132, 0.25);
}

.contact-card:nth-child(2):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(129, 199, 132, 0.4);
}

/* Hours Icon - Yellow */
.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    box-shadow: 0 4px 12px rgba(255, 213, 79, 0.25);
}

.contact-card:nth-child(3):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

/* Rating Icon - Pink */
.contact-card:nth-child(4) .contact-icon {
    background: linear-gradient(135deg, #F48FB1 0%, #EC407A 100%);
    box-shadow: 0 4px 12px rgba(244, 143, 177, 0.25);
}

.contact-card:nth-child(4):hover .contact-icon {
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.4);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    color: var(--bg-white);
}

.contact-card:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.1);
    transform: translateY(-1px);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

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

.map-wrapper {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ============================================
   Footer - Enhanced Design
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #16213E 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 77, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Animations - Enhanced
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ============================================
   Mobile Responsive Styles - Enhanced
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        max-height: none;
        overflow: visible;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .about-main {
        grid-template-columns: 350px 1fr;
        gap: var(--spacing-lg);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-image-section {
        position: relative;
        top: 0;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Ensure mobile menu wrapper is visible on mobile */
    .mobile-menu-wrapper {
        display: flex !important;
    }
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-wrapper {
        padding: 1rem var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .logo h1 {
        font-size: 1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        line-height: 1.2;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1003;
        position: relative;
    }
    
    /* Mobile Menu Wrapper - Show on mobile */
    .mobile-menu-wrapper {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.25);
        transition: left 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .mobile-menu-wrapper.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    /* Ensure links are visible when menu is active */
    .mobile-menu-wrapper.active .mobile-menu-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
    }
    
    .mobile-menu-wrapper.active .mobile-menu-links li {
        display: list-item !important;
        visibility: visible !important;
    }
    
    .mobile-menu-wrapper.active .mobile-menu-links .nav-link {
        display: block !important;
        visibility: visible !important;
    }
    
    
    /* Hide desktop nav menu on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Backdrop overlay for mobile menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
        background: #F5F5F5;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        min-height: 60px;
        flex-shrink: 0;
        order: 1;
    }
    
    .mobile-menu-logo h2 {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .mobile-menu-close {
        background: transparent;
        border: 2px solid var(--primary-color);
        border-radius: 6px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        color: #000000;
        transition: var(--transition);
    }
    
    .mobile-menu-close:hover {
        background: var(--primary-color);
        color: white;
        transform: scale(1.05);
    }
    
    .mobile-menu-close svg {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Menu Links Section */
    .mobile-menu-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        background: #FFFFFF !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-menu-links li {
        width: 100% !important;
        list-style: none !important;
        display: list-item !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 50px !important;
    }
    
    .mobile-menu-links .nav-link {
        padding: 1.25rem 1.5rem !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: #333333 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        transition: var(--transition);
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 11 !important;
        background: #FFFFFF !important;
        box-sizing: border-box;
        line-height: 1.5;
    }
    
    .mobile-menu-links .nav-link:hover {
        background: rgba(255, 138, 101, 0.08);
        color: var(--primary-dark);
    }
    
    .mobile-menu-links .nav-link::after {
        display: none;
    }
    
    /* Mobile Menu Footer Section */
    .mobile-menu-footer {
        background: linear-gradient(135deg, #FF8A65 0%, #FF6B35 100%);
        padding: 1.5rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        order: 3;
        z-index: 5;
    }
    
    .mobile-menu-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('images/facility-1.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        filter: blur(4px);
        z-index: 0;
    }
    
    .mobile-menu-footer > * {
        position: relative;
        z-index: 1;
    }
    
    .mobile-menu-btn {
        display: block;
        padding: 0.875rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        color: white;
    }
    
    .mobile-menu-btn-primary {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-rating {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 1rem;
        text-align: center;
    }
    
    .mobile-menu-stars {
        display: flex;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu-stars .star {
        color: #FFD700;
        font-size: 1.25rem;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    
    .mobile-menu-rating-text {
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .mobile-menu-features {
        display: flex;
        gap: 0.75rem;
    }
    
    .mobile-menu-feature {
        flex: 1;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .mobile-menu-feature .feature-label {
        color: #FFD700;
        font-size: 1.25rem;
        font-weight: 700;
        display: block;
    }
    
    .mobile-menu-feature .feature-sub {
        color: white;
        font-size: 0.75rem;
        font-weight: 500;
        display: block;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
        max-height: none;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(180deg, #FFF9F5 0%, #FFFBF7 50%, rgba(255, 255, 255, 0.98) 100%);
    }
    
    .hero::before {
        opacity: 0.7;
    }
    
    .hero::after {
        opacity: 0.4;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        min-height: auto;
        padding: 0 var(--spacing-sm);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .hero-image-wrapper {
        display: block;
        order: 1;
        width: 100%;
        max-width: 100%;
        height: 300px;
        margin-bottom: 1.5rem;
        margin-top: 0;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(255, 138, 101, 0.15);
        position: relative;
    }
    
    .hero-image-container {
        width: 100%;
        height: 100%;
        border-radius: var(--radius-xl);
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-image-overlay {
        background: linear-gradient(180deg, rgba(255, 184, 77, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    }
    
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        order: 2;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.65rem 1.4rem;
        margin-bottom: 1.25rem;
        display: inline-block;
        background: linear-gradient(135deg, rgba(255, 138, 101, 0.2) 0%, rgba(255, 213, 79, 0.2) 100%);
        border: 2px solid rgba(255, 138, 101, 0.4);
        box-shadow: 0 4px 16px rgba(255, 138, 101, 0.25);
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
        line-height: 1.15;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        letter-spacing: -0.8px;
    }
    
    .headline-main,
    .headline-accent {
        display: inline;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.75;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        color: var(--text-medium);
        font-weight: 400;
    }
    
    .hero-stats {
        justify-content: space-around;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 247, 0.98) 100%);
        border-radius: var(--radius-xl);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(255, 138, 101, 0.12);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border: 1px solid rgba(255, 138, 101, 0.15);
    }
    
    .stat-item {
        flex: 1 1 0;
        min-width: 0;
        text-align: center;
        padding: 0.5rem 0.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.4rem;
        font-weight: 700;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
        color: var(--text-medium);
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 1.15rem 2rem;
        font-size: 1.05rem;
        box-sizing: border-box;
        justify-content: center;
        border-radius: var(--radius-lg);
        font-weight: 600;
        box-shadow: 0 6px 20px rgba(255, 138, 101, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-primary {
        box-shadow: 0 8px 24px rgba(255, 138, 101, 0.35);
    }
    
    .btn-primary:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 4px 16px rgba(255, 138, 101, 0.3);
    }
    
    .btn-outline {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    
    .hero-shape {
        display: none;
    }
    
    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image-section {
        position: relative;
        top: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
        border-width: 6px;
    }
    
    .about-text-section {
        text-align: center;
    }
    
    .about-heading {
        text-align: center;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .highlight-item {
        padding: var(--spacing-sm) 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .program-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials-container {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .contact-card {
        padding: var(--spacing-sm);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .contact-card p {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-lg) 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }
    
    .about-features {
        gap: var(--spacing-md);
    }
    
    .feature-item {
        padding: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .programs-grid {
        gap: var(--spacing-sm);
    }
    
    .program-card {
        padding: var(--spacing-sm);
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .program-card > p {
        font-size: 0.85rem;
    }
    
    .program-features li {
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .gallery-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-image-section {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
        border-width: 4px;
        box-sizing: border-box;
    }
    
    .about-image-badge {
        bottom: 15px;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .about-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: center;
    }
    
    .about-text-section {
        text-align: center;
    }
    
    .about-highlights {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .highlight-number {
        font-size: 1.75rem;
    }
    
    .highlight-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
    
    .container {
        padding: 0 var(--spacing-xs);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .navbar {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-wrapper {
        padding: 0.75rem var(--spacing-xs);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo h1 {
        font-size: 0.9rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        max-width: none;
        line-height: 1.2;
    }
    
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
        max-height: none;
        display: flex;
        align-items: center;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-container {
        min-height: auto;
        gap: 1.5rem;
        padding: 0 var(--spacing-xs);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .hero-image-wrapper {
        display: block;
        order: 1;
        width: 100%;
        max-width: 100%;
        height: 260px;
        margin-bottom: 1.25rem;
        margin-top: 0;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(255, 138, 101, 0.15);
    }
    
    .hero-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
        order: 2;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.55rem 1.1rem;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: -0.6px;
    }
    
    .headline-main,
    .headline-accent {
        display: inline;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 1.25rem 0.75rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 247, 0.98) 100%);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(255, 138, 101, 0.12);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        flex-wrap: nowrap;
        justify-content: space-around;
        border: 1px solid rgba(255, 138, 101, 0.15);
    }
    
    .stat-item {
        min-width: 60px;
        flex: 1 1 0;
        text-align: center;
        padding: 0.4rem 0.2rem;
    }
    
    .stat-number {
        font-size: 1.65rem;
        margin-bottom: 0.3rem;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.3;
        letter-spacing: 0.2px;
    }
    
    .hero-actions {
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        box-sizing: border-box;
        padding: 0;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-content: center;
        border-radius: var(--radius-lg);
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .map-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .map-wrapper iframe {
        width: 100%;
        max-width: 100%;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-item h3 {
        font-size: 0.95rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .program-card h3 {
        font-size: 1.05rem;
    }
    
    .program-card > p {
        font-size: 0.85rem;
    }
    
    .program-features li {
        font-size: 0.8rem;
    }
    
    .testimonials-slider {
        padding: var(--spacing-md) 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonials-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-card {
        padding: var(--spacing-md);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --text-dark: #000000;
        --bg-light: #FFFFFF;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-cta,
    .slider-btn,
    .contact-form-wrapper {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
    }
}

