/* ============================================================
   Amari Hub — Stylesheet
   Palette: Navy #003580 | Gold #FFCC00 | Green #2E7D32
   Africa + Australia flag fusion
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* === TOKENS === */
:root {
  --navy:        #003580;
  --navy-dark:   #001f4d;
  --navy-mid:    #002a66;
  --gold:        #E8A020;
  --gold-dark:   #C8880A;
  --gold-light:  #F5B942;
  --green:       #2E7D32;
  --green-light: #388E3C;
  --red:         #C0392B;
  --bg:          #F8F6F0;
  --bg-alt:      #F0EEE8;
  --text:        #1A1A2E;
  --text-light:  #4a4a5e;
  --text-muted:  #7a7a8e;
  --white:       #ffffff;
  --glass:       rgba(255,255,255,0.12);
  --glass-hov:   rgba(255,255,255,0.2);
  --glass-bdr:   rgba(255,255,255,0.25);
  --shadow-sm:   0 2px 14px rgba(0,0,0,0.10);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.16);
  --shadow-lg:   0 16px 56px rgba(0,0,0,0.22);
  --radius:      12px;
  --radius-lg:   20px;
  --ease:        all 0.3s ease;
  --max:         1200px;
  --nav-h:       72px;
}

/* === TYPE === */
h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight:800; line-height:1.15; }
h2 { font-size: clamp(1.5rem,3vw,2.4rem); font-weight:700; line-height:1.25; }
h3 { font-size: clamp(1.05rem,2vw,1.35rem); font-weight:600; line-height:1.4; }
h4 { font-size:1rem; font-weight:600; }
p  { margin-bottom:1rem; }
p:last-child { margin-bottom:0; }
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* === LAYOUT === */
.container { max-width:var(--max); margin:0 auto; padding:0 24px; }
.section    { padding:88px 0; }
.section-sm { padding:56px 0; }

.section-label {
  display:inline-block;
  font-size:0.75rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.1em;
  color:var(--text-muted);
  margin-bottom:12px;
}
.section-title   { text-align:center; margin-bottom:14px; }
.section-sub {
  text-align:center; color:var(--text-light);
  font-size:1.05rem; max-width:600px;
  margin:0 auto 56px;
}

/* === BUTTONS === */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 32px; border-radius:50px;
  font-weight:600; font-size:1rem;
  cursor:pointer; transition:var(--ease);
  border:2px solid transparent;
  white-space:nowrap;
}
.btn-gold {
  background:var(--gold); color:var(--navy-dark); border-color:var(--gold);
}
.btn-gold:hover {
  background:var(--gold-dark); border-color:var(--gold-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(255,204,0,0.35);
}
.btn-outline-white {
  background:transparent; color:var(--white); border-color:rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background:var(--white); color:var(--navy);
  transform:translateY(-2px);
}
.btn-navy {
  background:var(--navy); color:var(--white); border-color:var(--navy);
}
.btn-navy:hover {
  background:var(--navy-dark); border-color:var(--navy-dark);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,53,128,0.28);
}
.btn-green {
  background:var(--green); color:var(--white); border-color:var(--green);
}
.btn-green:hover {
  background:var(--green-light); border-color:var(--green-light);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(46,125,50,0.28);
}
.btn-full { width:100%; justify-content:center; }

/* === NAV === */
.nav {
  position:fixed; top:0; left:0; right:0;
  z-index:1000; height:var(--nav-h);
  transition:background 0.4s ease, box-shadow 0.4s ease;
}
.nav.transparent { background:transparent; }
.nav.scrolled {
  background:var(--navy-dark);
  box-shadow:0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  display:flex; align-items:center;
  justify-content:space-between; height:100%;
}
.nav-logo {
  font-size:1.3rem; font-weight:800;
  color:var(--white); display:flex; align-items:center; gap:8px;
}
.nav-logo span { color:var(--gold); }
.nav-logo .dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--gold); display:inline-block;
}
.nav-links {
  display:flex; align-items:center; gap:28px;
}
.nav-links a {
  color:rgba(255,255,255,0.82); font-weight:500;
  font-size:0.92rem; position:relative;
  transition:var(--ease); padding-bottom:3px;
}
.nav-links a::after {
  content:''; position:absolute;
  bottom:-2px; left:0; width:0; height:2px;
  background:var(--gold); transition:width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color:var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--gold) !important;
  color:var(--navy-dark) !important;
  padding:8px 22px; border-radius:50px;
  font-weight:700 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--gold-dark) !important; }
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:4px; background:none; border:none;
}
.nav-toggle span {
  display:block; width:24px; height:2px;
  background:var(--white); transition:var(--ease); border-radius:2px;
}

