/* americantefl.com — Master Stylesheet v3.0 (Full Responsive) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:#0B1F4B; --navy-mid:#163370; --navy-light:#1E4499;
  --red:#C42B2B;  --red-dark:#AB2020;
  --gold:#E8A000; --gold-dark:#C98800; --gold-pale:#FFF3CC;
  --white:#FFFFFF; --smoke:#F7F9FC;
  --g100:#F1F3F8; --g200:#E2E8F0; --g300:#CBD5E1; --g400:#94A3B8;
  --g500:#64748B; --g600:#475569; --g700:#334155; --g800:#1E293B; --g900:#0F172A;
  --ink:#0D1730;
  --serif:'Playfair Display',Georgia,serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --max:1200px; --hh:100px;
  --r2:4px; --r4:8px; --r6:12px; --r8:16px; --rF:9999px;
  --s1:0 1px 4px rgba(0,0,0,.08); --s2:0 4px 16px rgba(0,0,0,.08);
  --s3:0 8px 32px rgba(0,0,0,.10); --s4:0 20px 60px rgba(0,0,0,.12);
  --sN:0 8px 28px rgba(11,31,75,.30);
  --t1:.18s ease; --t2:.32s ease;
}

/* ============================================================
   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(--sans); font-size:16px; line-height:1.7; color:var(--ink); background:var(--white); -webkit-font-smoothing:antialiased }
img  { max-width:100%; height:auto; display:block }
a    { color:inherit; text-decoration:none; transition:color var(--t1) }
ul,ol { list-style:none }
button { cursor:pointer; border:none; background:none; font-family:inherit }
input,select,textarea { font-family:inherit; font-size:inherit }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family:var(--serif); font-weight:700; line-height:1.2; color:var(--navy) }
h1 { font-size:clamp(1.75rem,4.5vw,3.25rem) }
h2 { font-size:clamp(1.5rem,3.2vw,2.5rem) }
h3 { font-size:clamp(1.2rem,2.2vw,1.8rem) }
h4 { font-size:1.15rem } h5 { font-size:1.05rem } h6 { font-size:1rem }
p  { margin-bottom:1rem } p:last-child { margin-bottom:0 }
strong { font-weight:600 }
.lead { font-size:clamp(1rem,1.8vw,1.2rem); color:var(--g600); line-height:1.75 }
.text-white{color:var(--white)} .text-navy{color:var(--navy)} .text-red{color:var(--red)}
.text-muted{color:var(--g500)} .text-sm{font-size:.875rem} .text-xs{font-size:.78rem}
.text-center{text-align:center} .text-gold{color:var(--gold-dark)}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width:var(--max); margin:0 auto; padding:0 1.5rem }
.section    { padding:5rem 0 }
.section-sm { padding:3rem 0 }
.section-lg { padding:7rem 0 }
.grid  { display:grid; gap:1.5rem }
.grid-2 { grid-template-columns:repeat(2,1fr) }
.grid-3 { grid-template-columns:repeat(3,1fr) }
.grid-4 { grid-template-columns:repeat(4,1fr) }
.grid-auto { grid-template-columns:repeat(auto-fill,minmax(280px,1fr)) }
.flex { display:flex }
.flex-center  { display:flex; align-items:center; justify-content:center }
.flex-between { display:flex; align-items:center; justify-content:space-between }
.gap-1{gap:.5rem} .gap-2{gap:1rem} .gap-3{gap:1.5rem} .gap-4{gap:2rem}
.mt-1{margin-top:.5rem}  .mt-2{margin-top:1rem}  .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.bg-smoke{background:var(--smoke)} .bg-navy{background:var(--navy)} .bg-white{background:var(--white)}
.rounded{border-radius:var(--r4)} .rounded-lg{border-radius:var(--r6)}
.border{border:1px solid var(--g200)} .shadow{box-shadow:var(--s2)}
.highlight-box{background:var(--smoke);border:1px solid var(--g200);border-radius:var(--r4);padding:1.5rem}
.number-large{font-size:3rem;font-weight:800;font-family:var(--sans);color:var(--navy);line-height:1}
.divider{height:1px;background:var(--g200);margin:2rem 0}
.accred-bar{display:flex;align-items:center;flex-wrap:wrap;gap:1.25rem;padding:1.5rem;background:var(--smoke);border-radius:var(--r4);border:1px solid var(--g200);justify-content:center}
.accred-item{display:flex;align-items:center;gap:.6rem;font-size:.8rem;font-weight:600;color:var(--navy)}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.75rem;border-radius:var(--rF);font-family:var(--sans);font-size:.95rem;font-weight:600;line-height:1;cursor:pointer;transition:all var(--t1);text-decoration:none;border:2px solid transparent;white-space:nowrap }
.btn-primary { background:var(--red);color:var(--white);border-color:var(--red) }
.btn-primary:hover { background:var(--red-dark);border-color:var(--red-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(196,43,43,.35) }
.btn-gold { background:var(--gold);color:var(--white);border-color:var(--gold) }
.btn-gold:hover { background:var(--gold-dark);border-color:var(--gold-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(232,160,0,.35) }
.btn-navy { background:var(--navy);color:var(--white);border-color:var(--navy) }
.btn-navy:hover { background:var(--navy-mid);transform:translateY(-1px);box-shadow:var(--sN) }
.btn-outline { background:transparent;color:var(--navy);border-color:var(--g300) }
.btn-outline:hover { border-color:var(--navy);background:var(--smoke) }
.btn-outline-white { background:transparent;color:var(--white);border-color:rgba(255,255,255,.5) }
.btn-outline-white:hover { background:rgba(255,255,255,.1);border-color:var(--white) }
.btn-sm { padding:.55rem 1.25rem;font-size:.85rem }
.btn-lg { padding:1rem 2.5rem;font-size:1.05rem }
.btn-xl { padding:1.15rem 3rem;font-size:1.1rem }

/* BADGE */
.badge { display:inline-block;padding:.3rem .85rem;border-radius:var(--rF);font-size:.75rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase }
.badge-red   { background:#FDECEA;color:var(--red) }
.badge-gold  { background:var(--gold-pale);color:var(--gold-dark) }
.badge-navy  { background:#E8EEFF;color:var(--navy-mid) }
.badge-green { background:#E6F9F0;color:#166534 }
.badge-white { background:rgba(255,255,255,.2);color:var(--white) }


/* ============================================================
   LOGO
   ============================================================ */
.header-logo {
  height: 90px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,.09);
  border-radius: var(--r6);
  padding: .5rem .9rem;
  margin-bottom: 1.25rem;
}
.footer-logo {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width:480px) {
  .header-logo { height: 70px }
  .footer-logo  { height: 46px }
}
@media (max-width:360px) {
  .header-logo { height: 60px }
}

/* ============================================================
   QUICK ANSWER (AEO — AI featured snippet target)
   ============================================================ */
.quick-answer-section { padding:2.25rem 0; background:var(--smoke); border-bottom:1px solid var(--g200) }
.quick-answer-box {
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--r6) var(--r6) 0;
  padding: 1.75rem 2rem;
  box-shadow: var(--s1);
}
.quick-answer-label {
  font-size: .68rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold-dark);
  margin-bottom:.5rem;
}
.quick-answer-box h2 {
  font-size:1.25rem; margin-bottom:.75rem; color:var(--navy);
}
.quick-answer-box p { font-size:.94rem; color:var(--g700); margin-bottom:1.25rem; line-height:1.75 }
.quick-facts-row {
  display:flex; flex-wrap:wrap; gap:1rem;
  border-top:1px solid var(--g100); padding-top:1rem;
}
.qf-chip {
  display:flex; align-items:center; gap:.4rem;
  background:var(--smoke); border:1px solid var(--g200);
  border-radius:var(--rF); padding:.3rem .85rem;
  font-size:.8rem; color:var(--g700);
}
.qf-chip strong { color:var(--navy); }

