/* ============================================
   Little Panthers Daycare Center — Styles
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #1A3A25;
    --green-800: #2D5A3D;
    --green-700: #3A7D52;
    --green-600: #4ECDC4;
    --green-500: #7BC67E;
    --green-400: #A8D5A2;
    --green-300: #C8E6C0;
    --green-200: #E2F3DF;
    --green-100: #F0F9ED;
    --green-50:  #F7FCF6;

    --cream:     #F5F5F0;
    --cream-light:#FAFAF6;
    --white:     #FFFFFF;
    --off-white: #F9F9F5;

    --text-dark:  #1A2E23;
    --text-mid:   #3D5A48;
    --text-light: #6B8A75;
    --text-muted: #9BB5A5;

    --accent-teal:    #4ECDC4;
    --accent-peach:   #E88D67;
    --accent-gold:    #FFB347;
    --accent-sage:    #7BC67E;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm:  0 1px 3px rgba(26, 58, 37, 0.06), 0 1px 2px rgba(26, 58, 37, 0.04);
    --shadow-md:  0 4px 16px rgba(26, 58, 37, 0.08), 0 2px 4px rgba(26, 58, 37, 0.04);
    --shadow-lg:  0 12px 40px rgba(26, 58, 37, 0.10), 0 4px 12px rgba(26, 58, 37, 0.05);
    --shadow-xl:  0 24px 60px rgba(26, 58, 37, 0.12);

    --font-heading: 'Quicksand', sans-serif;
    --font-body:    'Nunito', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTION LAYOUT ---------- */
.section {
    padding: 100px 0;
}
.section-alt {
    background: var(--off-white);
}
.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-label.light {
    color: var(--green-200);
    background: rgba(255,255,255,0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}
.btn-sm {
    padding: 10px 22px;
    font-size: 14px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-primary {
    background: var(--green-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
}
.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.35);
}
.btn-ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 245, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(245, 245, 240, 0.96);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--green-800);
}
.logo-text {
    line-height: 1.2;
}
.logo-light {
    color: var(--white);
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-menu li a:hover {
    color: var(--green-800);
    background: var(--green-100);
}
.nav-menu li:last-child a {
    background: var(--green-800);
    color: var(--white) !important;
}
.nav-menu li:last-child a:hover {
    background: var(--green-700);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1A3A25 0%, #2D5A3D 30%, #3A7D52 60%, #4ECDC4 100%);
    padding-top: 76px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: #7BC67E;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: #FFB347;
    bottom: -100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}
.blob-3 {
    width: 300px;
    height: 300px;
    background: #E88D67;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-300);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 560px;
}
.hero-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,0.2);
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card-1 {
    width: 280px;
    height: 360px;
    top: 20px;
    left: 20px;
    z-index: 3;
    animation: cardFloat 6s ease-in-out infinite;
}
.hero-card-2 {
    width: 200px;
    height: 200px;
    top: 0;
    right: 40px;
    z-index: 2;
    animation: cardFloat 7s ease-in-out infinite reverse;
}
.hero-card-3 {
    width: 180px;
    height: 180px;
    bottom: 40px;
    right: 10px;
    z-index: 1;
    animation: cardFloat 8s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--cream);
}
.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-800);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-content .section-label {
    margin-bottom: 12px;
}
.about-text {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 17px;
}
.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-mid);
}
.about-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- PROGRAMS ---------- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 90, 61, 0.06);
    transition: var(--transition);
}
.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.program-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.program-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.program-card > p {
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.program-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
}
.program-highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* ---------- WHY US ---------- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-us-content .section-subtitle {
    margin: 0 0 36px 0;
}
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.feature-item {
    display: flex;
    gap: 20px;
}
.feature-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--green-200);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}
.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.feature-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}
.why-us-visual {
    position: relative;
    height: 500px;
}
.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.visual-card-1 {
    width: 260px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 3;
}
.visual-card-2 {
    width: 240px;
    height: 180px;
    top: 140px;
    right: 0;
    z-index: 2;
}
.visual-card-3 {
    width: 220px;
    height: 160px;
    bottom: 0;
    left: 40px;
    z-index: 1;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(4),
.gallery-item:nth-child(6) {
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 37, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 90, 61, 0.06);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--green-200);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    pointer-events: none;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}
.author-location {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
}
.cta-card {
    position: relative;
    background: linear-gradient(135deg, #1A3A25 0%, #2D5A3D 50%, #3A7D52 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    overflow: hidden;
    text-align: center;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-desc {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 36px;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.contact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}
.contact-value a {
    color: var(--green-800);
    transition: var(--transition);
}
.contact-value a:hover {
    color: var(--green-600);
    text-decoration: underline;
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 90, 61, 0.06);
}
.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-intro {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--green-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B8A75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-success {
    text-align: center;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}
.form-success svg {
    margin: 0 auto 12px;
}
.form-success h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px;
    color: var(--text-mid);
}

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

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links li a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links li a:hover {
    color: var(--white);
    padding-left: 4px;
}
.footer-hours .day {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
}
.footer-hours .time {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}
.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.footer-bottom a:hover {
    color: var(--white);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-secondary {
        right: 0;
    }
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu li a {
        width: 100%;
        padding: 12px 16px;
        font-size: 16px;
    }
    .nav-menu li:last-child a {
        margin-top: 8px;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }
    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .hero-visual {
        display: none;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .programs-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6) {
        aspect-ratio: 4/3;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    .cta-card {
        padding: 56px 32px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 28px;
    }
    .contact-form-wrapper {
        position: static;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .about-img-secondary {
        width: 140px;
        right: -10px;
        bottom: -20px;
    }
    .about-badge {
        left: -10px;
        top: -10px;
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