/* === GLASS === */
.glass {
  background: rgba(0, 18, 52, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14),
              0 10px 40px rgba(0,0,0,0.32);
}
.glass:hover { background: rgba(0, 18, 52, 0.65); }

/* === CARDS === */
.card {
  background:var(--white); border-radius:var(--radius);
  padding:32px; box-shadow:var(--shadow-sm);
  transition:var(--ease); border:1px solid rgba(0,0,0,0.04);
}
.card:hover { box-shadow:var(--shadow-md); transform:translateY(-4px); }
.grid-2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:24px; }

/* === HERO === */
.hero {
  min-height:100vh;
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, #0d3b2e 100%);
  display:flex; align-items:center;
  position:relative;
  padding-top:var(--nav-h);
  overflow:clip; /* clip prevents scroll without breaking backdrop-filter */
}
/* Kente-inspired texture overlay */
.hero::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    45deg, transparent, transparent 50px,
    rgba(255,204,0,0.03) 50px, rgba(255,204,0,0.03) 100px
  );
  pointer-events:none;
}
/* Orb decorations */
.hero-orb {
  position:absolute; border-radius:50%;
  pointer-events:none; background:var(--gold); opacity:0.055;
}
.hero-orb-1 { width:540px; height:540px; top:-180px; right:-100px; }
.hero-orb-2 { width:280px; height:280px; bottom:-80px; left:28%; }
/* Southern Cross */
.southern-cross {
  position:absolute; right:7%; top:50%;
  transform:translateY(-50%); opacity:0.07; pointer-events:none;
  width:200px; height:220px;
}
.sc-star {
  position:absolute; background:var(--white);
  clip-path:polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.sc-s1 { width:70px; height:70px; top:0; right:10px; }
.sc-s2 { width:48px; height:48px; top:90px; right:120px; }
.sc-s3 { width:34px; height:34px; top:140px; right:30px; }
.sc-s4 { width:28px; height:28px; top:170px; right:100px; }
.sc-s5 { width:22px; height:22px; top:60px; right:50px; }

.hero-content { position:relative; z-index:2; max-width:680px; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,204,0,0.14); border:1px solid rgba(255,204,0,0.3);
  color:var(--gold); padding:6px 16px; border-radius:50px;
  font-size:0.78rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; margin-bottom:24px;
}
.hero h1 { color:var(--white); margin-bottom:20px; }
.hero h1 em { color:var(--gold); font-style:normal; }
.hero-sub {
  color:rgba(255,255,255,0.8); font-size:1.1rem;
  margin-bottom:36px; max-width:540px; line-height:1.75;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:48px; }
.hero-badges { display:flex; gap:10px; flex-wrap:wrap; }
.trust-chip {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:rgba(255,255,255,0.88); padding:5px 13px;
  border-radius:50px; font-size:0.77rem; font-weight:500;
}
.trust-chip-tick { color:var(--gold); font-weight:800; }

/* Glass card floating in hero */
.hero-glass-card {
  position:absolute; right:5%; bottom:12%;
  width:280px; z-index:3;
  padding:24px 28px;
}
.hero-glass-card .hgc-label {
  font-size:0.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.08em; color:var(--gold); margin-bottom:14px;
}
.hero-glass-card .hgc-stat {
  display:flex; align-items:center; gap:12px; margin-bottom:12px;
}
.hero-glass-card .hgc-stat:last-child { margin-bottom:0; }
.hgc-num {
  font-size:1.6rem; font-weight:800; color:var(--white); min-width:56px;
}
.hgc-desc {
  font-size:0.82rem; color:rgba(255,255,255,0.72); line-height:1.4;
}

