/*
 * afaq-styles.css
 * Shared stylesheet for all Afaq page templates
 * Loaded via afaq-header.php
 */

/* ── Reset & Base ── */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden;width:100%}
body.afaq-template{
  font-family:'Cairo',sans-serif!important;
  direction:rtl;
  overflow-x:hidden!important;
  color:#1a2b3c;
  background:#F5F2EC;
  width:100%;
  max-width:100vw;
}
body.afaq-template, body.afaq-template *:not(i):not(.ti){font-family:'Cairo',sans-serif!important;}

/* ── Global overflow prevention ── */
body.afaq-template section,
body.afaq-template .navbar,
body.afaq-template footer{
  max-width:100vw!important;
  overflow-x:hidden!important;
  box-sizing:border-box!important;
  width:100%!important;
}
body.afaq-template img,
body.afaq-template video,
body.afaq-template iframe{max-width:100%!important;height:auto}

/* ── CSS Variables ── */
:root{
  --teal:#1E6B7A;
  --teal-dark:#154f5c;
  --teal-light:#E0EFF2;
  --gold:#E8A020;
  --gold-dark:#c4861a;
  --navy:#1A2B3C;
  --cream:#F5F2EC;
  --cream-dark:#EDE9E1;
  --white:#ffffff;
  --text:#1a2b3c;
  --muted:#6a7a8a;
  --border:#D8D2C8;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:0 4rem;
  display:flex;align-items:center;justify-content:space-between;
  height:90px;
  background:rgba(245,242,236,0.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:box-shadow 0.3s;
  width:100%;box-sizing:border-box;
  overflow:visible;
  left:0!important;right:0!important;width:100%!important;
}
.navbar.scrolled{box-shadow:0 2px 20px rgba(0,0,0,0.08)}
.nav-logo{display:flex;align-items:center;gap:12px;text-decoration:none;flex-shrink:0}
.nav-logo img{height:85px;object-fit:contain}
.nav-links{display:flex;gap:0;list-style:none;flex-shrink:1;min-width:0;overflow:visible}
.nav-links li{position:relative;white-space:nowrap}
.nav-links li a{
  color:var(--muted);text-decoration:none;font-size:13px;font-weight:500;
  padding:0 16px;height:70px;display:flex;align-items:center;
  position:relative;transition:color 0.2s;
}
.nav-links li a::after{
  content:'';position:absolute;bottom:0;right:16px;left:16px;height:2px;
  background:var(--teal);transform:scaleX(0);transition:transform 0.25s;
}
.nav-links li a:hover{color:var(--teal)}
.nav-links li a:hover::after{transform:scaleX(1)}
.nav-links li a.active{color:var(--teal)}
.nav-links li a.active::after{transform:scaleX(1)}
.nav-dropdown{position:relative}
.nav-dropdown:hover .dd-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dd-menu{
  position:absolute;top:90px;right:0;
  background:var(--white);min-width:180px;
  border-radius:12px;border:1px solid var(--border);
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
  padding:8px;opacity:0;visibility:hidden;
  transform:translateY(-8px);transition:all 0.2s ease;z-index:1001;
}
.dd-menu a{
  display:block;padding:10px 14px;font-size:13px;color:var(--text);
  text-decoration:none;border-radius:8px;transition:background 0.15s;
}
.dd-menu a:hover{background:var(--teal-light);color:var(--teal)}
.nav-actions{display:flex;align-items:center;gap:10px;flex-shrink:0}
.nav-mobile-toggle{
  display:none;flex-direction:column;justify-content:center;align-items:center;
  gap:5px;cursor:pointer;background:none;border:1.5px solid #D8D2C8;
  border-radius:8px;padding:8px;width:40px;height:40px;flex-shrink:0;
}
.nav-mobile-toggle span{width:20px;height:2px;background:#1A2B3C;display:block;border-radius:2px}
.btn-ghost{
  background:transparent;border:1.5px solid var(--border);
  color:var(--text);padding:8px 20px;border-radius:8px;
  font-size:13px;font-weight:600;cursor:pointer;font-family:'Cairo',sans-serif;
  transition:border-color 0.2s,color 0.2s;
}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal)}
.btn-dark{
  background:var(--navy);color:var(--white);border:none;
  padding:9px 22px;border-radius:8px;font-size:13px;font-weight:600;
  cursor:pointer;font-family:'Cairo',sans-serif;transition:background 0.2s;
}
.btn-dark:hover{background:#0f1c28}

/* ════════════════════════════════════════
   SHARED COMPONENTS
════════════════════════════════════════ */
.overline{
  font-size:11px;font-weight:700;color:var(--teal);
  letter-spacing:2px;text-transform:uppercase;
  display:flex;align-items:center;gap:8px;margin-bottom:0.75rem;
}
.overline::before{content:'';width:24px;height:1.5px;background:var(--teal)}
.overline.gold{color:var(--gold)}
.overline.gold::before{background:var(--gold)}
.overline.white{color:rgba(255,255,255,0.7)}
.overline.white::before{background:rgba(255,255,255,0.5)}

.btn-teal{
  background:var(--teal);color:#fff;padding:14px 30px;border-radius:10px;border:none;
  font-size:14px;font-weight:700;cursor:pointer;font-family:'Cairo',sans-serif;
  transition:background 0.2s,transform 0.15s;display:inline-flex;align-items:center;gap:8px;
}
.btn-teal:hover{background:var(--teal-dark);transform:translateY(-1px)}
.btn-text{
  background:transparent;border:none;color:var(--navy);font-size:14px;font-weight:600;
  cursor:pointer;font-family:'Cairo',sans-serif;display:inline-flex;align-items:center;gap:8px;
  padding:14px 0;border-bottom:2px solid transparent;transition:border-color 0.2s,color 0.2s;
}
.btn-text:hover{border-bottom-color:var(--gold);color:var(--teal)}
.btn-submit{
  width:100%;padding:14px;background:var(--gold);color:var(--navy);
  border:none;border-radius:10px;font-size:15px;font-weight:700;
  cursor:pointer;font-family:'Cairo',sans-serif;margin-top:0.5rem;
  transition:background 0.2s,transform 0.15s;
}
.btn-submit:hover{background:var(--gold-dark);transform:translateY(-1px)}

/* Page top padding (below fixed navbar) */
.page-body{padding-top:90px}

/* Section shared styles */
.section-header{margin-bottom:3.5rem}
.section-header h2{font-size:36px;font-weight:900;color:var(--navy);line-height:1.25;margin-top:0.5rem}
.section-header p{font-size:15px;color:var(--muted);line-height:1.85;max-width:560px;margin-top:0.75rem}

/* ── TICKER ── */
.ticker{background:var(--navy);padding:14px 0;overflow:hidden;border-top:2px solid var(--gold)}
.ticker-inner{display:flex;gap:3rem;animation:ticker 25s linear infinite;width:max-content}
.ticker-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:rgba(255,255,255,0.7);white-space:nowrap}
.ticker-item i{color:var(--gold);font-size:14px}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── STATS BAR ── */
.stats-bar{background:var(--teal);padding:3rem 4rem;display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.stat-v2{text-align:center;padding:0 1rem;border-left:1px solid rgba(255,255,255,0.15)}
.stat-v2:last-child{border-left:none}
.stat-v2-num{font-size:44px;font-weight:900;color:#fff;line-height:1;margin-bottom:6px}
.stat-v2-num span{font-size:28px}
.stat-v2-label{font-size:13px;color:rgba(255,255,255,0.65)}

/* ── CTA FULL ── */
.cta-full{background:var(--teal);padding:6rem 4rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.cta-full-text .overline{color:rgba(255,255,255,0.7);display:inline-flex}
.cta-full-text .overline::before{background:rgba(255,255,255,0.5)}
.cta-full-text h2{font-size:38px;font-weight:900;color:#fff;line-height:1.2;margin:0.6rem 0 1.25rem}
.cta-full-text p{font-size:14px;color:rgba(255,255,255,0.7);line-height:1.85}
.cta-full-form{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);border-radius:20px;padding:2.5rem}
.form-group{margin-bottom:1rem}
.form-label{font-size:12px;font-weight:600;color:rgba(255,255,255,0.8);margin-bottom:6px;display:block}
.form-input,.form-select{
  width:100%;padding:12px 16px;background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.2);
  border-radius:10px;font-size:13px;color:#fff;font-family:'Cairo',sans-serif;
  transition:border-color 0.2s,background 0.2s;outline:none;
}
.form-input::placeholder{color:rgba(255,255,255,0.4)}
.form-input:focus,.form-select:focus{border-color:rgba(255,255,255,0.5);background:rgba(255,255,255,0.15)}
.form-select option{color:var(--navy);background:#fff}

/* ── FOOTER ── */
.footer-v2{background:#1A2B3C!important;padding:5rem 4rem 2.5rem!important;width:100%!important;box-sizing:border-box!important}
.footer-v2-top{display:grid!important;grid-template-columns:2fr 1fr 1fr 1fr!important;gap:3rem!important;padding-bottom:3rem!important;border-bottom:1px solid rgba(255,255,255,0.08)!important;margin-bottom:2rem!important}
.footer-v2-brand p{font-size:13px;color:rgba(255,255,255,0.4);line-height:1.8;max-width:240px;margin-bottom:1.5rem}
.footer-v2-social{display:flex;gap:8px}
.social-v2{width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.5);font-size:16px;text-decoration:none;transition:all 0.2s}
.social-v2:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
.footer-v2-col h5{font-size:12px;font-weight:700;color:#fff;letter-spacing:1px;text-transform:uppercase;margin-bottom:1.25rem}
.footer-v2-col ul{list-style:none}
.footer-v2-col ul li{margin-bottom:10px}
.footer-v2-col ul li a{font-size:13px;color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.2s}
.footer-v2-col ul li a:hover{color:var(--gold)}
.footer-v2-bottom{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:rgba(255,255,255,0.25)}
.footer-v2-bottom a{color:rgba(255,255,255,0.25);text-decoration:none}
.footer-v2-bottom a:hover{color:var(--gold)}

/* ── TESTIMONIALS ── */
.testi-v2{padding:6rem 4rem;background:var(--cream)}
.testi-v2-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3rem}
.testi-v2 h2{font-size:34px;font-weight:900;color:var(--navy);max-width:380px;line-height:1.25}
.testi-v2-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.testi-v2-card{background:var(--white);border:1px solid var(--border);border-radius:20px;padding:2rem}
.testi-v2-card.featured{background:var(--navy);border-color:var(--navy)}
.testi-quote{font-size:36px;color:var(--gold);line-height:1;margin-bottom:0.75rem;font-family:Georgia,serif}
.testi-v2-text{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:1.5rem;font-style:italic}
.testi-v2-card.featured .testi-v2-text{color:rgba(255,255,255,0.75)}
.testi-v2-author{display:flex;align-items:center;gap:12px}
.testi-v2-avatar{width:44px;height:44px;border-radius:50%;background:var(--teal-light);display:flex;align-items:center;justify-content:center;font-size:15px;font-weight:700;color:var(--teal);flex-shrink:0}
.featured .testi-v2-avatar{background:rgba(255,255,255,0.1);color:var(--gold)}
.testi-v2-name{font-size:14px;font-weight:700;color:var(--navy)}
.featured .testi-v2-name{color:#fff}
.testi-v2-role{font-size:12px;color:var(--muted)}
.featured .testi-v2-role{color:rgba(255,255,255,0.5)}
.testi-stars{color:var(--gold);font-size:13px;letter-spacing:1px;margin-bottom:1rem}

/* ── ANIMATIONS ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeRight{from{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}
@keyframes scaleIn{from{opacity:0;transform:scale(0.95)}to{opacity:1;transform:scale(1)}}
.anim{opacity:0;transform:translateY(30px);transition:opacity 0.7s ease,transform 0.7s ease}
.anim.visible{opacity:1;transform:none}
.anim-right{opacity:0;transform:translateX(-30px);transition:opacity 0.7s ease,transform 0.7s ease}
.anim-right.visible{opacity:1;transform:none}
.anim-scale{opacity:0;transform:scale(0.95);transition:opacity 0.7s ease,transform 0.7s ease}
.anim-scale.visible{opacity:1;transform:scale(1)}
.d1{transition-delay:0.1s}.d2{transition-delay:0.2s}.d3{transition-delay:0.3s}.d4{transition-delay:0.4s}

/* ── Mobile menu ── */
#menu-close-btn{display:none}
@media(max-width:768px){#menu-close-btn{display:block}}

.nav-links.mobile-open{
  display:flex!important;flex-direction:column!important;position:fixed!important;
  top:70px!important;right:0!important;left:0!important;width:100vw!important;
  background:#F5F2EC!important;padding:0.5rem 1rem 5rem!important;z-index:9997!important;
  box-shadow:0 8px 24px rgba(0,0,0,0.12)!important;list-style:none!important;margin:0!important;overflow-y:auto!important;
}
.nav-links.mobile-open li a{height:auto!important;padding:13px 8px!important;border-bottom:1px solid #eee!important;display:block!important;font-size:14px!important;color:#1A2B3C!important}
.nav-links.mobile-open .dd-menu{position:static!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:none!important;background:#E8E4DC!important;border-radius:8px!important;margin:4px 0!important}
.nav-actions.mobile-open{display:flex!important;justify-content:center!important;gap:10px!important;padding:10px 1rem!important;position:fixed!important;right:0!important;left:0!important;bottom:0!important;width:100vw!important;background:#F5F2EC!important;z-index:9999!important;border-top:1px solid #D8D2C8!important;box-shadow:0 -4px 16px rgba(0,0,0,0.08)!important}
@media(min-width:769px){.nav-mobile-toggle{display:none!important}}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1024px){
  .navbar{padding:0 2rem}
  .nav-links li a{padding:0 10px;font-size:12px}
  .stats-bar{grid-template-columns:repeat(2,1fr)}
  .stat-v2{padding:2rem 1rem;border-left:none;border-bottom:1px solid rgba(255,255,255,0.1)}
  .cta-full{grid-template-columns:1fr;padding:4rem 2rem;gap:3rem}
  .cta-full-text{max-width:100%}
  .footer-v2{padding:4rem 2rem 2rem!important}
  .footer-v2-top{grid-template-columns:1fr 1fr!important;gap:2rem!important}
  .testi-v2{padding:4rem 2rem}
  .testi-v2-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .navbar{padding:0 1.25rem!important;height:70px!important}
  .nav-logo img{height:50px!important}
  .nav-links{display:none}
  .nav-actions{display:none}
  .nav-mobile-toggle{display:flex!important}
  .page-body{padding-top:70px}
  .stats-bar{grid-template-columns:1fr 1fr!important;padding:2rem 1.25rem!important}
  .stat-v2-num{font-size:28px!important}
  .cta-full{padding:3rem 1.25rem!important;gap:2rem!important}
  .cta-full-text h2{font-size:24px!important}
  .cta-full-form{padding:1.5rem!important}
  .footer-v2{padding:3rem 1.25rem 2rem!important}
  .footer-v2-top{grid-template-columns:1fr!important;gap:2rem!important}
  .footer-v2-bottom{flex-direction:column!important;gap:1rem!important;text-align:center!important;align-items:center!important}
  .testi-v2{padding:3rem 1.25rem!important}
  .testi-v2-header{flex-direction:column!important;align-items:flex-start!important;gap:12px!important}
  .testi-v2 h2{font-size:22px!important}
  .testi-v2-grid{grid-template-columns:1fr!important;gap:1rem!important}
}
@media(max-width:480px){
  .navbar{padding:0 1rem!important}
  .btn-teal,.btn-ghost,.btn-dark{font-size:12px!important;padding:9px 16px!important}
}

/* ════════════════════════════════════════
   FAQ — Shared across all pages
════════════════════════════════════════ */
.faq-item {
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item:hover,
.faq-item.open { border-color:var(--teal); }
.faq-q {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:18px 20px; background:none; border:none; cursor:pointer;
  text-align:right; font-size:.9rem; font-weight:600; color:var(--navy);
  gap:12px; font-family:'Cairo',sans-serif;
}
.faq-q i { flex-shrink:0; color:var(--teal); transition:transform .3s; }
.faq-item.open .faq-q i { transform:rotate(180deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a { max-height:300px; }
.faq-a p {
  padding:0 20px 18px; color:var(--muted);
  font-size:.88rem; line-height:1.7; margin:0;
}

/* ════════════════════════════════════════
   BUNDLE GRID — Shared layout for teachers & students
════════════════════════════════════════ */
.teach-bundle,
.stud-bundle {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
  max-width:1100px;
  margin:0 auto 5rem;
  padding-bottom:4rem;
  border-bottom:1px solid var(--border);
}
.teach-bundle:last-child,
.stud-bundle:last-child { border-bottom:none; margin-bottom:0; }
.teach-bundle.reverse,
.stud-bundle.reverse { direction:ltr; }
.teach-bundle.reverse > *,
.stud-bundle.reverse > * { direction:rtl; }

@media(max-width:1024px){
  .teach-bundle,
  .stud-bundle,
  .teach-bundle.reverse,
  .stud-bundle.reverse {
    grid-template-columns:1fr;
    gap:2rem;
    direction:rtl;
  }
}

/* ════════════════════════════════════════
   BUNDLE IMAGE — Shared
════════════════════════════════════════ */
.teach-bundle-img,
.stud-bundle-img {
  position:relative;
  border-radius:18px;
  overflow:visible;
}

.teach-bundle-img img,
.stud-bundle-img img {
  width:100%;
  border-radius:18px;
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
  display:block;
  height:auto;
}

/* Placeholder shown ONLY when image fails to load */
.teach-bundle-ph,
.stud-bundle-ph {
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  background:#f4f6f8;
  border:2px dashed #ccc;
  border-radius:18px;
  height:320px;
  color:#aaa;
  font-size:.82rem;
  text-align:center;
  width:100%;
}
.teach-bundle-ph i,
.stud-bundle-ph i { font-size:2.5rem; }

.teach-bundle-badge,
.stud-bundle-badge {
  position:absolute; top:-14px; right:-14px;
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:900; color:#fff;
  box-shadow:0 4px 16px rgba(0,0,0,0.2);
}
.teal-bg  { background:var(--teal); }
.gold-bg  { background:var(--gold); }
.navy-bg  { background:var(--navy); }
.green-bg { background:#1a7a4a; }

/* ════════════════════════════════════════
   BUNDLE TEXT — Shared
════════════════════════════════════════ */
.teach-bundle-text h3,
.stud-bundle-text h3 {
  font-size:clamp(1.3rem,2.2vw,1.8rem);
  font-weight:800; color:var(--navy);
  margin:8px 0 12px; line-height:1.3;
}
.sub-title {
  font-size:.82em; font-weight:600;
  color:var(--muted); display:block;
}
.bundle-tagline {
  font-size:.88rem; color:var(--teal); font-style:italic;
  margin-bottom:1.2rem; padding:10px 14px;
  background:var(--teal-light); border-radius:8px;
  border-right:3px solid var(--teal);
}
.teach-bundle-list,
.stud-bundle-list {
  list-style:none; padding:0; margin:0 0 1.2rem;
  display:flex; flex-direction:column; gap:10px;
}
.teach-bundle-list li,
.stud-bundle-list li {
  display:flex; gap:10px; align-items:flex-start;
  font-size:.9rem; color:var(--text);
}
.teach-bundle-list i,
.stud-bundle-list i {
  color:var(--teal); flex-shrink:0; margin-top:2px;
}
.bundle-value {
  display:flex; gap:8px; align-items:flex-start;
  background:var(--cream); border-radius:10px;
  padding:12px 16px; font-size:.85rem; color:var(--muted);
  margin-bottom:1.4rem; line-height:1.6;
}
.bundle-value i { color:var(--gold); flex-shrink:0; font-size:1.1rem; margin-top:1px; }

/* ════════════════════════════════════════
   SECTION HEADER — Shared
════════════════════════════════════════ */
.section-sub {
  color:var(--muted); max-width:480px;
  margin:0 auto; line-height:1.7; font-size:.93rem;
}

/* ════════════════════════════════════════
   FLOATING ADVISOR BUTTON
════════════════════════════════════════ */
.float-advisor {
  position:fixed; bottom:2rem; left:2rem; z-index:999;
  background:var(--teal); color:#fff; border:none; border-radius:50px;
  padding:13px 20px; font-size:.88rem; font-weight:700;
  display:flex; align-items:center; gap:8px; cursor:pointer;
  box-shadow:0 8px 28px rgba(30,107,122,0.45);
  font-family:'Cairo',sans-serif;
  transition:background .2s, transform .2s;
}
.float-advisor:hover { background:var(--teal-dark); transform:translateY(-2px); }

/* ════════════════════════════════════════
   BTN GOLD — Shared
════════════════════════════════════════ */
.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; background:var(--gold); color:#fff;
  border:none; border-radius:8px; font-size:.9rem; font-weight:700;
  cursor:pointer; font-family:'Cairo',sans-serif;
  text-decoration:none; transition:background .2s;
}
.btn-gold:hover { background:var(--gold-dark); }

/* ════════════════════════════════════════
   BTN GHOST WHITE — Shared
════════════════════════════════════════ */
.btn-ghost-white {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; background:transparent; color:#fff;
  border:2px solid rgba(255,255,255,0.4); border-radius:8px;
  font-size:.9rem; font-weight:700; cursor:pointer;
  font-family:'Cairo',sans-serif; text-decoration:none;
  transition:border-color .2s, background .2s;
}
.btn-ghost-white:hover {
  border-color:#fff; background:rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════
   FORM SECTION TITLE
════════════════════════════════════════ */
.form-section-title {
  font-size:.75rem; font-weight:800; letter-spacing:1px;
  text-transform:uppercase; color:rgba(255,255,255,0.5);
  margin-top:.5rem; padding-bottom:.5rem;
  border-bottom:1px solid rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════
   OVERLINE VARIANTS
════════════════════════════════════════ */
.overline.teal   { color:var(--teal); }
.overline.teal::before { background:var(--teal); }
.overline.gold2  { color:var(--gold-dark); }
.overline.gold2::before { background:var(--gold-dark); }
.overline.navy2  { color:var(--navy); }
.overline.navy2::before { background:var(--navy); }
.overline.green  { color:#1a7a4a; }
.overline.green::before { background:#1a7a4a; }