/* ============================================================
   MARKET STATS BAND
   ============================================================ */
.market-stats { background:var(--navy); padding:2.5rem 0 }
.market-stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(255,255,255,.1); border-radius:var(--r6); overflow:hidden;
}
.market-stat {
  background:var(--navy); text-align:center; padding:1.75rem 1rem;
  transition:background var(--t1);
}
.market-stat:hover { background:var(--navy-mid) }
.market-stat-num {
  font-family:var(--sans); font-size:2.25rem; font-weight:800;
  color:var(--gold); line-height:1; display:block; margin-bottom:.35rem;
}
.market-stat-label {
  font-size:.76rem; font-weight:500; color:rgba(255,255,255,.65); line-height:1.4;
}
@media(max-width:768px) {
  .quick-answer-box { padding:1.25rem }
  .market-stats-grid { grid-template-columns:repeat(2,1fr) }
  .market-stat { padding:1.25rem .75rem }
  .market-stat-num { font-size:1.75rem }
}
@media(max-width:480px) {
  .market-stats-grid { grid-template-columns:1fr 1fr }
  .quick-answer-box { border-left-width:3px; border-radius:var(--r4) }
}
@media(max-width:360px) {
  .market-stats-grid { grid-template-columns:1fr }
}

/* ============================================================
   GEO-TARGETED REGION STRIP
   ============================================================ */
.region-strip { background:var(--g100); border-bottom:1px solid var(--g200); padding:1rem 0 }
.region-strip-inner {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:1.25rem;
}
.region-pill {
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--white); border:1px solid var(--g200);
  border-radius:var(--rF); padding:.4rem 1rem;
  font-size:.82rem; font-weight:600; color:var(--navy);
  text-decoration:none; transition:all var(--t1);
  white-space:nowrap;
}
.region-pill:hover { border-color:var(--navy); background:var(--smoke); }
@media(max-width:480px) { .region-strip-inner { gap:.75rem } }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header { position:fixed;top:0;left:0;right:0;z-index:1000;height:var(--hh);background:rgba(255,255,255,.96);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid var(--g200);transition:box-shadow var(--t1) }
.site-header.scrolled { box-shadow:0 2px 20px rgba(0,0,0,.08) }
.header-inner { height:var(--hh);display:flex;align-items:center;justify-content:space-between;max-width:var(--max);margin:0 auto;padding:0 1.5rem }
.site-logo { display:flex;align-items:center;gap:.6rem;text-decoration:none;flex-shrink:0 }
.logo-icon { width:36px;height:36px;background:var(--navy);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0 }
.logo-text { display:flex;flex-direction:column;line-height:1.2 }
.logo-main { font-family:var(--serif);font-weight:700;font-size:1.05rem;color:var(--navy) }
.logo-sub  { font-size:.65rem;font-weight:500;color:var(--g500);letter-spacing:.06em;text-transform:uppercase }
.primary-nav { display:flex;align-items:center;gap:.15rem }
.nav-item { position:relative }
.nav-link { display:flex;align-items:center;gap:.25rem;padding:.5rem .75rem;border-radius:var(--r4);font-size:.85rem;font-weight:500;color:var(--g700);cursor:pointer;transition:all var(--t1);white-space:nowrap;min-height:44px }
.nav-link:hover,.nav-link.active { color:var(--navy);background:var(--smoke) }
.nav-link.active { font-weight:600 }
.nav-chevron { width:13px;height:13px;transition:transform var(--t1);flex-shrink:0 }
.nav-item.open .nav-chevron { transform:rotate(180deg) }

