/* ============================================
   FOUNTAIN OASIS PRESCHOOL — STYLESHEET
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #2D2D2D;
    --color-charcoal-deep: #1A1A1A;
    --color-coral: #FF6B6B;
    --color-coral-light: #FF8E8E;
    --color-coral-pale: #FFF0F0;
    --color-bg: #FAFAF8;
    --color-white: #FFFFFF;
    --color-cream: #F5F3EF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #E8E6E2;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
    --shadow-coral: 0 8px 30px rgba(255, 107, 107, 0.3);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-coral);
    background: var(--color-coral-pale);
    padding: 0.4em 1em;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.section-tag--light {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.section-title--accent {
    color: var(--color-coral);
}

.section-title--light {
    color: var(--color-white);
}

.section-title--accent-light {
    color: var(--color-coral-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85em 1.8em;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-coral);
    color: var(--color-white);
    border-color: var(--color-coral);
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--color-coral-light);
    border-color: var(--color-coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

.btn--ghost:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--light:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
}

.btn--large {
    padding: 1em 2.2em;
    font-size: 1rem;
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

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

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-charcoal);
}

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

.logo__text {
    line-height: 1;
}

/* --- Navigation --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5em 1em;
    border-radius: 100px;
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--color-coral);
    background: var(--color-coral-pale);
}

.nav__link--cta {
    background: var(--color-coral);
    color: var(--color-white) !important;
    margin-left: var(--space-xs);
}

.nav__link--cta:hover {
    background: var(--color-coral-light);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 101;
}

.nav-toggle__line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    overflow: hidden;
    padding: calc(72px + var(--space-2xl)) var(--space-md) var(--space-3xl);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 142, 142, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.geo {
    position: absolute;
    opacity: 0.12;
}

.geo--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--color-coral);
    top: -100px;
    right: -80px;
}

.geo--triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--color-coral-light);
    bottom: 15%;
    left: 5%;
    opacity: 0.08;
}

.geo--square {
    width: 160px;
    height: 160px;
    background: var(--color-coral);
    border-radius: var(--radius-lg);
    bottom: 25%;
    right: 10%;
    transform: rotate(30deg);
    opacity: 0.1;
}

.geo--ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--color-coral-light);
    top: 20%;
    left: 12%;
    opacity: 0.15;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-coral-light);
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 0.5em 1.2em;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero__title-accent {
    color: var(--color-coral);
    display: block;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.hero__actions .btn--ghost:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-coral-light);
    line-height: 1.2;
}

.stat__label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

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

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    overflow: hidden;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-blob {
    position: absolute;
    inset: -20px;
    background: var(--color-coral-pale);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.about__image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about__floating-card {
    position: absolute;
    bottom: 40px;
    right: -30px;
    z-index: 2;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 1.2em 1.5em;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.floating-card__number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
}

.floating-card__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

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

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

.deco-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.06;
}

.deco-dot--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
}

.deco-dot--2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: -40px;
}

.deco-dot--3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 5%;
    background: var(--color-charcoal);
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
    overflow: hidden;
}

.programs__bg-shape {
    position: absolute;
    pointer-events: none;
}

.programs__bg-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--color-coral-pale);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    opacity: 0.6;
}

.programs__bg-shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(45, 45, 45, 0.03);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
}

.programs__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
}

.programs__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.program-card {
    position: relative;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.program-card--coral {
    background: var(--color-coral);
    color: var(--color-white);
}

.program-card--charcoal {
    background: var(--color-charcoal);
    color: var(--color-white);
}

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

.program-card__deco {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.3;
    transition: opacity var(--transition);
}

.program-card:hover .program-card__deco {
    opacity: 0.5;
}

.program-card__icon {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.program-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3em;
}

.program-card__age {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3em 0.8em;
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

.program-card--coral .program-card__age {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.program-card--charcoal .program-card__age {
    background: rgba(255, 107, 107, 0.3);
    color: var(--color-coral-light);
}

.program-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.program-card__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.program-card__highlights li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-card__highlights li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.6;
    flex-shrink: 0;
}

/* ============================================
   APPROACH
   ============================================ */
