:root {
  --teal:       #1A8A7A;
  --teal-mid:   #2BA89A;
  --teal-light: #E5F5F3;
  --crimson:    #8B1A1A;
  --crimson-lt: #F9ECEC;
  --navy:       #111827;
  --white:      #FFFFFF;
  --off-white:  #F8F7F4;
  --text:       #1A1A18;
  --text-muted: #5A5A56;
  --border:     #E2E0D8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --r:  6px;
  --rl: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); color: var(--text); background: var(--white); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ── TOPBAR ─────────────────────────────────── */
.topbar { background: var(--crimson); color: rgba(255,255,255,.85); font-size: 12px; padding: 8px 0; text-align: center; letter-spacing: .03em; }
.topbar a { color: rgba(255,255,255,.95); }
.topbar span { margin: 0 14px; }

/* ── ANNOUNCEMENT ───────────────────────────── */
.announcement { background: var(--crimson); padding: 10px 24px; text-align: center; font-size: 13px; font-weight: 600; color: white; }
.announcement a { color: #FFD0D0; text-decoration: underline; }

/* ── HEADER / NAV ───────────────────────────── */
header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 3px solid var(--teal-mid); box-shadow: 0 2px 16px rgba(0,0,0,.07); }
nav    { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 24px; height: 72px; }
.nav-logo      { display: flex; align-items: center; gap: 12px; flex-shrink: 0; cursor: pointer; }
.nav-logo img  { height: 54px; width: auto; object-fit: contain; }
.nav-logo-name    { font-family: var(--serif); font-size: 13px; font-weight: 900; color: var(--navy); letter-spacing: .04em; line-height: 1.2; }
.nav-logo-tagline { font-size: 10px; color: var(--crimson); font-weight: 700; letter-spacing: .12em; font-style: italic; }
.nav-logo-sub     { font-size: 10px; color: var(--text-muted); letter-spacing: .06em; margin-top: 1px; }
.nav-links { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav-link  { padding: 8px 14px; border-radius: var(--r); font-size: 14px; font-weight: 500; color: var(--text-muted); transition: all .15s; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-light); }
.nav-cta   { padding: 9px 20px; border-radius: var(--r); background: var(--teal-mid); color: white; font-size: 13px; font-weight: 600; transition: background .15s; margin-left: 8px; }
.nav-cta:hover { background: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── PAGE SWITCHING ─────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ───────────────────────────────────── */
.hero { position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center;
        background: url('../img/grad.jpg') center top / cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,15,25,.88) 50%, rgba(5,15,25,.55) 100%); }