/* MEGA MENU — Courses */
.mega-menu { position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);background:var(--white);border:1px solid var(--g200);border-radius:var(--r6);box-shadow:var(--s4);padding:1.5rem;min-width:560px;display:none;z-index:999 }
.mega-menu.open { display:block;animation:fsd .18s ease }
@keyframes fsd { from{opacity:0;transform:translateX(-50%) translateY(-8px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.mega-menu-grid { display:grid;grid-template-columns:1fr 1fr;gap:1.75rem }
.mega-col-title { font-size:.68rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--g400);margin-bottom:.75rem;padding-bottom:.5rem;border-bottom:1px solid var(--g100) }
.mega-item { display:flex;align-items:center;gap:.65rem;padding:.55rem .65rem;border-radius:var(--r4);transition:background var(--t1);cursor:pointer;text-decoration:none }
.mega-item:hover { background:var(--smoke) }
.mega-item-icon { width:30px;height:30px;border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0 }
.mega-item-text { flex:1;min-width:0 }
.mega-item-name { font-size:.84rem;font-weight:600;color:var(--g800);display:block;line-height:1.3 }
.mega-item-meta { font-size:.72rem;color:var(--g500);display:block }
.mega-price { font-size:.82rem;font-weight:700;color:var(--red);flex-shrink:0 }
.mega-footer { margin-top:1rem;padding-top:1rem;border-top:1px solid var(--g100);display:flex;gap:1rem;flex-wrap:wrap }

/* MEGA MENU — Destinations */
.mega-menu-dest { min-width:860px }
.mega-dest-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem }
.mega-dest-item { display:flex;align-items:center;gap:.4rem;padding:.35rem .5rem;border-radius:var(--r2);font-size:.82rem;color:var(--g700);text-decoration:none;transition:all var(--t1);min-height:32px }
.mega-dest-item:hover { color:var(--navy);background:var(--smoke) }

/* HEADER CTA */
.header-cta { display:flex;align-items:center;gap:.6rem;flex-shrink:0 }

/* HAMBURGER */
.nav-toggle { display:none;flex-direction:column;gap:5px;padding:.5rem;cursor:pointer;min-height:44px;min-width:44px;justify-content:center;align-items:center }
.nav-toggle span { display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all var(--t2) }
.nav-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px) }
.nav-toggle.active span:nth-child(2) { opacity:0 }
.nav-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px) }