.approach {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    overflow: hidden;
}

.approach__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.approach__visual {
    position: relative;
}

.approach__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.approach__image-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.approach__image-item--1 {
    grid-column: 1 / -1;
}

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

.approach__image-item:hover img {
    transform: scale(1.03);
}

.approach__image-item--1 img {
    height: 280px;
}

.approach__image-item--2 img,
.approach__image-item--3 img {
    height: 200px;
}

.approach__accent-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    border-radius: var(--radius-lg);
    bottom: -20px;
    right: -20px;
    z-index: -1;
    opacity: 0.15;
    transform: rotate(15deg);
}

.approach__content {
    position: relative;
    z-index: 1;
}

.approach__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.approach__pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.pillar {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.pillar__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-coral);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 3em;
}

.pillar__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.3em;
}

.pillar__desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-charcoal);
    overflow: hidden;
}

.testimonials__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 142, 142, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.2em;
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-card__avatar {
    flex-shrink: 0;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: stretch;
}

.visit__info {
    padding-right: var(--space-lg);
}

.visit__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.visit__detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit__detail-icon {
    width: 48px;
    height: 48px;
    background: var(--color-coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.2em;
}

.visit__detail p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--color-coral);
}

.visit__detail a:hover {
    text-decoration: underline;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-md);
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-charcoal);
    overflow: hidden;
}

.contact__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact__shape {
    position: absolute;
    border-radius: 50%;
}

.contact__shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 107, 107, 0.08);
    top: -150px;
    right: -100px;
}

.contact__shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 142, 142, 0.06);
    bottom: -80px;
    left: -50px;
}

.contact__shape--3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    top: 40%;
    left: 30%;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__text {
    padding-top: var(--space-sm);
}

.contact__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* --- Form --- */
.contact__form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    margin-bottom: var(--space-md);
}

.form-group--full {
    margin-bottom: var(--space-lg);
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.8em 1em;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: rgba(255, 107, 107, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-white);
}

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

.form-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: var(--space-sm);
}

/* --- Success Message --- */
.contact__success {
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon {
    margin-bottom: var(--space-md);
}

.success__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.success__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: var(--color-charcoal-deep);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
    overflow: hidden;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.footer__links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-coral);
}

.footer__contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.footer__contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer__contact a {
    color: var(--color-coral-light);
}

.footer__contact a:hover {
    color: var(--color-coral);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__location {
    color: rgba(255, 255, 255, 0.3);
}

.footer__deco {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm);
    pointer-events: none;
}

.footer__deco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-coral);
    opacity: 0.2;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .about__inner,
    .approach__inner,
    .visit__inner,
    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about__image-wrap {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about__floating-card {
        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: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-3xl: 3rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: var(--space-md);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    
    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav__list {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .nav__link {
        display: block;
        padding: 0.8em 1em;
        width: 100%;
        text-align: center;
    }
    
    .nav__link--cta {
        margin-left: 0;
        margin-top: var(--space-xs);
    }
    
    .hero {
        padding-top: calc(72px + var(--space-xl));
        padding-bottom: var(--space-2xl);
        min-height: auto;
    }
    
    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    
    .hero__stats {
        gap: var(--space-md);
    }
    
    .stat__number {
        font-size: 1.3rem;
    }
    
    .programs__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid .testimonial-card:last-child {
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        height: 450px;
    }
    
    .about__floating-card {
        right: 10px;
        bottom: 20px;
    }
    
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
    
    .visit__info {
        padding-right: 0;
    }
    
    .visit__map {
        min-height: 300px;
    }
    
    .visit__map iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .program-card {
        padding: var(--space-lg);
    }
}

/* --- 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;
    }
}