/* === STATS BAR === */
.stats-bar {
  background:var(--navy);
  padding:44px 0;
}
.stats-inner {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:40px; text-align:center;
}
.stat-num {
  font-size:2.6rem; font-weight:800;
  color:var(--gold); line-height:1; margin-bottom:6px;
}
.stat-lbl {
  color:rgba(255,255,255,0.7); font-size:0.88rem; font-weight:500;
}

/* === TIMELINE === */
.timeline {
  display:flex; position:relative;
  counter-reset:step;
}
.timeline::before {
  content:''; position:absolute;
  top:40px; left:calc(50px + 20px); right:calc(50px + 20px);
  height:2px;
  background:linear-gradient(to right, var(--navy), var(--green));
  z-index:0;
}
.tl-step {
  flex:1; text-align:center;
  padding:0 20px; position:relative; z-index:1;
}
.tl-node {
  width:80px; height:80px; border-radius:50%;
  background:linear-gradient(135deg, var(--navy), var(--green));
  color:var(--white); font-size:1.5rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 22px; box-shadow:0 6px 24px rgba(0,53,128,0.3);
  position:relative;
}
.tl-node::after {
  content:''; position:absolute; inset:-5px;
  border-radius:50%; border:2px solid var(--gold); opacity:0.45;
}
.tl-step h3 { color:var(--text); margin-bottom:10px; }
.tl-step p  { color:var(--text-light); font-size:0.93rem; }
.tl-card {
  background:var(--white); border-radius:var(--radius);
  padding:22px 20px 20px; margin-top:18px;
  box-shadow:var(--shadow-sm); transition:var(--ease);
  border-top:3px solid transparent;
}
.tl-card:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow-md);
  border-top-color:var(--gold);
}

/* === SPLIT SECTION === */
.split { display:grid; grid-template-columns:1fr 1fr; }
.split-panel {
  padding:80px 56px; position:relative; overflow:hidden;
}
.split-panel::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 60px
  );
  pointer-events:none;
}
.split-teachers {
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color:var(--white);
}
.split-schools {
  background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color:var(--white);
}
.split-tag {
  font-size:0.75rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.1em;
  color:var(--gold); margin-bottom:10px;
}
.split-panel h2 { margin-bottom:16px; }
.split-panel p   { opacity:0.87; font-size:1.03rem; margin-bottom:28px; }
.split-panel-content { position:relative; z-index:1; }

/* === FEATURES === */
.features-bg { background:var(--bg-alt); }
.feat-card {
  background:var(--white); border-radius:var(--radius);
  padding:32px 28px; box-shadow:var(--shadow-sm);
  transition:var(--ease); border-top:4px solid transparent;
  overflow:hidden; position:relative;
}
.feat-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.feat-card:nth-child(1) { border-top-color:var(--navy); }
.feat-card:nth-child(2) { border-top-color:var(--gold); }
.feat-card:nth-child(3) { border-top-color:var(--green); }
.feat-card:nth-child(4) { border-top-color:var(--red); }
.feat-icon {
  width:50px; height:50px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.35rem; margin-bottom:20px;
}
.fi-1 { background:rgba(0,53,128,0.09); }
.fi-2 { background:rgba(255,204,0,0.15); }
.fi-3 { background:rgba(46,125,50,0.09); }
.fi-4 { background:rgba(192,57,43,0.09); }
.feat-card h3 { color:var(--text); margin-bottom:10px; }
.feat-card p  { color:var(--text-light); font-size:0.93rem; }

