/* ============================================
   GRANNY GOOSE - KINDERGARTEN & DAYCARE
   Premium Landing Page Styles
   ============================================ */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors - Warm & Nurturing */
    --primary: #FF6B9D;
    --primary-dark: #E84A7F;
    --primary-light: #FFB8D0;
    
    /* Secondary Colors - Playful */
    --secondary: #6C63FF;
    --secondary-dark: #5046E5;
    --secondary-light: #A5A0FF;
    
    /* Accent Colors */
    --accent-yellow: #FFD93D;
    --accent-orange: #FF9F43;
    --accent-teal: #00D9C0;
    --accent-purple: #A855F7;
    --accent-blue: #60A5FA;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FEF9F3;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #FF9F43 50%, #FFD93D 100%);
    --gradient-hero: linear-gradient(135deg, #FFF5F8 0%, #FEF3EA 50%, #F0F4FF 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FEF9F3 100%);
    --gradient-cta: linear-gradient(135deg, #6C63FF 0%, #A855F7 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-color: 0 10px 40px rgba(255, 107, 157, 0.25);
    
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--white);
    color: var(--secondary);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    padding: 8px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    color: var(--gray-800);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(255, 159, 67, 0.2) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    bottom: 10%;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 217, 192, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    top: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 217, 61, 0.3) 0%, rgba(255, 159, 67, 0.3) 100%);
    bottom: 30%;
    right: 15%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(255, 107, 157, 0.2) 100%);
    top: 20%;
    right: 30%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-content p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    width: fit-content;
}

.stat {
    text-align: left;
    padding: 0 40px;
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    padding-right: 0;
}

.stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 30px;
    background: var(--gray-100);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 450px;
}

.goose-mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

.mascot-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: brightness(10);
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 30px 60px rgba(255, 107, 157, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.03);
        box-shadow: 0 40px 80px rgba(255, 107, 157, 0.5);
    }
}

.hero-decoration {
    position: absolute;
    font-size: 40px;
    animation: bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.dec-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.dec-2 {
    top: 20%;
    right: 15%;
    animation-delay: -0.5s;
}

.dec-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: -1s;
}

.dec-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: -1.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-card {
    padding: 40px 30px;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.about-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: var(--transition-base);
}

.about-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    padding: var(--section-padding);
    background: var(--off-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.program-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.program-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 107, 157, 0.05) 100%);
}

.program-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.program-age {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary-light);
    color: var(--secondary-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.program-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.program-card > p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.program-features {
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.program-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-600);
}

/* ============================================
   HOURS SECTION
   ============================================ */
.hours {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #2D1B69 0%, #11998E 100%);
    color: var(--white);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hours-info .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hours-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.hours-info h2 .highlight {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hours-info > p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hours-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 36px;
}

.hours-highlight strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.hours-highlight p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.schedule-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-row:hover {
    background: rgba(255, 255, 255, 0.1);
}

.schedule-row .day {
    font-weight: 600;
}

.schedule-row .time {
    font-family: var(--font-secondary);
    font-weight: 500;
}

.schedule-row.saturday {
    color: var(--accent-yellow);
}

.schedule-row.closed .time {
    color: var(--primary-light);
    font-weight: 700;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.contact-phone {
    font-size: 20px;
    font-weight: 700;
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-cta);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(10);
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    padding: 8px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.footer-logo span {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
}

.footer-brand > p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-verse {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.footer-verse em {
    display: block;
    color: var(--gray-200);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-verse span {
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray-300);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--gray-300);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
        padding: 20px 30px;
    }
    
    .stat {
        padding: 0 24px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hours-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hours-info {
        margin-bottom: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-verse {
        border-left: none;
        border-top: 3px solid var(--primary);
    }
}

@media (max-width: 768px) {
    .navbar {
        background: var(--white);
        box-shadow: var(--shadow-md);
    }
    
    .logo-text {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-xl);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-base);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links a:not(.btn)::after {
        display: none;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 24px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .stat {
        padding: 0 !important;
        text-align: center !important;
    }
    
    .stat-divider {
        width: 60px !important;
        height: 2px !important;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}
