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

:root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-600: #52B788;
    --green-500: #74C69D;
    --green-400: #95D6B1;
    --green-300: #B7E4C7;
    --green-200: #D8F3DC;
    --green-100: #EFFCF3;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --text-dark: #1A2E23;
    --text-mid: #3D5A48;
    --text-light: #6B8F7B;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.1);
    --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 67, 50, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--cream-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    line-height: 1.25;
    color: var(--green-900);
}

a {
    color: var(--green-700);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-900);
}

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

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

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--green-900);
}

.logo--light { color: var(--white); }
.logo--light span { color: var(--green-300); }

.logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--green-800);
    background: var(--green-100);
}

.nav-cta {
    background: var(--green-800) !important;
    color: var(--white) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--green-900) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-900);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.menu-toggle:hover {
    background: var(--green-100);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}

.btn-primary:hover {
    background: var(--green-900);
    border-color: var(--green-900);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-900);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--green-900);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--green-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 30%, #40916C 60%, #52B788 100%);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(82, 183, 136, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(149, 214, 177, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--green-400);
    top: -100px;
    right: -80px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--green-300);
    bottom: 20%;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--cream);
    top: 30%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--green-200);
    bottom: 30%;
    right: 15%;
    animation: float 5s ease-in-out infinite reverse;
}

.shape-5 {
    width: 160px;
    height: 160px;
    background: var(--green-500);
    top: 60%;
    right: 30%;
    animation: float 9s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-24px) rotate(4deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--green-200);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge svg {
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--green-200);
    position: relative;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--green-300);
    font-weight: 600;
}

.stat-divider {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ─── SECTIONS ─── */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--cream);
}

.section-header {
    margin-bottom: 60px;
}

.text-center { text-align: center; }

.section-tag {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--green-900);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-card--main {
    width: 100%;
    aspect-ratio: 5/4;
}

.img-card--secondary {
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 55%;
    aspect-ratio: 280/200;
    border: 5px solid var(--cream-light);
    box-shadow: var(--shadow-md);
}

.img-card--accent {
    position: absolute;
    top: -20px;
    right: -16px;
    width: 50%;
    aspect-ratio: 280/200;
    border: 5px solid var(--cream-light);
    box-shadow: var(--shadow-md);
}

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

.about-badge {
    position: absolute;
    bottom: 50%;
    right: -10px;
    transform: translateY(50%);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green-900);
    z-index: 2;
}

.about-text .section-tag { margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 20px; }

.about-text > p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.98rem;
}

.about-features svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── PROGRAMS ─── */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-300);
}

.program-card--featured {
    background: linear-gradient(145deg, var(--green-900), var(--green-800));
    color: var(--white);
    border-color: var(--green-700);
}

.program-card--featured h3,
.program-card--featured .program-age,
.program-card--featured p,
.program-card--featured .program-features li {
    color: var(--white);
}

.program-card--featured .program-features li {
    opacity: 0.88;
}

.program-card--featured .program-icon svg circle:first-child {
    fill: rgba(255,255,255,0.15);
}

.program-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, #FFB347, #FF8C00);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-icon {
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.program-age {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green-700);
    background: var(--green-200);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.program-card--featured .program-age {
    background: rgba(255,255,255,0.18);
    color: var(--green-200);
}

.program-card p {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.program-features {
    list-style: none;
    display: grid;
    gap: 10px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
}

.program-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-600);
    border-radius: 50%;
    flex-shrink: 0;
}

.program-card--featured .program-features li::before {
    background: var(--green-300);
}

/* ─── WHY US ─── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content .section-tag { margin-bottom: 12px; }
.why-content .section-title { margin-bottom: 16px; }
.why-content > p { color: var(--text-mid); font-size: 1.02rem; margin-bottom: 36px; }

.why-features {
    display: grid;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--green-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.why-feature:hover .why-icon {
    background: var(--green-800);
    transform: scale(1.05);
}

.why-feature:hover .why-icon svg {
    stroke: var(--white);
}

.why-feature h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--green-900);
}

.why-feature p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.why-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
}

.wfc-icon {
    width: 44px;
    height: 44px;
    background: var(--green-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-floating-card strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--green-900);
}

.why-floating-card span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

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

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

/* ─── FAQ ─── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--green-200);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.active {
    border-color: var(--green-600);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 28px;
    text-align: left;
    font-family: 'Nunito', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--green-900);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--green-700);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--green-600);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    position: relative;
    overflow: hidden;
}

.cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--green-400);
    top: -80px;
    left: -60px;
}

.cta-shape-2 {
    width: 180px;
    height: 180px;
    background: var(--cream);
    bottom: -50px;
    right: 10%;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--green-300);
    top: 20%;
    right: -30px;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 12px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 36px; font-size: 1.02rem; }

.contact-details {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

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

.ci-icon {
    width: 48px;
    height: 48px;
    background: var(--green-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--green-900);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.6;
}

.contact-item a:hover { color: var(--green-700); }

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--green-200);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-900);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--green-900);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: all 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(82, 183, 136, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--green-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    color: var(--green-900);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.7;
}

.form-success a {
    color: var(--green-700);
    font-weight: 700;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--green-900);
    color: var(--green-300);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--green-400);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: var(--green-400);
    font-size: 0.92rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--green-400);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

.footer-contact a {
    color: var(--green-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--green-500);
}

.footer-bottom a {
    color: var(--green-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--green-800);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    background: var(--green-900);
    transform: translateY(-3px);
}

/* ─── MOBILE MENU ─── */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream-light);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    box-shadow: var(--shadow-md);
    gap: 4px;
}

.nav-links.mobile-open a {
    padding: 12px 14px;
    width: 100%;
}

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image img {
        height: 420px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .section {
        padding: 72px 0;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .img-card--secondary,
    .img-card--accent {
        display: none;
    }

    .why-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