/* === CTA BLOCKS === */
.cta-block {
  border-radius:var(--radius-lg); padding:60px 48px;
  text-align:center; position:relative; overflow:hidden;
}
.cta-block::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 80px
  );
  pointer-events:none;
}
.cta-block-content { position:relative; z-index:1; }
.cta-teachers { background:linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.cta-schools  { background:linear-gradient(135deg, var(--green), var(--green-light)); }
.cta-block h2 { color:var(--white); margin-bottom:12px; }
.cta-block p  {
  color:rgba(255,255,255,0.84); font-size:1.05rem;
  max-width:500px; margin:0 auto 32px;
}
.cta-pair {
  display:grid; grid-template-columns:1fr 1fr; gap:28px;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background:linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #0d3b2e 100%);
  padding:calc(var(--nav-h) + 64px) 0 64px;
  text-align:center; color:var(--white);
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,204,0,0.03) 40px, rgba(255,204,0,0.03) 80px
  );
  pointer-events:none;
}
.page-hero-inner { position:relative; z-index:2; }
.page-hero h1  { margin-bottom:16px; }
.page-hero p   {
  color:rgba(255,255,255,0.8); font-size:1.08rem;
  max-width:560px; margin:0 auto;
}

/* === ABOUT PAGE === */
.mission-block {
  max-width:820px; margin:0 auto; text-align:center;
}
.mission-stat-strip {
  display:flex; gap:40px; justify-content:center;
  flex-wrap:wrap; margin-top:40px;
}
.ms-item { text-align:center; }
.ms-num  { font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:4px; }
.ms-lbl  { font-size:0.85rem; color:var(--text-muted); font-weight:500; }

.pull-quote {
  font-size:1.2rem; font-weight:600; color:var(--navy);
  border-left:4px solid var(--gold); padding:16px 24px;
  background:rgba(0,53,128,0.04); border-radius:0 8px 8px 0;
  margin:36px 0; line-height:1.65; text-align:left;
}

.role-banner {
  background:linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius:var(--radius-lg); padding:52px 48px;
  color:var(--white); text-align:center;
  margin:0 0 88px;
}
.role-banner-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,204,0,0.14); border:1px solid rgba(255,204,0,0.3);
  color:var(--gold); padding:6px 18px; border-radius:50px;
  font-size:0.78rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.08em; margin-bottom:20px;
}
.role-banner h2 { margin-bottom:12px; }
.role-banner p  { opacity:0.84; font-size:1.03rem; max-width:520px; margin:0 auto; }

.value-card {
  background:var(--white); border-radius:var(--radius);
  padding:36px 28px; text-align:center;
  box-shadow:var(--shadow-sm); transition:var(--ease);
  border-bottom:4px solid transparent;
}
.value-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.value-card:nth-child(1) { border-bottom-color:var(--navy); }
.value-card:nth-child(2) { border-bottom-color:var(--gold); }
.value-card:nth-child(3) { border-bottom-color:var(--green); }
.value-card:nth-child(4) { border-bottom-color:var(--red); }
.value-icon { font-size:2.2rem; margin-bottom:14px; }
.value-card h3 { color:var(--text); margin-bottom:8px; }
.value-card p  { color:var(--text-light); font-size:0.9rem; }