/* MOBILE MENU */
.mobile-menu { display:none;position:fixed;top:var(--hh);left:0;right:0;bottom:0;background:var(--white);overflow-y:auto;-webkit-overflow-scrolling:touch;z-index:998;padding:.75rem;border-top:1px solid var(--g200) }
.mobile-menu.open { display:block }
.mobile-nav-link { display:flex;align-items:center;justify-content:space-between;padding:.9rem 1rem;font-size:.95rem;font-weight:500;color:var(--g800);border-radius:var(--r4);cursor:pointer;min-height:48px }
.mobile-nav-link:hover { background:var(--smoke) }
a.mobile-nav-link { text-decoration:none }
.mobile-submenu { display:none;padding-left:.75rem;margin-bottom:.5rem }
.mobile-submenu.open { display:block }
.mobile-sub-item { display:flex;align-items:center;gap:.6rem;padding:.65rem .75rem;font-size:.875rem;color:var(--g600);text-decoration:none;border-radius:var(--r2);min-height:44px }
.mobile-sub-item:hover { background:var(--smoke);color:var(--navy) }
.mobile-cta { padding:.75rem .75rem 2rem }
.mobile-cta .btn { width:100%;justify-content:center;margin-bottom:.75rem }
.page-content { padding-top:var(--hh) }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar { background:var(--smoke);border-bottom:1px solid var(--g200);padding:.75rem 0 }
.breadcrumb { display:flex;align-items:center;gap:.5rem;font-size:.82rem;color:var(--g500);flex-wrap:wrap }
.breadcrumb a { color:var(--g500);transition:color var(--t1) }
.breadcrumb a:hover { color:var(--navy) }
.breadcrumb-sep { color:var(--g300);font-size:.7rem }
.breadcrumb li:last-child { color:var(--navy);font-weight:600 }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero { background:var(--navy);position:relative;overflow:hidden;padding:6rem 0 5rem }
.hero::before { content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 80% 50%,rgba(26,58,124,.6) 0%,transparent 60%),radial-gradient(ellipse at 10% 80%,rgba(196,43,43,.15) 0%,transparent 50%) }
.hero-pattern { position:absolute;inset:0;opacity:.04;background-image:repeating-linear-gradient(0deg,transparent,transparent 48px,rgba(255,255,255,.5) 48px,rgba(255,255,255,.5) 50px),repeating-linear-gradient(90deg,transparent,transparent 48px,rgba(255,255,255,.5) 48px,rgba(255,255,255,.5) 50px) }
.hero-content { position:relative;z-index:1 }
.hero-badge { display:inline-flex;align-items:center;gap:.5rem;background:rgba(232,160,0,.15);border:1px solid rgba(232,160,0,.3);border-radius:var(--rF);padding:.4rem 1rem;font-size:.78rem;font-weight:600;color:var(--gold);letter-spacing:.05em;text-transform:uppercase;margin-bottom:1.25rem }
.hero h1 { color:var(--white);margin-bottom:1.25rem }
.hero h1 em { color:var(--gold);font-style:normal }
.hero .lead { color:rgba(255,255,255,.75);margin-bottom:2rem;max-width:600px }
.hero-actions { display:flex;align-items:center;flex-wrap:wrap;gap:1rem }
/* Hero flex rows always wrap on all screens */
.hero-content [style*="display:flex"] { flex-wrap:wrap }
.hero-inner { background:var(--navy);padding:3.5rem 0;position:relative;overflow:hidden }
.hero-inner::before { content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(30,68,153,.5) 0%,transparent 70%) }
.hero-inner .hero-content { position:relative;z-index:1 }
.hero-inner h1 { color:var(--white);font-size:clamp(1.6rem,3.5vw,2.75rem) }
.hero-inner .lead { color:rgba(255,255,255,.7);max-width:700px }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background:var(--white);border-bottom:1px solid var(--g200);padding:1.25rem 0 }
.trust-grid { display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:1.5rem }
.trust-item { display:flex;align-items:center;gap:.75rem }
.trust-icon { width:40px;height:40px;background:var(--navy);border-radius:var(--r4);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0 }
.trust-text strong { display:block;font-size:1.05rem;font-weight:700;color:var(--navy);line-height:1.2 }
.trust-text span { font-size:.76rem;color:var(--g500);font-weight:500 }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom:2.5rem }
.section-header.centered { text-align:center }
.section-label { display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--red);margin-bottom:.6rem }
.section-header h2 { margin-bottom:.75rem }
.section-header p { color:var(--g600);max-width:580px }
.section-header.centered p { margin:0 auto }

/* ============================================================
   COURSE CARDS
   ============================================================ */