.hero-dots    { position: absolute; inset: 0; opacity: .04; background-image: radial-gradient(white 1px, transparent 1px); background-size: 32px 32px; }
.hero-inner   { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
                display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
.hero-badge   { display: inline-flex; align-items: center; gap: 8px; background: rgba(43,168,154,.15);
                border: 1px solid rgba(43,168,154,.35); color: #6DCFC4; padding: 6px 14px; border-radius: 20px;
                font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 22px; }
.hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:#6DCFC4; }
.hero h1    { font-family: var(--serif); font-size: clamp(34px,4.5vw,58px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 22px; }
.hero h1 em { color: var(--teal-mid); font-style: normal; display: block; }
.hero-desc  { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero   { padding: 14px 28px; border-radius: var(--r); background: var(--teal-mid); color: white; font-size: 15px; font-weight: 600; transition: all .2s; display: inline-block; }
.btn-hero:hover { background: var(--teal); transform: translateY(-1px); }
.btn-hero-outline { padding: 14px 28px; border-radius: var(--r); border: 1px solid rgba(255,255,255,.2); color: white; font-size: 15px; font-weight: 500; transition: all .2s; cursor: pointer; display: inline-block; }
.btn-hero-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); }
.hero-stats   { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat .num   { font-family: var(--serif); font-size: 32px; font-weight: 700; color: #B8D4D0; line-height: 1; }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.hero-card    { background: rgba(255,255,255,.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rl); padding: 28px; animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-logo       { text-align: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card-logo img   { height: 90px; width: auto; margin: 0 auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.hero-card-title      { font-family: var(--serif); font-size: 15px; font-weight: 600; color: rgba(255,255,255,.8); margin-bottom: 16px; text-align: center; }
.course-list          { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.course-list li       { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); padding: 9px 12px; background: rgba(255,255,255,.04); border-radius: var(--r); border: 1px solid rgba(255,255,255,.07); cursor: pointer; transition: all .2s; }
.course-list li:hover { background: rgba(43,168,154,.15); border-color: rgba(43,168,154,.3); color: white; }
.course-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-mid); flex-shrink: 0; }

/* ── SECTIONS ───────────────────────────────── */
.section       { padding: 88px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 10px; }
.section-title { font-family: var(--serif); font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-desc  { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }
.section-header          { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ── WHY CARDS ──────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { padding: 30px; border-radius: var(--rl); border: 1px solid var(--border); transition: all .25s; position: relative; overflow: hidden; }
.why-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg,var(--teal-mid),var(--crimson)); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.why-card:hover { border-color:var(--teal-mid); box-shadow:0 8px 32px rgba(43,168,154,.12); transform:translateY(-3px); }
.why-card:hover::before { transform:scaleX(1); }
.why-icon  { font-size: 30px; margin-bottom: 16px; }
.why-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-desc  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── PHOTO STRIP ────────────────────────────── */
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 40px; }
.photo-strip div { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.photo-strip img { width:100%; height:100%; object-fit:cover; transition: transform .3s; }
.photo-strip div:hover img { transform: scale(1.04); }

/* ── COURSES ────────────────────────────────── */
.courses-bg { background: var(--navy); }
.courses-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 60px; }
.fee-summary   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fee-box       { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--rl); padding: 18px; }
.fee-box-name   { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 6px; line-height: 1.4; }
.fee-box-amount { font-family: var(--serif); font-size: 18px; font-weight: 700; color: #6DCFC4; }
.fee-box-dur    { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }
.courses-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.course-card  { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--rl); padding: 28px; transition: all .25s; display: flex; flex-direction: column; }
.course-card:hover { background: rgba(43,168,154,.08); border-color: rgba(43,168,154,.28); transform: translateY(-3px); }
.course-tag   { display: inline-block; background: rgba(43,168,154,.2); color: #6DCFC4; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.fee-badge    { background: rgba(139,26,26,.25); color: #F5A0A0; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.course-name  { font-family: var(--serif); font-size: 21px; font-weight: 700; color: white; margin: 12px 0 10px; line-height: 1.3; }
.course-desc  { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.course-meta  { display: flex; gap: 16px; margin-bottom: 16px; }
.course-meta span { font-size: 12px; color: rgba(255,255,255,.38); }
.course-careers { border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; margin-bottom: 18px; }
.careers-label  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.careers-list   { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.careers-list li { font-size: 12px; color: rgba(255,255,255,.5); padding-left: 14px; position: relative; line-height: 1.5; }
.careers-list li::before { content:'→'; position:absolute; left:0; color:var(--teal-mid); font-size:11px; }
.course-apply { display: inline-block; padding: 10px 18px; border-radius: var(--r); background: rgba(43,168,154,.2); color: #6DCFC4; font-size: 13px; font-weight: 600; border: 1px solid rgba(43,168,154,.3); transition: all .2s; text-align: center; margin-top: auto; }
.course-apply:hover { background: var(--teal-mid); color: white; border-color: var(--teal-mid); }

/* ── ADMISSIONS STEPS ───────────────────────── */
.steps-wrap { position: relative; }
.steps-line { position: absolute; top: 44px; left: 14%; right: 14%; height: 2px; background: linear-gradient(90deg,var(--teal-mid),var(--crimson)); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 1; }
.step       { text-align: center; padding: 0 16px; }
.step-num   { width: 56px; height: 56px; border-radius: 50%; background: white; border: 3px solid var(--teal-mid); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--teal-mid); margin: 0 auto 18px; }
.step:nth-child(4) .step-num { background: var(--teal-mid); color: white; }
.step-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── CTA BANNER ─────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--teal) 0%, #0F4A3F 100%); position: relative; overflow: hidden; }
.cta-section::before { content:''; position:absolute; right:-100px; top:-100px; width:400px; height:400px; border-radius:50%; background: rgba(139,26,26,.15); }
.cta-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; text-align: center; padding: 80px 24px; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(28px,4vw,46px); font-weight: 900; color: white; margin-bottom: 14px; }
.cta-inner p  { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns     { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white   { padding: 15px 34px; border-radius: var(--r); background: white; color: var(--teal); font-size: 15px; font-weight: 700; transition: all .2s; display: inline-block; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-outline { padding: 15px 34px; border-radius: var(--r); border: 2px solid rgba(255,255,255,.35); color: white; font-size: 15px; font-weight: 600; transition: all .2s; cursor: pointer; display: inline-block; }
.btn-cta-outline:hover { border-color: white; background: rgba(255,255,255,.1); }

/* ── ABOUT ──────────────────────────────────── */
.about-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img    { border-radius: var(--rl); overflow: hidden; aspect-ratio: 4/3; border: 4px solid var(--teal-light); box-shadow: 0 0 0 3px var(--teal-mid), 0 20px 60px rgba(43,168,154,.2); max-width: 420px; margin: 0 auto; }
.about-img img { width:100%; height:100%; object-fit:cover; object-position:top; }
.about-badge  { position: absolute; bottom: -16px; right: -16px; background: var(--crimson); color: white; padding: 14px 18px; border-radius: var(--rl); text-align: center; box-shadow: 0 8px 24px rgba(139,26,26,.3); }
.about-badge .big   { font-family: var(--serif); font-size: 30px; font-weight: 900; line-height: 1; }
.about-badge .small { font-size: 11px; margin-top: 3px; }
.about-points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-point  { display: flex; gap: 14px; padding: 16px; background: var(--off-white); border-radius: var(--r); border-left: 3px solid var(--teal-mid); }
.about-point-icon  { font-size: 20px; flex-shrink: 0; }
.about-point-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.about-point-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── GALLERY ────────────────────────────────── */
.gallery-hero { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-bottom: 16px; }
.gallery-hero-main { border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; position: relative; }
.gallery-hero-main img { width:100%; height:100%; object-fit:cover; object-position:top; transition: transform .4s; }
.gallery-hero-main:hover img { transform: scale(1.03); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px; background: linear-gradient(transparent, rgba(0,0,0,.75)); color: white; }
.gallery-caption h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; }
.gallery-caption p  { font-size: 13px; opacity: .85; margin-top: 2px; }
.gallery-side       { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.gallery-side div   { border-radius: 14px; overflow: hidden; }
.gallery-side img   { width:100%; height:100%; object-fit:cover; object-position:top; transition: transform .4s; }
.gallery-side div:hover img { transform: scale(1.04); }
.gallery-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 16px; }
.gallery-grid-4 div { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-grid-4 img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.gallery-grid-4 div:hover img { transform: scale(1.05); }
.gallery-bottom { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; }
.gallery-bottom div { border-radius: 12px; overflow: hidden; }
.gallery-bottom img { width:100%; height:100%; object-fit:cover; transition: transform .4s; }
.gallery-bottom div:hover img { transform: scale(1.03); }
.gallery-wide-caption { position: relative; aspect-ratio: 16/7; }
.gallery-wide-caption img { width:100%; height:100%; object-fit:cover; object-position:top; }

/* ── CONTACT ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--off-white); border-radius: var(--rl); padding: 30px; border: 1px solid var(--border); }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon  { width: 38px; height: 38px; border-radius: 9px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--navy); }
.contact-value a { color: var(--teal); }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; padding:10px 14px; border:1px solid var(--border); border-radius:var(--r); font-size:14px; font-family:var(--sans); background:white; color:var(--text); transition:border .15s; margin-bottom: 12px; }
.contact-form input:focus, .contact-form textarea:focus { outline:none; border-color:var(--teal-mid); box-shadow:0 0 0 3px rgba(43,168,154,.1); }
.contact-form textarea { min-height:100px; resize:vertical; }
.btn-submit { padding:12px 26px; background:var(--teal-mid); color:white; border:none; border-radius:var(--r); font-size:15px; font-weight:600; cursor:pointer; font-family:var(--sans); transition:background .15s; }
.btn-submit:hover { background:var(--teal); }
.map-wrap { border-radius:var(--rl); overflow:hidden; border:1px solid var(--border); margin-top:44px; background:var(--teal-light); height:240px; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:12px; }
.map-wrap p { font-size:14px; color:var(--text-muted); }
.map-wrap a { padding:10px 20px; background:var(--teal-mid); color:white; border-radius:var(--r); font-size:14px; font-weight:600; }

/* ── APPLICATION FORM ───────────────────────── */
.fg          { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label    { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.fg input, .fg select, .fg textarea { width:100%; padding:10px 12px; border:1px solid var(--border); border-radius:var(--r); font-size:14px; font-family:var(--sans); background:white; color:var(--text); transition:border .15s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline:none; border-color:var(--teal-mid); box-shadow:0 0 0 3px rgba(43,168,154,.1); }
.ferr        { font-size:12px; color:#E24B4A; min-height:16px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.form-full   { grid-column: 1 / -1; }
.step-header { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.step-num-badge { width:28px; height:28px; border-radius:50%; background:var(--teal-mid); color:white; display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.form-section { background:white; border:1px solid var(--border); border-radius:var(--rl); padding:28px; margin-bottom:20px; }
.apply-badge  { display:inline-flex; align-items:center; gap:5px; padding:3px 10px; border-radius:20px; font-size:11px; font-weight:700; }
.badge-pending  { background:#FAEEDA; color:#854F0B; }
.badge-approved { background:#EAF3DE; color:#3B6D11; }
.badge-rejected { background:#FCEBEB; color:#A32D2D; }
.badge-review   { background:#E6F1FB; color:#185FA5; }

/* ── FOOTER ─────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.6); font-size: 14px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 28px; }
.footer-grid  { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-logo-img { height: 70px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p  { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.footer-tagline  { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: 6px; }
.nacte-badge     { display: inline-block; background: rgba(43,168,154,.15); border: 1px solid rgba(43,168,154,.3); color: #6DCFC4; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; }
.footer-socials  { display: flex; gap: 8px; margin-top: 16px; }
.social-btn      { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background .15s; }
.social-btn:hover { background: var(--teal-mid); }
.footer-col h4   { color: white; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: 13px; transition: color .15s; }
.footer-col ul li a:hover { color: var(--teal-mid); }
.footer-bottom   { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom a { color: rgba(255,255,255,.25); }
.footer-bottom a:hover { color: var(--teal-mid); }

/* ── ANIMATIONS ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 14px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  nav { flex-wrap: wrap; }
  .hamburger { display: flex; }
  .hero-inner, .about-grid, .contact-grid, .courses-intro, .gallery-hero, .gallery-bottom { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .why-grid, .courses-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
  .fee-summary { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .gallery-grid-4 { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
}
