/* ==========================================================================
   AI Training — style.css
   Navy + Gold, responsive. Fonts: Poppins (headings), Inter (body).
   ========================================================================== */

/* ==========================================================================
   ACCENT THEME SWITCH
   --------------------------------------------------------------------------
   The whole site's accent colour comes from the four variables below.
   To switch back to GOLD: comment out the ORANGE block, uncomment GOLD.
   Nothing else needs touching - every rgba() on the site derives from
   --gold-rgb, so tints and glows follow automatically.

   A full archived copy also lives in  assets/css/theme-gold.css
   ========================================================================== */
:root{
  /* ---- ACTIVE: ORANGE ---------------------------------------------- */
  --gold:       #fd7e2e;          /* primary accent          */
  --gold-2:     #ffa76b;          /* lighter, for text on dark backgrounds */
  --gold-deep:  #e4691a;          /* darker, hover/active    */
  --gold-rgb:   253,126,46;       /* same as --gold, for rgba() tints */

  /* ---- ARCHIVED: GOLD (uncomment these four, comment out the four above)
  --gold:       #c19a4e;
  --gold-2:     #d8b874;
  --gold-deep:  #a9863f;
  --gold-rgb:   193,154,78;
  ------------------------------------------------------------------- */

  --navy:      #131f38;
  --navy-2:    #1f3157;
  --navy-soft: #24365c;
  --ink:       #10182b;
  --body:      #3c4557;
  --muted:     #737b8c;
  --line:      #ececf1;
  --cream:     #f7f5ef;
  --bg:        #ffffff;
  --bg-soft:   #f7f6f2;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 18px 44px rgba(16,24,43,.10);
  --shadow-sm: 0 6px 20px rgba(16,24,43,.06);
  --wrap:      1280px;
  /* CTA strip gradient (sitewide, set in footer.php). Swap this line to restyle. */
  --cta-gradient: linear-gradient(115deg, #0a1020 0%, #152a55 45%, #22346f 75%, #182449 100%);
  /* Hero scrim — dark behind the left-aligned text, lighter on the right so the
     background image stays crisp instead of washed out. */
  --hero-scrim: linear-gradient(100deg,
      rgba(13,22,42,.88) 0%,
      rgba(15,25,46,.78) 45%,
      rgba(17,28,51,.56) 75%,
      rgba(19,31,56,.40) 100%);
}

/* ---------- Reset ---------- */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;font-family:'Inter',system-ui,Arial,sans-serif;
  color:var(--body);background:var(--bg);line-height:1.7;font-size:16.5px;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{font-family:'Poppins',system-ui,sans-serif;color:var(--ink);line-height:1.14;margin:0 0 .5em;letter-spacing:-.02em}
h1{font-size:3rem;font-weight:700;letter-spacing:-.035em;line-height:1.08}
h2{font-size:2.15rem;font-weight:700;letter-spacing:-.03em}
h3{font-size:1.28rem;font-weight:600;letter-spacing:-.015em}
p{margin:0 0 1rem}
a{color:var(--navy-2);text-decoration:none;transition:color .15s}
a:hover{color:var(--gold)}
img{max-width:100%;display:block}
ul{margin:0;padding:0}
.container{width:100%;max-width:var(--wrap);margin:0 auto;padding:0 22px}
.skip-link{position:absolute;left:-999px}
.skip-link:focus{left:12px;top:12px;background:#fff;padding:8px 14px;z-index:1000;border-radius:8px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;padding:13px 26px;border-radius:9px;font-weight:600;
  font-family:'Inter',sans-serif;font-size:.96rem;letter-spacing:.005em;cursor:pointer;border:1.5px solid transparent;
  transition:transform .16s ease, box-shadow .18s ease, background .16s ease;text-align:center;
}
.btn:hover{transform:translateY(-1px)}
.btn-gold{background:var(--gold);color:#fff;box-shadow:0 8px 22px rgba(var(--gold-rgb),.26)}
.btn-gold:hover{background:var(--gold-deep);color:#fff;box-shadow:0 12px 28px rgba(var(--gold-rgb),.32)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-2);color:#fff}
.btn-outline{background:transparent;border-color:var(--navy);color:var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff}
.btn-outline-light{background:transparent;border-color:rgba(255,255,255,.6);color:#fff}
.btn-outline-light:hover{background:#fff;color:var(--navy)}
/* WhatsApp buttons fill with the WhatsApp brand green on hover */
.btn-wa:hover{background:#25d366!important;border-color:#25d366!important;color:#fff!important}
.btn-wa:active{background:#1da851!important;border-color:#1da851!important}
.btn-lg{padding:16px 34px;font-size:1.05rem}

/* ---------- Header / Nav ---------- */
.site-header{position:fixed;top:0;left:0;right:0;z-index:100;background:transparent;
  border-bottom:1px solid transparent;transition:background .25s ease,box-shadow .25s ease,border-color .25s ease}
.site-header.scrolled{background:rgba(255,255,255,.97);backdrop-filter:saturate(180%) blur(8px);
  border-bottom-color:var(--line);box-shadow:0 4px 20px rgba(16,24,43,.06)}
/* Transparent state (default, over the dark hero) — light nav */
/* Transparent header (over the dark hero): the whole wordmark is white,
   including the dash and .my - the orange AI mark carries the accent. */
.site-header .nav-list>li>a{color:#fff}
.site-header .nav-list>li>a:hover{color:#fff;background:rgba(255,255,255,.14)}
.site-header .caret{color:rgba(255,255,255,.75)}
.site-header .nav-toggle span{background:#fff}
/* Scrolled state — dark nav on white */
/* Scrolled header (white background): the whole wordmark turns orange. */
.site-header.scrolled .nav-list>li>a{color:var(--ink)}
.site-header.scrolled .nav-list>li>a:hover{color:var(--navy-2);background:var(--bg-soft)}
.site-header.scrolled .caret{color:var(--muted)}
.site-header.scrolled .nav-toggle span{background:var(--navy)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:76px}
.logo{display:flex;align-items:center;font-family:'Poppins',sans-serif;font-weight:700}
/* All-text wordmark: AI + .my always gold; the "-Training" middle follows the
   header state (white over the hero, gold once scrolled). */
/* Wordmark: single violet -> pink -> orange gradient across all the text.
   color is the fallback for browsers without background-clip:text support. */
.logo-text{
  font-size:34px;line-height:1;text-transform:uppercase;letter-spacing:-.015em;font-weight:700;
  color:var(--gold);
  background:linear-gradient(100deg,#a855f7 0%,#ec4899 48%,#fd7e2e 100%);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.site-nav .nav-list{display:flex;align-items:center;gap:4px;list-style:none}
.nav-list>li{position:relative}
.nav-list>li>a{display:block;padding:10px 14px;color:var(--ink);font-weight:500;font-size:.97rem;border-radius:8px}
.nav-list>li>a:hover{color:var(--navy-2);background:var(--bg-soft)}
.caret{font-size:.7rem;color:var(--muted)}
.nav-cta{background:var(--gold);color:#fff!important;font-weight:600}
.nav-cta:hover{background:var(--gold-deep)!important;color:#fff!important}
.dropdown{position:absolute;top:calc(100% + 6px);left:0;min-width:292px;background:#fff;
  border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);padding:8px;
  list-style:none;opacity:0;visibility:hidden;transform:translateY(6px);transition:.16s;z-index:30}
.has-children:hover > .dropdown,.has-children:focus-within > .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown li a{display:block;padding:10px 12px;border-radius:8px;color:var(--body);font-size:.94rem}
.dropdown li a:hover{background:var(--bg-soft);color:var(--navy-2)}
/* Nested sub-group (Resources > AI SEO > …) — flyout to the right */
.dropdown .has-children-sub{position:relative}
.dropdown .has-children-sub > a{display:flex;align-items:center;justify-content:space-between;gap:12px}
.caret-sub{color:var(--muted);font-size:1.05rem;line-height:1}
.subdropdown{top:-9px;left:calc(100% + 8px);right:auto}
.has-children-sub.sub-left > .subdropdown{left:auto;right:calc(100% + 8px)}
.dropdown .has-children-sub:hover > a{background:var(--bg-soft);color:var(--navy-2)}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{width:26px;height:2px;background:var(--navy);border-radius:2px;transition:.2s}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{
  background:var(--hero-scrim),
    var(--hero-img, url('../img/hero-bg.jpg')) center/cover no-repeat, #131f38;
  color:#fff;padding:162px 0 104px;position:relative;overflow:hidden}
.hero::after{content:"";position:absolute;right:-140px;top:-140px;width:460px;height:460px;
  background:radial-gradient(circle,rgba(var(--gold-rgb),.10),transparent 70%);border-radius:50%}
.hero .container{position:relative;z-index:2;max-width:1040px}
.hero h1{color:#fff;font-size:3.5rem;margin-bottom:.35em}
.hero .lede{font-size:1.25rem;color:#d7deee;max-width:720px}
.eyebrow{display:inline-block;background:rgba(var(--gold-rgb),.14);color:var(--gold-2);
  font-weight:600;font-family:'Inter',sans-serif;font-size:.74rem;letter-spacing:1.6px;
  text-transform:uppercase;padding:7px 15px;border-radius:30px;margin-bottom:22px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.hero-badges{display:flex;gap:26px;flex-wrap:wrap;margin-top:38px;color:#c7d0e6;font-size:.95rem}
.hero-badges span{display:flex;align-items:center;gap:8px}
.hero-badges b{color:var(--gold-2)}

/* ---------- Hero slideshow ---------- */
.hero-slider{padding:0;overflow:hidden;min-height:640px;display:flex;align-items:center;background:#101a30}
.hero-track{position:relative;width:100%;min-height:inherit}
.hero-slide{position:absolute;inset:0;display:flex;align-items:center;opacity:0;visibility:hidden;
  padding-top:90px; /* clears the fixed header so slide text isn't tight under the menu */
  transform:translateY(14px);transition:opacity .55s ease,transform .55s ease;pointer-events:none;
  background:var(--hero-scrim), var(--slide-img, none) center/cover no-repeat}
.hero-slide.is-active{opacity:1;visibility:visible;transform:none;pointer-events:auto}
.hero-slide .container{width:100%}
.hero-slide h1,.hero-slide h2{color:#fff;font-family:'Poppins',sans-serif;font-weight:700;
  font-size:3.4rem;line-height:1.08;letter-spacing:-.035em;margin:0 0 .3em}
.hero-slide h2{font-size:2.85rem;letter-spacing:-.03em}
.hero-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:6;width:46px;height:46px;
  border-radius:50%;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);
  color:#fff;font-size:1.7rem;line-height:1;cursor:pointer;display:grid;place-items:center;transition:.18s}
.hero-nav:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.hero-nav.prev{left:20px}
.hero-nav.next{right:20px}
.hero-dots{position:absolute;left:0;right:0;bottom:26px;z-index:6;display:flex;gap:11px;justify-content:center}
.hero-dots .dot{width:11px;height:11px;padding:0;border:0;border-radius:50%;cursor:pointer;
  background:rgba(255,255,255,.34);transition:.2s}
.hero-dots .dot:hover{background:rgba(255,255,255,.6)}
.hero-dots .dot.is-active{background:var(--gold);transform:scale(1.18)}
@media(max-width:900px){
  .hero-slide h1,.hero-slide h2{font-size:2.1rem}
}
@media(max-width:760px){
  /* text spans full width on mobile — use an even scrim for readability */
  :root{--hero-scrim: linear-gradient(180deg, rgba(13,22,42,.90) 0%, rgba(17,28,51,.86) 100%);}
  .hero-slider{min-height:540px}
  .hero-nav{display:none}
}

/* ---------- Sections ---------- */
section{padding:92px 0}
.section-head{max-width:840px;margin:0 auto 52px;text-align:center}
.section-head .eyebrow{color:var(--gold);background:rgba(var(--gold-rgb),.12)}
.section-head p{color:var(--muted);font-size:1.1rem}
/* Closing line under a card grid */
/* ---------- Upcoming on-site dates band ---------- */
/* Warm sand tone + top divider so it separates from the cream section above,
   while white slot cards still stand out against it. */
.slots-band{background:#f0e9dc;border-top:1px solid #e5dcc9;padding:58px 0}
.slots-head{text-align:center;max-width:760px;margin:0 auto 30px}
.slots-head h2{margin:10px 0 10px}
.slots-head p{color:var(--muted);font-size:1.05rem;line-height:1.6}
.slots-scarcity{display:inline-block;margin-left:6px;color:var(--gold-deep)}
.slots{max-width:820px;margin:0 auto;display:grid;gap:12px}
.slot-row{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  background:#fff;border:1px solid var(--line);border-radius:14px;padding:16px 20px;
  transition:box-shadow .18s ease,border-color .18s ease}
.slot-row:hover{box-shadow:var(--shadow-sm);border-color:#e0d8c4}
.slot-row.is-soon{border-color:var(--gold);box-shadow:0 6px 20px rgba(var(--gold-rgb),.14)}
.slot-date{display:flex;align-items:center;gap:16px;min-width:0}
.slot-cal{flex:none;width:56px;height:56px;border-radius:12px;background:var(--navy);color:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;line-height:1}
.slot-cal i{font-style:normal;font-size:.68rem;text-transform:uppercase;letter-spacing:.06em;color:var(--gold-2)}
.slot-cal b{font-size:1.5rem;font-weight:700;margin-top:2px}
.slot-when{font-weight:600;color:var(--ink);font-size:1.05rem;display:flex;flex-direction:column}
.slot-when small{font-weight:400;color:var(--muted);font-size:.85rem;margin-top:3px}
.slot-meta{display:flex;align-items:center;gap:14px}
.slot-status{font-size:.8rem;font-weight:700;padding:5px 12px;border-radius:20px;white-space:nowrap}
.slot-status.urgent{background:rgba(var(--gold-rgb),.16);color:var(--gold-deep)}
.slot-status.open{background:#e9f7ef;color:#1c6b3f}
.slot-status.full{background:#eef0f3;color:#8b93a3}
.slot-cta{padding:10px 20px;font-size:.95rem}
/* Fully-booked row: greyed and non-clickable */
.slot-row.is-full{opacity:.72}
.slot-cta.is-disabled{background:#cfd3da;color:#fff;cursor:not-allowed;box-shadow:none;pointer-events:none}
.slots-foot{text-align:center;margin:10px 0 0;color:var(--muted);font-size:.96rem}
.slots-foot a{color:var(--gold-deep);font-weight:600}
.slots-foot a:hover{text-decoration:underline}
@media(max-width:560px){
  .slot-row{align-items:flex-start}
  .slot-meta{width:100%;justify-content:space-between;margin-top:4px}
  .slot-cta{flex:1;text-align:center}
}

.section-footnote{max-width:820px;margin:34px auto 0;text-align:center;color:var(--muted);font-size:1.02rem;line-height:1.65}
.section-footnote a{color:var(--gold-deep);font-weight:600;white-space:nowrap}
.section-footnote a:hover{text-decoration:underline}
.section-head p+p{margin-top:14px}
.bg-soft{background:var(--bg-soft)}
.bg-navy{background:var(--navy);color:#fff}
.bg-navy h2,.bg-navy h3{color:#fff}
.bg-cream{background:var(--cream)}
.lead{font-size:1.15rem;color:var(--body)}
.narrow{max-width:960px;margin-left:auto;margin-right:auto}

/* ---------- Cards / grids ---------- */
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:34px 32px;box-shadow:var(--shadow-sm);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#e0d8c4}
.card .ico{width:52px;height:52px;border-radius:12px;background:var(--cream);color:var(--navy);
  display:grid;place-items:center;font-size:1.5rem;margin-bottom:16px;font-weight:700}
.card h3{margin-bottom:8px}
.card p{color:var(--muted);margin-bottom:0;font-size:.98rem}
.card .card-link{display:inline-block;margin-top:14px;font-weight:600;color:var(--navy-2);font-size:.95rem}
.card .card-link:hover{color:var(--gold)}
a.card{text-decoration:none;color:inherit;display:block}
a.card:hover .card-link{color:var(--gold)}
.ind-card .card-link{display:inline-block;margin-top:12px;font-weight:600;color:var(--navy-2);font-size:.95rem}
.tag{display:inline-block;background:var(--cream);color:var(--navy-2);font-weight:600;
  font-size:.78rem;padding:4px 12px;border-radius:30px;margin-bottom:14px;font-family:'Poppins',sans-serif}

/* ---------- Feature list ---------- */
.check-list{list-style:none}
.check-list li{position:relative;padding:8px 0 8px 34px;color:var(--body)}
.check-list li::before{content:"✓";position:absolute;left:0;top:8px;width:22px;height:22px;
  background:var(--gold);color:#fff;border-radius:50%;display:grid;place-items:center;
  font-size:.8rem;font-weight:700}
.bg-navy .check-list li{color:#d7deee}
/* Pricing cards sit on a light section but have dark navy bodies - force readable text */
.price-card .check-list li{color:#eef1f8}
/* Panel around the homepage "what's included" list so it fills its column */
.why-panel{background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-lg);padding:28px 32px 30px}
.why-panel-title{color:#fff;font-size:1.05rem;margin:0 0 10px;padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.10)}
.why-panel .check-list li{padding:9px 0 9px 34px}
.why-panel .check-list li::before{top:9px}
@media(max-width:640px){.why-panel{padding:22px 20px 24px}}

/* ---------- Curriculum / modules ---------- */
.module{background:#fff;border:1px solid #e4e4ec;border-radius:14px;padding:24px 26px;margin-bottom:16px;
  box-shadow:0 8px 24px rgba(16,24,43,.09);transition:transform .18s ease,box-shadow .18s ease}
.module:hover{transform:translateY(-2px);box-shadow:0 16px 38px rgba(16,24,43,.13)}
.module .mod-no{font-family:'Poppins',sans-serif;font-weight:700;color:var(--gold);font-size:.85rem;letter-spacing:1px}
.module h3{margin:6px 0 8px}
.module p{margin:0;color:var(--muted);font-size:.97rem}

/* ---------- Pricing ---------- */
.price-card{max-width:520px;margin:0 auto;background:#fff;border:2px solid var(--gold);
  border-radius:var(--radius-lg);padding:44px 40px;text-align:center;box-shadow:var(--shadow)}
.price-card .amount{font-family:'Poppins',sans-serif;font-size:3.4rem;font-weight:700;color:var(--navy);line-height:1}
.price-card .amount small{font-size:1.1rem;color:var(--muted);font-weight:500}
.price-card .per{color:var(--muted);margin-bottom:22px}

/* ---------- Media / images ---------- */
.figure{max-width:1000px;margin:0 auto}
.figure img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow);display:block}
.figure figcaption{text-align:center;color:var(--muted);font-size:.86rem;margin-top:12px}
.media-split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.media-split img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow);display:block;aspect-ratio:16/11;object-fit:cover}
.card-figure{margin:-34px -32px 20px;overflow:hidden;aspect-ratio:16/9;border-radius:var(--radius-lg) var(--radius-lg) 0 0}
.card-figure img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease}
/* Clickable image + title: subtle zoom signals the card is a link */
a.card-figure{display:block}
a.card-figure:hover img{transform:scale(1.05)}
.card h3 a{color:inherit;text-decoration:none;transition:color .18s ease}
.card h3 a:hover{color:var(--gold)}
.course-feature-media{grid-column:1 / -1;overflow:hidden;border-radius:var(--radius);aspect-ratio:24/7;margin-bottom:8px}
.course-feature-media img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:820px){
  .media-split{grid-template-columns:1fr;gap:26px}
  .course-feature-media{aspect-ratio:16/8}
}

/* ---------- Course feature (Courses hub) ---------- */
.course-feature{display:grid;grid-template-columns:1.7fr 1fr;gap:38px;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius-lg);padding:42px;box-shadow:var(--shadow-sm);align-items:start}
.course-feature-body h3{font-size:1.75rem;margin:12px 0 14px}
.course-feature-aside{background:var(--bg-soft);border:1px solid var(--line);border-radius:14px;padding:28px}
.price-tag{text-align:center;padding-bottom:22px;border-bottom:1px solid var(--line);margin-bottom:22px}
.price-tag .amount{font-family:'Poppins',sans-serif;font-size:2.5rem;font-weight:700;color:var(--navy);line-height:1;letter-spacing:-.02em}
.price-tag .amount small{font-size:.9rem;color:var(--muted);font-weight:500;display:block;margin-top:6px;letter-spacing:0}
.price-tag .per{color:var(--muted);font-size:.9rem;margin:14px 0 0;line-height:1.5}
.mini-facts{display:grid;gap:0}
.mini-facts>div{display:flex;justify-content:space-between;gap:12px;font-size:.92rem;
  border-bottom:1px dashed var(--line);padding:11px 0}
.mini-facts>div:last-child{border-bottom:0}
.mini-facts b{color:var(--ink);font-family:'Poppins',sans-serif;font-weight:600}
.mini-facts span{color:var(--muted);text-align:right}
@media(max-width:820px){.course-feature{grid-template-columns:1fr;padding:28px}}

/* ---------- Steps ---------- */
.steps{counter-reset:step;display:grid;gap:22px}
.step{position:relative;padding-left:64px}
.step::before{counter-increment:step;content:counter(step);position:absolute;left:0;top:0;
  width:44px;height:44px;background:var(--navy);color:var(--gold);border-radius:50%;
  display:grid;place-items:center;font-family:'Poppins',sans-serif;font-weight:700}
.step h3{margin-bottom:4px}
/* 4-across variant: cards with a large editorial numeral instead of a filled circle */
.steps-4{grid-template-columns:repeat(4,1fr);gap:24px;align-items:stretch}
.steps-4 .step{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);padding:84px 28px 30px}
.steps-4 .step::before{
  content:counter(step,decimal-leading-zero);
  left:28px;top:26px;width:auto;height:auto;background:none;border-radius:0;
  display:block;font-size:2.15rem;line-height:1;letter-spacing:-.02em;color:var(--gold)}
/* short gold rule under the numeral */
.steps-4 .step::after{content:"";position:absolute;left:28px;top:76px;
  width:28px;height:3px;border-radius:2px;background:var(--gold)}
.steps-4 .step h3{font-size:1.1rem;margin-bottom:7px}
.steps-4 .step p{color:var(--muted);font-size:.95rem;line-height:1.6;margin-bottom:0}
@media(max-width:900px){.steps-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){
  .steps-4{grid-template-columns:1fr;gap:18px}
  .steps-4 .step{padding:26px 22px 26px 78px}
  .steps-4 .step::before{left:22px;top:24px;font-size:1.9rem}
  .steps-4 .step::after{left:22px;top:62px;width:22px}
}

/* ---------- FAQ ---------- */
.faq{max-width:820px;margin:0 auto}
.faq details{border:1px solid var(--line);border-radius:12px;padding:4px 22px;margin-bottom:12px;background:#fff}
.faq summary{cursor:pointer;font-family:'Poppins',sans-serif;font-weight:600;color:var(--ink);
  padding:16px 0;list-style:none;position:relative;padding-right:30px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";position:absolute;right:0;top:14px;font-size:1.4rem;color:var(--gold)}
.faq details[open] summary::after{content:"–"}
.faq details p{color:var(--muted);padding-bottom:16px;margin:0}

/* ---------- Breadcrumb ---------- */
.crumb{padding:16px 0 0;font-size:.86rem;color:var(--muted)}
.crumb a{color:var(--muted)}
.crumb a:hover{color:var(--gold)}

/* ---------- CTA strip ---------- */
.cta-strip{
  position:relative;overflow:hidden;color:#fff;padding:66px 0;
  background:
    radial-gradient(circle at 8% 88%, rgba(var(--gold-rgb),.30), transparent 42%),
    radial-gradient(circle at 78% 12%, rgba(120,150,255,.20), transparent 45%),
    var(--cta-gradient);
}
/* faint decorative rings - gold ring lower-left echoes the logo mark */
.cta-strip::before{content:"";position:absolute;left:-110px;bottom:-170px;width:340px;height:340px;
  border:1px solid rgba(var(--gold-rgb),.30);border-radius:50%;pointer-events:none}
.cta-strip::after{content:"";position:absolute;right:-120px;top:-190px;width:400px;height:400px;
  border:1px solid rgba(255,255,255,.16);border-radius:50%;pointer-events:none}
.cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap}
.cta-strip h2{color:#fff;margin-bottom:6px}
.cta-strip p{color:rgba(255,255,255,.88);margin:0}
.cta-actions{display:flex;gap:14px;flex-wrap:wrap}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy);color:#c7d0e6;padding-top:56px}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:34px;padding-bottom:40px}
.footer-col h3{color:#fff;font-size:1rem;margin-bottom:14px}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:2px;line-height:1.5}
.footer-col a{color:#b9c3dc;font-size:.95rem}
.footer-col a:hover{color:var(--gold)}
.footer-brand p{color:#9aa6c4;font-size:.92rem;line-height:1.65;margin-top:14px}
.footer-brand p+p{margin-top:12px}
.footer-brand .logo-text{color:#fff}
.footer-brand .logo-text{font-size:30px}
/* Working-hours block in the contact column */
.footer-subhead{margin-top:22px}
.footer-hours li{color:#9aa6c4;font-size:.94rem}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;font-size:.86rem;color:#8894b4}
.footer-bottom p{margin:0}
.footer-bottom a{color:#8894b4}
.footer-bottom a:hover{color:var(--gold)}
.footer-bottom .sep{margin:0 10px;color:rgba(255,255,255,.22)}
/* Placeholder menu items (nothing to link to yet) read as muted, not clickable */
.dropdown a[href="#"]{color:#9aa3b8;cursor:default}
.dropdown a[href="#"]:hover{background:transparent;color:#9aa3b8}
/* Contact details block under the booking form */
.contact-entity{margin-top:34px;padding-top:28px;border-top:1px solid var(--line)}
.contact-entity h3{font-size:1.05rem;margin-bottom:12px}
.contact-entity ul{list-style:none;margin:0 0 16px}
.contact-entity li{padding:5px 0;font-size:.95rem;color:var(--body)}
.contact-entity li strong{display:inline-block;min-width:110px;color:var(--navy)}
.contact-entity .entity-line{margin:0;font-size:.86rem;color:var(--muted)}
/* Legal pages: terms & privacy */
.legal h2{font-size:1.28rem;margin:36px 0 10px}
.legal h2:first-of-type{margin-top:8px}
.legal p{margin-bottom:12px}
.legal ul.check-list{margin:6px 0 16px}
.legal ul.check-list li{padding-top:5px;padding-bottom:5px}
.legal-updated{color:var(--muted);font-size:.9rem;padding-bottom:18px;border-bottom:1px solid var(--line)}

/* ---------- Knowledge-base article pages ---------- */
/* Author byline + last-updated (E-E-A-T signals) */
.byline{display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  padding:16px 20px;background:var(--bg-soft);border:1px solid var(--line);
  border-radius:var(--radius-lg);margin-bottom:30px}
.byline .avatar{width:44px;height:44px;border-radius:50%;background:var(--navy);color:var(--gold);
  display:grid;place-items:center;font-weight:700;font-size:1rem;flex:none}
.byline-text{font-size:.92rem;color:var(--muted);line-height:1.5}
.byline-text b{color:var(--ink);display:block;font-size:.98rem}
.byline .updated{margin-left:auto;font-size:.86rem;color:var(--muted);white-space:nowrap}

/* Direct-answer block - the passage AI engines lift */
.answer-block{background:#fff;border:1px solid var(--line);border-left:4px solid var(--gold);
  border-radius:0 var(--radius-lg) var(--radius-lg) 0;padding:24px 28px;margin:0 0 34px}
.answer-block .answer-label{display:block;font-size:.76rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold-2, var(--gold-deep));margin-bottom:8px}
.answer-block p{margin:0;font-size:1.08rem;line-height:1.65;color:var(--ink)}

/* Data table */
.data-table{width:100%;border-collapse:collapse;margin:22px 0 10px;font-size:.95rem}
.data-table th,.data-table td{text-align:left;padding:13px 16px;border-bottom:1px solid var(--line);vertical-align:top}
.data-table thead th{background:var(--navy);color:#fff;font-weight:600;font-size:.9rem;border-bottom:none}
.data-table thead th:first-child{border-radius:8px 0 0 0}
.data-table thead th:last-child{border-radius:0 8px 0 0}
.data-table tbody tr:nth-child(even){background:var(--bg-soft)}
.data-table td:first-child{font-weight:600;color:var(--ink)}
.table-source{font-size:.84rem;color:var(--muted);margin:0 0 28px}

/* Informational diagram */
.diagram{margin:34px 0;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;background:#faf9f5}
.diagram img{width:100%;display:block}
.diagram figcaption{padding:14px 20px;font-size:.88rem;color:var(--muted);
  background:#fff;border-top:1px solid var(--line)}

/* Sources list */
.sources{margin-top:14px;padding:20px 24px;background:var(--bg-soft);
  border:1px solid var(--line);border-radius:var(--radius-lg)}
.sources h3{font-size:1rem;margin-bottom:10px}
.sources ol{margin:0;padding-left:20px}
.sources li{font-size:.9rem;color:var(--muted);margin-bottom:8px;line-height:1.55}

/* Key-takeaway inline callout */
.takeaway{background:var(--cream);border-radius:var(--radius-lg);padding:20px 24px;margin:26px 0;
  font-size:.98rem;color:var(--ink)}
.takeaway b{color:var(--navy)}

@media(max-width:640px){
  .byline{flex-direction:column;align-items:flex-start}
  .byline .updated{margin-left:0}
  .data-table{font-size:.88rem}
  .data-table th,.data-table td{padding:10px 11px}
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float{position:fixed;right:20px;bottom:20px;width:56px;height:56px;border-radius:50%;
  background:#25d366;color:#fff;display:grid;place-items:center;z-index:200;
  box-shadow:0 8px 24px rgba(37,211,102,.45);transition:transform .15s}
.whatsapp-float:hover{transform:scale(1.08);color:#fff}

/* ---------- Forms ---------- */
/* Form card lifts off the soft page background */
.form-wrap{max-width:680px;margin:0 auto;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius-lg);padding:40px;
  box-shadow:0 18px 44px rgba(16,24,43,.10), 0 3px 10px rgba(16,24,43,.05)}
/* Gold rule across the top so the card reads as the page's focal point */
.form-wrap{position:relative;overflow:hidden}
.form-wrap::before{content:"";position:absolute;left:0;right:0;top:0;height:4px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2))}
.field{margin-bottom:18px}
.field label{display:block;font-weight:600;color:var(--ink);margin-bottom:6px;font-size:.94rem}
.field input,.field select,.field textarea{width:100%;padding:13px 14px;border:1.5px solid #dcd8cc;background:#fdfcfa;
  border-radius:10px;font-family:inherit;font-size:1rem;color:var(--ink);background:#fff;transition:border .15s}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--gold);
  background:#fff;box-shadow:0 0 0 3px rgba(var(--gold-rgb),.16)}
.field textarea{min-height:120px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.hp{position:absolute;left:-9999px}
.form-note{font-size:.85rem;color:var(--muted);margin-top:6px}
.alert{padding:14px 18px;border-radius:10px;margin-bottom:20px;font-size:.95rem}
.alert-success{background:#e9f7ef;color:#1c6b3f;border:1px solid #b7e4c9}
.alert-error{background:#fdecec;color:#a12a2a;border:1px solid #f5c2c2}
/* Inline AJAX feedback under the booking form's submit button */
.form-result{margin-top:14px;font-size:.95rem;text-align:center;border-radius:10px;padding:0}
.form-result:empty{display:none}
.form-result.is-pending{padding:12px 16px;background:#f2f4f8;color:var(--muted);border:1px solid var(--line)}
/* AI tools checkbox grid (Suggest a Course) */
.check-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:11px 22px;margin-top:8px}
.check-item{display:flex;align-items:center;gap:9px;font-size:.95rem;color:var(--body);cursor:pointer}
.check-item input{width:17px;height:17px;accent-color:var(--gold);flex:none;margin:0}
@media(max-width:560px){.check-grid{grid-template-columns:1fr}}
.form-result.is-ok{padding:12px 16px;background:#e9f7ef;color:#1c6b3f;border:1px solid #b7e4c9}
.form-result.is-error{padding:12px 16px;background:#fdecec;color:#a12a2a;border:1px solid #f5c2c2}

/* ---------- Utility ---------- */
.text-center{text-align:center}
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.stat-row{display:flex;gap:44px;flex-wrap:wrap;justify-content:center;margin-top:10px}
.stat{text-align:center}
.stat b{display:block;font-family:'Poppins',sans-serif;font-size:2.2rem;color:var(--navy);line-height:1}
.bg-navy .stat b{color:var(--gold)}
.stat span{font-size:.9rem;color:var(--muted)}
.bg-navy .stat span{color:#c7d0e6}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  h1,.hero h1{font-size:2.1rem}
  h2{font-size:1.6rem}
  .grid-3,.grid-4{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:760px){
  body{font-size:16px}
  .nav-toggle{display:flex}
  /* scale the wordmark down on small screens */
  .logo-text{font-size:30px}
  /* Header turns solid while the menu is open so the hero can't bleed through */
  .site-header.nav-open{background:#fff;border-bottom-color:var(--line);box-shadow:0 2px 12px rgba(16,24,43,.06)}
  .site-header.nav-open .nav-toggle span{background:var(--navy)}
  .site-nav{position:fixed;inset:76px 0 auto 0;background:#fff;border-bottom:1px solid var(--line);
    max-height:0;overflow:hidden;transition:max-height .28s ease}
  .site-nav.open{max-height:calc(100dvh - 76px);overflow:auto;box-shadow:var(--shadow)}
  .site-nav .nav-list{flex-direction:column;align-items:stretch;gap:0;padding:8px 16px 24px}
  /* mobile menu is a white panel — force dark, left-aligned links regardless of header state */
  .site-header .nav-list>li>a,.site-header.scrolled .nav-list>li>a{color:var(--ink)}
  /* keep hovered links dark on the white mobile panel (base rule turns them white) */
  .site-header .nav-list>li>a:hover,.site-header.scrolled .nav-list>li>a:hover{color:var(--navy-2);background:var(--bg-soft)}
  .nav-list>li>a,.dropdown a,.subdropdown a{text-align:left}
  .nav-list>li>a{padding:14px 8px;border-bottom:1px solid var(--line)}
  .site-header .caret{color:var(--muted)}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;
    border:0;padding:0 0 8px 12px;min-width:0}
  .subdropdown{left:auto;right:auto;top:auto;padding-left:22px}
  .dropdown .has-children-sub > a{padding-left:0;font-weight:600;color:var(--ink)}
  .caret-sub{display:none}
  .has-children>a .caret{float:right}
  .grid-3,.grid-4,.grid-2,.field-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-inner{flex-direction:column;text-align:center}
  .hero{padding:124px 0 64px}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .hero-actions .btn,.cta-actions .btn{width:100%}
}