.course-card { background:var(--white);border:1px solid var(--g200);border-radius:var(--r6);overflow:hidden;display:flex;flex-direction:column;transition:all var(--t2);position:relative }
.course-card:hover { transform:translateY(-4px);box-shadow:var(--s3);border-color:var(--g300) }
.course-card-accent { height:4px;width:100% }
.course-card-body { padding:1.5rem;flex:1;display:flex;flex-direction:column }
.course-card-top { display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:1rem }
.course-icon { width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.2rem }
.course-badge-top { font-size:.7rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--g500);background:var(--g100);padding:.25rem .6rem;border-radius:var(--rF) }
.course-card h3 { font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:.5rem;line-height:1.3 }
.course-card p { font-size:.88rem;color:var(--g600);line-height:1.6;margin-bottom:1rem;flex:1 }
.course-meta { display:flex;align-items:center;gap:1rem;margin-bottom:1rem;font-size:.82rem;color:var(--g500) }
.course-meta span { display:flex;align-items:center;gap:.3rem }
.course-pricing { display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--g100);padding-top:1rem;margin-top:auto }
.price-main { font-size:1.6rem;font-weight:800;color:var(--navy);font-family:var(--sans);line-height:1 }
.price-main sup { font-size:.8rem;font-weight:600;vertical-align:super }
.price-old { font-size:.85rem;color:var(--g400);text-decoration:line-through;margin-left:.4rem }
.price-save { font-size:.7rem;font-weight:600;color:#16A34A;background:#DCFCE7;padding:.15rem .5rem;border-radius:var(--rF);margin-left:.4rem }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card { background:var(--white);border:1px solid var(--g200);border-radius:var(--r6);overflow:hidden;transition:all var(--t2);text-decoration:none;display:block }
.dest-card:hover { transform:translateY(-4px);box-shadow:var(--s3);border-color:var(--g300) }
.dest-card-header { background:var(--navy);padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between }
.dest-flag { font-size:2rem }
.dest-region { font-size:.68rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.5) }
.dest-card-body { padding:1.25rem 1.5rem }
.dest-card h3 { font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:.75rem }
.dest-stats { display:grid;grid-template-columns:1fr 1fr;gap:.6rem }
.dest-stat-label { display:block;color:var(--g400);font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em }
.dest-stat-val { display:block;color:var(--g700);font-weight:600;font-size:.82rem }
.dest-demand { display:inline-flex;align-items:center;gap:.3rem;font-size:.73rem;font-weight:600;padding:.3rem .7rem;border-radius:var(--rF);margin-top:.75rem }
.demand-high { background:#DCFCE7;color:#166534 }
.demand-med  { background:#FEF9C3;color:#92400E }
.demand-grow { background:#DBEAFE;color:#1E40AF }

/* ============================================================
   QUICK FACTS
   ============================================================ */
.quick-facts { background:var(--smoke);border:1px solid var(--g200);border-radius:var(--r6);padding:1.75rem;margin-bottom:2rem }
.quick-facts-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem }
.quick-fact { display:flex;align-items:flex-start;gap:.75rem }
.qf-icon { font-size:1.3rem;flex-shrink:0;margin-top:.1rem }
.qf-label { font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--g400);display:block;margin-bottom:.15rem }
.qf-val { font-size:.9rem;font-weight:600;color:var(--g800) }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes-grid { display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin-top:1.5rem }
.outcome-item { display:flex;align-items:flex-start;gap:.6rem;font-size:.9rem;color:var(--g700) }
.outcome-check { width:20px;height:20px;background:#DCFCE7;color:#16A34A;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.7rem;flex-shrink:0;margin-top:.1rem }

/* ============================================================
   CURRICULUM ACCORDION
   ============================================================ */
.curriculum { margin-top:1.5rem }
.curriculum-module { border:1px solid var(--g200);border-radius:var(--r4);overflow:hidden;margin-bottom:.5rem }
.module-header { display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;cursor:pointer;background:var(--white);transition:background var(--t1);user-select:none }
.module-header:hover,.module-header.open { background:var(--smoke) }
.module-left { display:flex;align-items:center;gap:.75rem;flex:1;min-width:0 }
.module-num { width:28px;height:28px;background:var(--navy);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:700;flex-shrink:0 }
.module-title { font-size:.88rem;font-weight:600;color:var(--g800) }
.module-right { display:flex;align-items:center;gap:.75rem;flex-shrink:0 }
.module-hrs { font-size:.76rem;color:var(--g400);font-weight:500 }
.module-chevron { width:16px;height:16px;color:var(--g400);transition:transform var(--t1) }
.module-header.open .module-chevron { transform:rotate(180deg) }
.module-body { display:none;padding:1rem 1.25rem;background:var(--smoke);font-size:.88rem;color:var(--g600);line-height:1.65;border-top:1px solid var(--g200) }
.module-body.open { display:block }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background:var(--smoke) }
.testimonial-card { background:var(--white);border-radius:var(--r6);padding:1.75rem;box-shadow:var(--s1);border:1px solid var(--g200) }
.testimonial-quote { font-size:2.5rem;color:var(--gold);font-family:var(--serif);line-height:1;margin-bottom:.5rem }
.testimonial-text { font-size:.92rem;color:var(--g700);line-height:1.7;margin-bottom:1.25rem }
.testimonial-author { display:flex;align-items:center;gap:.9rem }
.testimonial-avatar { width:44px;height:44px;border-radius:50%;background:var(--navy);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:700;flex-shrink:0 }
.testimonial-info strong { display:block;font-size:.88rem;font-weight:600;color:var(--g800) }
.testimonial-info span { font-size:.76rem;color:var(--g500) }
.stars { display:flex;gap:2px;color:var(--gold);font-size:.88rem;margin-bottom:.75rem }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item { border:1px solid var(--g200);border-radius:var(--r4);overflow:hidden;margin-bottom:.5rem }
.faq-question { display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;cursor:pointer;font-weight:600;font-size:.9rem;color:var(--g800);background:var(--white);transition:background var(--t1);user-select:none;gap:.75rem;min-height:48px }
.faq-question:hover,.faq-question.open { background:var(--smoke) }
.faq-icon { width:24px;height:24px;border-radius:50%;background:var(--g100);color:var(--g500);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;transition:all var(--t1) }
.faq-question.open .faq-icon { background:var(--navy);color:var(--white);transform:rotate(45deg) }
.faq-answer { display:none;padding:1rem 1.25rem;font-size:.9rem;color:var(--g600);line-height:1.7;border-top:1px solid var(--g100) }
.faq-answer.open { display:block }

/* ============================================================
   WHY US / FEATURE CARDS
   ============================================================ */
.why-card { text-align:center;padding:2rem 1.5rem;border-radius:var(--r6);border:1px solid var(--g200);background:var(--white);transition:all var(--t2) }
.why-card:hover { border-color:var(--navy-mid);transform:translateY(-4px);box-shadow:var(--s2) }
.why-icon { width:60px;height:60px;background:linear-gradient(135deg,var(--navy),var(--navy-mid));border-radius:var(--r6);display:flex;align-items:center;justify-content:center;font-size:1.6rem;margin:0 auto 1.25rem }
.why-card h4 { font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.5rem }
.why-card p { font-size:.88rem;color:var(--g600);line-height:1.65 }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;position:relative }
.steps::before { content:'';position:absolute;top:28px;left:12%;right:12%;height:2px;background:var(--g200);z-index:0 }
.step { text-align:center;position:relative;z-index:1 }
.step-num { width:56px;height:56px;border-radius:50%;background:var(--white);border:3px solid var(--navy);color:var(--navy);font-size:1.2rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;position:relative;z-index:2;font-family:var(--sans) }
.step h4 { font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:.4rem }
.step p  { font-size:.82rem;color:var(--g500);line-height:1.6 }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table { display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem }
.pricing-card { border:2px solid var(--g200);border-radius:var(--r6);overflow:hidden;transition:all var(--t2);position:relative }
.pricing-card:hover { transform:translateY(-4px);box-shadow:var(--s3) }
.pricing-card.featured { border-color:var(--navy-mid);box-shadow:var(--sN) }
.featured-tag { position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:var(--gold);color:var(--white);font-size:.7rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:.25rem .9rem;border-radius:0 0 var(--r2) var(--r2);white-space:nowrap }
.pricing-header { background:var(--smoke);padding:1.5rem;text-align:center;border-bottom:1px solid var(--g200) }
.pricing-card.featured .pricing-header { background:var(--navy) }
.pricing-level { font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--g400);margin-bottom:.4rem }
.pricing-card.featured .pricing-level { color:rgba(255,255,255,.5) }
.pricing-name { font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:.75rem }
.pricing-card.featured .pricing-name { color:var(--white) }
.pricing-price { font-size:1.9rem;font-weight:800;color:var(--navy);font-family:var(--sans);line-height:1 }
.pricing-card.featured .pricing-price { color:var(--white) }
.pricing-price sup { font-size:.85rem;vertical-align:super;font-weight:600 }
.pricing-old { font-size:.8rem;color:var(--g400);text-decoration:line-through;margin-top:.25rem }
.pricing-card.featured .pricing-old { color:rgba(255,255,255,.4) }
.pricing-body { padding:1.25rem }
.pricing-features { list-style:none;margin-bottom:1.25rem }
.pricing-features li { display:flex;align-items:flex-start;gap:.5rem;font-size:.84rem;color:var(--g600);padding:.3rem 0;border-bottom:1px solid var(--g100) }
.pricing-features li:last-child { border:0 }
.pf-check { color:#16A34A;font-size:.75rem;margin-top:.15rem;flex-shrink:0 }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background:var(--navy);position:relative;overflow:hidden;text-align:center;padding:5rem 0 }
.cta-section::before { content:'';position:absolute;inset:0;background:radial-gradient(circle at 50% 50%,rgba(26,58,124,.6) 0%,transparent 70%) }
.cta-section .container { position:relative;z-index:1 }
.cta-section h2 { color:var(--white);margin-bottom:1rem }
.cta-section p { color:rgba(255,255,255,.7);margin-bottom:2rem;max-width:540px;margin-left:auto;margin-right:auto }
.cta-actions { display:flex;justify-content:center;flex-wrap:wrap;gap:1rem }
.guarantee-strip { background:#ECFDF5;border:1px solid #BBF7D0;border-radius:var(--r4);padding:1rem 1.5rem;display:flex;align-items:center;gap:.75rem;font-size:.875rem;color:#166534;font-weight:500 }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom:1.25rem }
.form-label { display:block;font-size:.875rem;font-weight:600;color:var(--g700);margin-bottom:.4rem }
.form-control { width:100%;padding:.8rem 1rem;border:1.5px solid var(--g300);border-radius:var(--r4);font-size:.95rem;color:var(--g800);background:var(--white);transition:border-color var(--t1),box-shadow var(--t1);outline:none;-webkit-appearance:none }
.form-control:focus { border-color:var(--navy-light);box-shadow:0 0 0 3px rgba(30,68,153,.1) }
textarea.form-control { resize:vertical;min-height:120px }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background:var(--g900);color:rgba(255,255,255,.65);padding:4rem 0 0 }
.footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.1) }
.footer-brand .logo-main { color:var(--white) }
.footer-brand .logo-sub { color:rgba(255,255,255,.4) }
.footer-desc { font-size:.875rem;line-height:1.7;margin:1rem 0 1.5rem;color:rgba(255,255,255,.5) }
.footer-social { display:flex;gap:.6rem }
.social-btn { width:36px;height:36px;background:rgba(255,255,255,.08);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.9rem;transition:background var(--t1);cursor:pointer }
.social-btn:hover { background:rgba(255,255,255,.15) }
.footer-col-title { font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.8);margin-bottom:1.25rem }
.footer-links { display:flex;flex-direction:column;gap:.5rem }
.footer-links a { font-size:.875rem;color:rgba(255,255,255,.5);transition:color var(--t1) }
.footer-links a:hover { color:var(--white) }
.footer-bottom { padding:1.5rem 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.8rem;color:rgba(255,255,255,.35) }
.footer-bottom a { color:rgba(255,255,255,.4) }
.footer-bottom a:hover { color:rgba(255,255,255,.7) }