.two-col { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.two-col-text h2 { margin-bottom:16px; }
.two-col-text p  { color:var(--text-light); font-size:1rem; }
.highlight-box {
  background:var(--white); border-radius:var(--radius);
  padding:32px; box-shadow:var(--shadow-sm);
  border-left:4px solid var(--gold);
  margin-top:24px;
}
.highlight-box p { color:var(--text-light); font-size:0.95rem; }

/* === FAQ PAGE === */
.tab-bar {
  display:flex; background:var(--bg-alt);
  border-radius:50px; padding:6px;
  width:fit-content; margin:0 auto 56px;
  gap:0;
}
.faq-tab {
  padding:11px 32px; border-radius:50px;
  cursor:pointer; font-weight:600; font-size:0.93rem;
  transition:var(--ease); color:var(--text-light);
  border:none; background:transparent;
}
.faq-tab.active {
  background:var(--navy); color:var(--white);
  box-shadow:var(--shadow-sm);
}
.faq-panel { display:none; max-width:800px; margin:0 auto; }
.faq-panel.active { display:block; }
.faq-item { border-bottom:1px solid rgba(0,0,0,0.07); }
.faq-item:last-child { border-bottom:none; }
.faq-q {
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:20px; cursor:pointer; font-weight:600; font-size:0.98rem;
  color:var(--text); padding:22px 0;
  background:none; border:none; width:100%; text-align:left;
  transition:color 0.2s;
}
.faq-q:hover { color:var(--navy); }
.faq-icon {
  width:26px; height:26px; min-width:26px; border-radius:50%;
  background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; font-weight:700; transition:var(--ease);
  line-height:1;
}
.faq-item.open .faq-icon {
  background:var(--gold); color:var(--navy-dark); transform:rotate(45deg);
}
.faq-a {
  display:none; padding:0 0 22px;
  color:var(--text-light); font-size:0.95rem; line-height:1.8;
}
.faq-item.open .faq-a { display:block; }
.faq-callout {
  background:rgba(0,53,128,0.05); border-left:3px solid var(--navy);
  padding:12px 16px; border-radius:0 8px 8px 0;
  margin-top:12px; font-weight:500; color:var(--text);
  font-size:0.92rem;
}
.faq-callout-green {
  background:rgba(46,125,50,0.05); border-left-color:var(--green);
}

/* === FORMS PAGE === */
.form-chooser { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.form-choice {
  display:flex; flex-direction:column; align-items:flex-start; text-align:left;
  background:var(--white); border-radius:var(--radius-lg);
  padding:40px; box-shadow:var(--shadow-md);
  border-top:5px solid var(--navy); border-left:none; border-right:none; border-bottom:none;
  cursor:pointer; font-family:inherit; transition:var(--ease);
}
.form-choice:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.2); }
.form-choice-school { border-top-color:var(--green); }
.form-choice h2 { font-size:1.6rem; margin-bottom:8px; }
.form-choice > p { color:var(--text-light); font-size:0.93rem; margin-bottom:20px; }
.form-choice-cta { font-weight:700; color:var(--navy); }
.form-choice-school .form-choice-cta { color:var(--green); }
.form-back {
  background:none; border:none; cursor:pointer; font-family:inherit;
  color:var(--text-muted); font-size:0.85rem; font-weight:600;
  padding:0; margin-bottom:20px; display:inline-block;
}
.form-back:hover { color:var(--text); }
.forms-grid { display:grid; grid-template-columns:1fr; gap:40px; align-items:start; max-width:720px; margin:0 auto; }
.form-card {
  background:var(--white); border-radius:var(--radius-lg);
  padding:40px; box-shadow:var(--shadow-md);
  border-top:5px solid var(--navy);
}
.form-card.schools-form { border-top-color:var(--green); }
.form-card-tag {
  font-size:0.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.1em; color:var(--text-muted); margin-bottom:6px;
}
.form-card h2 { font-size:1.6rem; margin-bottom:8px; }
.form-card > p { color:var(--text-light); font-size:0.93rem; margin-bottom:28px; }
.form-fields { display:flex; flex-direction:column; gap:16px; }
.ff { display:flex; flex-direction:column; gap:6px; }
.ff label {
  font-size:0.84rem; font-weight:600; color:var(--text);
}
.ff label .opt { color:var(--text-muted); font-weight:400; }
.ff input, .ff select, .ff textarea {
  padding:12px 14px;
  border:1.5px solid rgba(0,0,0,0.1);
  border-radius:8px; font-size:0.93rem;
  color:var(--text); background:var(--bg);
  transition:var(--ease); font-family:inherit;
  -webkit-appearance:none;
}
.ff select {
  appearance:none; -moz-appearance:none;
  padding-right:40px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7a8e' stroke-width='2' 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 14px center;
  background-size:16px;
  cursor:pointer;
}
.ff input:focus, .ff select:focus, .ff textarea:focus {
  outline:none; border-color:var(--navy); background:var(--white);
  box-shadow:0 0 0 3px rgba(0,53,128,0.08);
}
.schools-form .ff input:focus,
.schools-form .ff select:focus,
.schools-form .ff textarea:focus {
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(46,125,50,0.08);
}
.ff textarea { resize:vertical; min-height:96px; }
.ff-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.vacancy-row { display:grid; grid-template-columns:1fr 1fr 1fr auto; gap:16px; align-items:end; margin-bottom:16px; }
.vacancy-row:last-child { margin-bottom:0; }
.vacancy-remove-btn {
  padding:12px 14px; border-radius:8px; border:1.5px solid rgba(0,0,0,0.1);
  background:var(--white); color:var(--text-muted); cursor:pointer; font-size:0.85rem;
  transition:var(--ease); white-space:nowrap;
}
.vacancy-remove-btn:hover { border-color:#C0392B; color:#C0392B; }
.vacancy-add-btn {
  margin-top:4px; padding:10px 18px; border-radius:50px; border:1.5px dashed rgba(46,125,50,0.4);
  background:transparent; color:var(--green); font-weight:600; font-size:0.85rem; cursor:pointer;
  transition:var(--ease);
}
.vacancy-add-btn:hover { background:rgba(46,125,50,0.06); border-color:var(--green); }
@media (max-width:640px) { .vacancy-row { grid-template-columns:1fr; } }
.form-divider { height:1px; background:rgba(0,0,0,0.06); }
.form-note {
  font-size:0.78rem; color:var(--text-muted);
  text-align:center; margin-top:10px; line-height:1.5;
}

/* === CONTACT PAGE === */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start;
}
.contact-info h2  { margin-bottom:12px; }
.contact-info > p { color:var(--text-light); margin-bottom:28px; font-size:1rem; }
.contact-detail {
  display:flex; align-items:flex-start; gap:14px;
  padding:18px; background:var(--white);
  border-radius:var(--radius); margin-bottom:14px;
  box-shadow:var(--shadow-sm);
}
.cd-icon {
  width:42px; height:42px; border-radius:10px;
  background:rgba(0,53,128,0.08);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.cd-title { font-size:0.78rem; color:var(--text-muted); font-weight:700;
  text-transform:uppercase; letter-spacing:0.05em; margin-bottom:3px; }
.cd-val { color:var(--text); font-weight:500; font-size:0.95rem; }
.contact-form-wrap {
  background:var(--white); border-radius:var(--radius-lg);
  padding:40px; box-shadow:var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom:6px; }
.contact-form-wrap > p { color:var(--text-light); font-size:0.93rem; margin-bottom:28px; }

/* === PRIVACY PAGE === */
.privacy-wrap { max-width:760px; margin:0 auto; }
.priv-block {
  background:var(--white); border-radius:var(--radius);
  padding:36px; margin-bottom:20px; box-shadow:var(--shadow-sm);
}
.priv-block h3 {
  color:var(--navy); margin-bottom:4px;
  padding-bottom:12px;
  border-bottom:2px solid var(--gold);
  display:inline-block; margin-bottom:16px;
}
.priv-block p  { color:var(--text-light); font-size:0.95rem; }
.priv-block ul { padding-left:20px; }
.priv-block ul li {
  color:var(--text-light); font-size:0.95rem;
  margin-bottom:8px; list-style:disc;
}
.priv-updated {
  font-size:0.82rem; color:var(--text-muted);
  text-align:right; margin-bottom:28px;
}

/* === FOOTER === */
.footer {
  background:linear-gradient(170deg, #080814 0%, var(--navy-dark) 100%);
  color:rgba(255,255,255,0.7); padding:64px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:1.6fr 1fr 1fr;
  gap:48px; padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-size:1.25rem; font-weight:800; color:var(--white); margin-bottom:12px;
}
.footer-brand-name span { color:var(--gold); }
.footer-brand p { font-size:0.88rem; line-height:1.65; }
.footer-col h4 {
  color:var(--gold); font-size:0.78rem;
  text-transform:uppercase; letter-spacing:0.1em; margin-bottom:18px;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a {
  color:rgba(255,255,255,0.58); font-size:0.88rem; transition:var(--ease);
}
.footer-col ul a:hover { color:var(--gold); }
.footer-disclaimer {
  background:rgba(255,204,0,0.07);
  border:1px solid rgba(255,204,0,0.18);
  border-radius:var(--radius); padding:18px 22px;
  margin:28px 0;
  font-size:0.85rem; color:rgba(255,255,255,0.65); line-height:1.65;
}
.footer-disclaimer strong { color:var(--gold); }
.footer-bottom {
  padding:18px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:0.82rem; color:rgba(255,255,255,0.35);
  flex-wrap:wrap; gap:10px;
}
.footer-bottom a { color:rgba(255,255,255,0.4); transition:var(--ease); }
.footer-bottom a:hover { color:var(--gold); }

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity:0; transform:translateY(28px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.fd1 { transition-delay:0.1s; }
.fd2 { transition-delay:0.2s; }
.fd3 { transition-delay:0.3s; }
.fd4 { transition-delay:0.4s; }

/* === RESPONSIVE === */
@media (max-width:900px) {
  .hero-glass-card { display:none; }
  .two-col { grid-template-columns:1fr; gap:40px; }
  .split   { grid-template-columns:1fr; }
  .split-panel { padding:60px 32px; }
  .contact-grid { grid-template-columns:1fr; }
  .forms-grid, .form-chooser { grid-template-columns:1fr; }
  .cta-pair     { grid-template-columns:1fr; }
  .footer-grid  { grid-template-columns:1fr; gap:32px; }
  .timeline     { flex-direction:column; gap:0; }
  .timeline::before { display:none; }
  .tl-step { padding:0; text-align:left; display:flex; gap:16px; align-items:flex-start; margin-bottom:20px; }
  .tl-node { margin:0; flex-shrink:0; width:64px; height:64px; font-size:1.3rem; }
  .tl-card { margin-top:0; text-align:left; flex:1; min-width:0; }
}
@media (max-width:768px) {
  .nav-links {
    display:none; position:absolute;
    top:var(--nav-h); left:0; right:0;
    background:var(--navy-dark);
    flex-direction:column; padding:16px 24px;
    gap:0; box-shadow:0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { display:flex; }
  .nav-links li   { border-bottom:1px solid rgba(255,255,255,0.07); }
  .nav-links li:last-child { border-bottom:none; padding-top:10px; }
  .nav-links a    { display:block; padding:13px 0; }
  .nav-toggle     { display:flex; }
  .hero-actions   { flex-direction:column; align-items:flex-start; }
  .ff-row         { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .section  { padding:64px 0; }
  .cta-block { padding:44px 24px; }
  .form-card, .form-choice { padding:28px 20px; }
  .contact-form-wrap { padding:28px 20px; }
  .role-banner { padding:40px 24px; }
}

/* ============================================================
   FORMS PAGE — NEW ELEMENTS
   ============================================================ */

/* File input */
.ff input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
  border-style: dashed;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.88rem;
}
.ff input[type="file"]:hover { border-color: var(--navy); background: var(--white); }
.schools-form .ff input[type="file"]:hover { border-color: var(--green); }

/* Confirmation checkbox */
.confirm-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 0.84rem; color: var(--text-light);
  line-height: 1.5; padding: 12px 14px;
  background: rgba(0,53,128,0.04); border: 1.5px solid rgba(0,53,128,0.1);
  border-radius: 8px; transition: border-color 0.2s;
}
.confirm-check:hover { border-color: rgba(0,53,128,0.25); }
.schools-form .confirm-check { background: rgba(46,125,50,0.04); border-color: rgba(46,125,50,0.1); }
.schools-form .confirm-check:hover { border-color: rgba(46,125,50,0.28); }
.confirm-check input[type="checkbox"] {
  width: 17px; height: 17px; min-width: 17px;
  margin-top: 2px; cursor: pointer; accent-color: var(--navy);
  flex-shrink: 0;
}
.schools-form .confirm-check input[type="checkbox"] { accent-color: var(--green); }
.confirm-check span { flex: 1; }

/* Form success / error messages */
.form-msg {
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.86rem; font-weight: 500; line-height: 1.5; display: none;
}
.form-msg.success {
  display: block;
  background: rgba(46,125,50,0.08); border: 1px solid rgba(46,125,50,0.22); color: #1b5e20;
}
.form-msg.error {
  display: block;
  background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.22); color: var(--red);
}

/* Disabled button */
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