/* ============================================================
   ACCREDITATION BAR
   ============================================================ */
.accred-bar { display:flex;align-items:center;flex-wrap:wrap;gap:1.25rem;padding:1.5rem;background:var(--smoke);border-radius:var(--r4);border:1px solid var(--g200);justify-content:center }
.accred-item { display:flex;align-items:center;gap:.6rem;font-size:.8rem;font-weight:600;color:var(--navy) }

/* ============================================================
   RESPONSIVE ▸ 1200px  (large tablet / compact desktop)
   ============================================================ */
@media (max-width:1200px) {
  .nav-link { padding:.45rem .65rem; font-size:.82rem }
  .header-cta .btn { padding:.5rem 1rem; font-size:.8rem }
  .mega-menu-dest { min-width:720px }
  .mega-dest-grid { gap:1rem }
  .mega-dest-item { font-size:.78rem }
}

/* ============================================================
   RESPONSIVE ▸ 1024px  (tablet landscape — switch to hamburger)
   ============================================================ */
@media (max-width:1024px) {

  /* --- Nav --- */
  .primary-nav, .header-cta { display:none }
  .nav-toggle { display:flex }

  /* --- CSS-class grids → 2-col --- */
  .grid-3  { grid-template-columns:repeat(2,1fr) }
  .grid-4  { grid-template-columns:repeat(2,1fr) }
  .pricing-table { grid-template-columns:repeat(2,1fr) }
  .steps { grid-template-columns:repeat(2,1fr) }
  .steps::before { display:none }

  /* --- Inline sidebar/2-col grids → stack --- */
  [style*="grid-template-columns:1fr 360px"],
  [style*="grid-template-columns:1fr 320px"],
  [style*="grid-template-columns:1fr 1fr;gap:4rem"],
  [style*="grid-template-columns:1fr 1fr;gap:3rem"],
  [style*="grid-template-columns:1fr 1fr;gap:2rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* --- Remove sticky positioning --- */
  [style*="position:sticky"] { position:static !important; top:auto !important }

  /* --- Footer → 2-col --- */
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem }

  /* --- Section spacing --- */
  .section-lg { padding:5rem 0 }
}

/* ============================================================
   RESPONSIVE ▸ 768px  (tablet portrait / mobile)
   ============================================================ */
@media (max-width:768px) {

  /* --- ALL CSS-class grids → 1-col --- */
  .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr }
  .pricing-table { grid-template-columns:1fr }
  .outcomes-grid { grid-template-columns:1fr }

  /* --- ALL remaining inline 1fr 1fr grids → 1-col --- */
  /* This catches salary/col, about stats, and any other 2-col inline grids */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- Steps --- */
  .steps { grid-template-columns:1fr 1fr }
  .steps::before { display:none }

  /* --- Quick facts stays 2-col until 480px --- */
  .quick-facts-grid { grid-template-columns:1fr 1fr }

  /* --- Hero --- */
  .hero { padding:3.5rem 0 3rem }
  .hero-inner { padding:2.5rem 0 }
  .hero-actions { flex-direction:column }
  .hero-actions .btn { width:100%; justify-content:center }

  /* --- Trust bar → 2-col grid --- */
  .trust-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1rem;
    justify-items:start;
  }
  .trust-item { white-space:normal }

  /* --- Sections --- */
  .section    { padding:3rem 0 }
  .section-sm { padding:2rem 0 }
  .section-lg { padding:3.5rem 0 }
  .section-header { margin-bottom:1.75rem }

  /* --- Buttons --- */
  .btn-xl { padding:1rem 2rem; font-size:1rem }
  .btn-lg { padding:.875rem 1.75rem; font-size:.95rem }

  /* --- CTA section --- */
  .cta-section { padding:3rem 0 }
  .cta-actions { flex-direction:column; align-items:center }
  .cta-actions .btn { width:100%; max-width:340px; justify-content:center }

  /* --- Footer → 1-col --- */
  .footer-grid { grid-template-columns:1fr; gap:2rem }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:.5rem }
  .footer-bottom > div:last-child { display:flex; flex-wrap:wrap; gap:.75rem }

  /* --- Module header text --- */
  .module-title { font-size:.85rem }
  .module-hrs   { display:none }

  /* --- Pricing --- */
  .featured-tag { font-size:.65rem }

  /* --- Accreditation bar --- */
  .accred-item { font-size:.75rem }
}

/* ============================================================
   RESPONSIVE ▸ 480px  (small mobile)
   ============================================================ */
@media (max-width:480px) {

  .container { padding:0 1rem }

  h1 { font-size:1.65rem }
  h2 { font-size:1.35rem }
  h3 { font-size:1.15rem }

  /* --- Trust bar → 1-col --- */
  .trust-grid { grid-template-columns:1fr }
  .trust-item { white-space:normal }

  /* --- Steps → 1-col --- */
  .steps { grid-template-columns:1fr }

  /* --- Quick facts → 1-col --- */
  .quick-facts-grid { grid-template-columns:1fr }
  .outcomes-grid    { grid-template-columns:1fr }

  /* --- Dest stats → 1-col --- */
  .dest-stats { grid-template-columns:1fr }

  /* --- Hero --- */
  .hero { padding:3rem 0 2.5rem }
  .hero-inner { padding:2rem 0 }
  .hero-badge { font-size:.7rem; padding:.35rem .85rem }

  /* --- Buttons --- */
  .btn-xl { padding:.875rem 1.5rem; font-size:.9rem }
  .btn-lg { padding:.8rem 1.5rem;   font-size:.9rem }
  .btn    { font-size:.88rem; padding:.65rem 1.4rem }

  /* --- Pricing --- */
  .pricing-price { font-size:1.7rem }
  .pricing-table { grid-template-columns:1fr }

  /* --- FAQ --- */
  .faq-question { font-size:.85rem; padding:.9rem 1rem }
  .faq-answer   { padding:.875rem 1rem }

  /* --- Testimonial --- */
  .testimonial-card { padding:1.25rem }
  .testimonial-quote { font-size:2rem }

  /* --- Why card --- */
  .why-card { padding:1.5rem 1rem }

  /* --- Number large (alumni stats) --- */
  .number-large { font-size:2.25rem }

  /* --- Course pricing → stack on very narrow --- */
  .course-pricing { flex-wrap:wrap; gap:.75rem }

  /* --- Sections --- */
  .section    { padding:2.5rem 0 }
  .section-sm { padding:1.75rem 0 }
  .section-header { margin-bottom:1.5rem }

  /* --- Guarantee strip --- */
  .guarantee-strip { flex-direction:column; align-items:flex-start; gap:.5rem }
}

/* ============================================================
   RESPONSIVE ▸ 360px  (very small phones — e.g. Galaxy A series)
   ============================================================ */
@media (max-width:360px) {
  .container { padding:0 .75rem }

  h1 { font-size:1.45rem }
  h2 { font-size:1.2rem }

  /* --- Logo: hide subtitle to save space --- */
  .logo-sub { display:none }

  /* --- Hero --- */
  .hero-badge { font-size:.65rem; padding:.3rem .7rem; letter-spacing:.02em }

  /* --- Buttons --- */
  .btn-xl { padding:.8rem 1.25rem; font-size:.85rem }
  .btn-lg { padding:.7rem 1.25rem; font-size:.85rem }

  /* --- Mobile CTA --- */
  .mobile-cta .btn { font-size:.875rem }

  /* --- Testimonial avatar smaller --- */
  .testimonial-avatar { width:38px; height:38px; font-size:.9rem }
}

/* ============================================================
   IMAGES & MEDIA PLACEHOLDERS
   ============================================================ */

/* Generic image wrapper */
.card-img-wrap {
  position:relative; overflow:hidden; background:var(--g100); display:block;
}
.card-img-wrap img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform var(--t2);
}
.course-card:hover .card-img-wrap img,
a.dest-card:hover .card-img-wrap img {
  transform:scale(1.04);
}

/* Course card top image */
.course-card-img { height:165px }

/* Destination card image */
.dest-card-img { height:145px }
.dest-card-img::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom,rgba(11,31,75,.05) 0%,rgba(11,31,75,.7) 100%);
  z-index:1;
}
.dest-card-img-meta {
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:flex-end; justify-content:space-between;
  padding:.75rem 1rem;
}
.dest-card-img-meta .dest-flag {
  font-size:1.85rem; line-height:1;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.dest-card-img-meta .dest-region {
  font-size:.65rem; font-weight:600; letter-spacing:.06em;
  text-transform:uppercase; color:rgba(255,255,255,.9);
  background:rgba(0,0,0,.35); padding:.2rem .55rem;
  border-radius:var(--rF); backdrop-filter:blur(4px);
}

/* Hero section background image */
.hero-bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:.18; z-index:0; pointer-events:none;
}

/* Page content image */
.page-photo-wrap {
  border-radius:var(--r6); overflow:hidden;
  box-shadow:var(--s3); line-height:0; background:var(--g100);
}
.page-photo-wrap img { width:100%; height:auto; display:block }
.page-photo-tall { height:320px; }
.page-photo-tall img { width:100%; height:100%; object-fit:cover }

/* Profile / testimonial photo */
.testimonial-photo {
  width:48px; height:48px; border-radius:50%; object-fit:cover;
  flex-shrink:0; border:2px solid var(--g200);
  box-shadow:var(--s1);
}

/* Blog card image */
.blog-img-wrap {
  height:195px; overflow:hidden;
  border-radius:var(--r6) var(--r6) 0 0; background:var(--g100);
}
.blog-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform var(--t2);
}
.course-card:hover .blog-img-wrap img { transform:scale(1.04) }

/* About / team photo */
.about-photo-wrap {
  border-radius:var(--r8); overflow:hidden;
  box-shadow:var(--s4); line-height:0; background:var(--g100);
}
.about-photo-wrap img { width:100%; height:100%; object-fit:cover; display:block }
.about-photo-tall { height:400px }

/* Country / destination in-page photo */
.country-photo-wrap {
  border-radius:var(--r6); overflow:hidden;
  box-shadow:var(--s2); line-height:0;
  margin-bottom:1.5rem; background:var(--g100);
}
.country-photo-wrap img {
  width:100%; height:220px; object-fit:cover; display:block;
}

/* ── Responsive ── */
@media(max-width:1024px){
  .course-card-img { height:145px }
  .dest-card-img   { height:125px }
  .page-photo-tall { height:260px }
  .about-photo-tall{ height:300px }
}
@media(max-width:768px){
  .course-card-img { height:180px }  /* taller when full width */
  .dest-card-img   { height:150px }
  .blog-img-wrap   { height:170px }
  .country-photo-wrap img { height:180px }
  .page-photo-tall { height:220px }
  .about-photo-tall{ height:240px }
}
@media(max-width:480px){
  .course-card-img { height:160px }
  .dest-card-img   { height:130px }
  .blog-img-wrap   { height:150px }
  .country-photo-wrap img { height:160px }
  .about-photo-tall{ height:200px }
}
