/* ============================================================
   SKM DRIVING SCHOOL — Design System
   Body     : White #FFFFFF
   Header   : White #FFFFFF
   Accent   : Yellow #FEE100
   Display  : Barlow Condensed
   Body     : Plus Jakarta Sans

   FONT WEIGHT SYSTEM:
   Hero title          → --fw-hero:    700  (confident, not heavy)
   Section titles      → --fw-section: 500  (refined, editorial)
   Sub-headings        → --fw-heading: 600  (mid weight)
   Body / UI text      → --fw-body:    400
   Labels / Buttons    → --fw-strong:  700
   Stats / Numbers     → --fw-number:  900  (impact for numerics only)
   Badges / Chips      → --fw-badge:   800
============================================================ */

/* ── :root Tokens ── */
:root {

  /* ── Font Families ── */
  --font-display: 'Barlow Condensed', 'Arial Black', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* ── Font Sizes — Fluid Type Scale ── */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* ── Font Weights — Named Semantic Tokens ── */
  --fw-body: 400;
  --fw-medium: 500;
  --fw-heading: 600;
  --fw-strong: 700;
  --fw-hero: 700;
  --fw-badge: 800;
  --fw-number: 900;

  /* ── Line Heights ── */
  --lh-tight: 1.04;
  --lh-heading: 1.12;
  --lh-base: 1.6;
  --lh-relaxed: 1.75;

  /* ── Letter Spacing ── */
  --ls-tight: -0.02em;
  --ls-normal: 0em;
  --ls-wide: 0.03em;
  --ls-wider: 0.08em;
  --ls-widest: 0.12em;

  /* ── 4px Spacing ── */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Yellow Palette ── */
  --yellow: #FEE100;
  --yellow-hover: #FED800;
  --yellow-active: #FCCF00;
  --yellow-nav: #e6bf00;
  --yellow-nav-hover: #e7bd00;
  --yellow-light: #FFFDE6;
  --yellow-pale: #FFF8B0;
  --yellow-border: rgba(254, 225, 0, 0.35);
  --yellow-glow: rgba(254, 225, 0, 0.30);
  --yellow-shadow: rgba(254, 225, 0, 0.40);

  /* ── Neutrals ── */
  --black: #111111;
  --grey-900: #1C1C1C;
  --grey-800: #2E2E2E;
  --grey-700: #444444;
  --grey-600: #585858;
  --grey-500: #777777;
  --grey-400: #9A9A9A;
  --grey-300: #C2C2C2;
  --grey-200: #E0E0E0;
  --grey-100: #F4F4F4;
  --grey-50: #FAFAFA;
  --white: #FFFFFF;

  /* ── Semantic Roles ── */
  --color-bg: var(--white);
  --color-surface: var(--grey-50);
  --color-surface-2: var(--grey-100);
  --color-text: var(--black);
  --color-text-muted: var(--grey-600);
  --color-text-faint: var(--grey-400);
  --color-text-inverse: var(--white);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-divider: rgba(0, 0, 0, 0.06);

  /* ── Radius ── */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* ── Transitions ── */
  --ease: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: 320ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Layout ── */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1300px;
  --header-h: 90px;
}

/* ============================================================
   BASE RESET
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text);
  background-color: var(--white);
  line-height: var(--lh-base);
  min-height: 100dvh;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: var(--lh-heading);
}

p,
li,
figcaption {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  text-wrap: pretty;
  max-width: 72ch;
}

a,
button,
[role="button"] {
  transition:
    color var(--ease), background var(--ease),
    border-color var(--ease), box-shadow var(--ease),
    transform var(--ease), opacity var(--ease);
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--yellow-glow);
  color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  top: -999px;
  left: var(--space-4);
  background: var(--yellow);
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 9999;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ============================================================
   ANNOUNCEMENT BAR
============================================================ */
.ann-bar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.ann-bar i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: var(--white);
  border-bottom: 1.5px solid var(--grey-200);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-8);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-8);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ── Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--grey-600);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
  letter-spacing: var(--ls-normal);
  text-decoration: none;
  background: transparent;
}

.nav-link:hover {
  color: var(--yellow-nav-hover);
}

.nav-link.active {
  color: var(--yellow-nav);
  font-weight: var(--fw-heading);
}

/* ── Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── Call Us ── */
.btn-call {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  cursor: pointer;
}

.call-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--yellow-glow);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
}

.call-icon-wrap i {
  width: 16px;
  height: 16px;
  color: var(--black);
}

.btn-call:hover .call-icon-wrap {
  background: var(--yellow-hover);
  box-shadow: 0 4px 14px var(--yellow-glow);
  transform: scale(1.06);
}

.call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.call-hint {
  font-size: 10px;
  font-weight: var(--fw-heading);
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.call-num {
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  color: var(--black);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}

.btn-call:hover .call-num {
  color: var(--yellow-nav);
}

/* ── Book Now ── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 2px 10px var(--yellow-glow);
  white-space: nowrap;
  text-decoration: none;
}

.btn-book:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-book:active {
  background: var(--yellow-active);
  transform: translateY(0);
  box-shadow: 0 1px 6px var(--yellow-glow);
}

.btn-book i {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Hamburger ── */
.btn-menu {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
  background: var(--grey-100);
  flex-shrink: 0;
  border: none;
}

.btn-menu i {
  width: 20px;
  height: 20px;
}

.btn-menu:hover {
  background: var(--yellow-light);
  color: var(--yellow-nav);
}

/* ============================================================
   MOBILE NAV DRAWER
============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
}

.mobile-nav.open {
  display: flex;
}

.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mob-panel {
  position: relative;
  z-index: 1;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--white);
  border-right: 2.5px solid var(--yellow);
  padding: var(--space-5) var(--space-5) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.mob-logo {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.mob-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-500);
  background: var(--grey-100);
  flex-shrink: 0;
}

.mob-close i {
  width: 17px;
  height: 17px;
}

.mob-close:hover {
  color: var(--yellow-nav);
  background: var(--yellow-light);
}

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.mob-links a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
  border-radius: var(--radius-md);
  text-decoration: none;
}

.mob-links a:hover {
  color: var(--yellow-nav-hover);
  background: var(--yellow-light);
}

.mob-links a.active {
  color: var(--yellow-nav);
  background: var(--yellow-pale);
  font-weight: var(--fw-heading);
}

.mob-links a i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-400);
}

.mob-links a:hover i,
.mob-links a.active i {
  color: var(--yellow-hover);
}

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.btn-book.mob-book {
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
}

.btn-call-mob {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 1.5px solid var(--yellow-border);
  border-radius: var(--radius-lg);
  color: var(--yellow-nav);
  font-size: var(--text-sm);
  font-weight: var(--fw-heading);
  background: var(--yellow-light);
  text-decoration: none;
}

.btn-call-mob i {
  width: 15px;
  height: 15px;
  color: var(--yellow-hover);
}

.btn-call-mob:hover {
  background: var(--yellow-pale);
  border-color: var(--yellow-hover);
  color: var(--yellow-nav-hover);
}

/* ============================================================
   PAGE UTILITIES
============================================================ */
.section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
  padding-inline: var(--space-6);
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.container--default {
  max-width: var(--content-default);
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--yellow-nav);
  margin-bottom: var(--space-3);
}

/* ── Section Title — 500 weight for all sections ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-title .highlight {
  color: var(--yellow-nav);
}

/* ── Section Desc ── */
.section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: var(--color-text-muted);
  max-width: 60ch;
  line-height: var(--lh-relaxed);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--accent {
  border-top: 3px solid var(--yellow);
}

/* ── Icon Badge ── */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.icon-badge i {
  width: 22px;
  height: 22px;
  color: var(--yellow-nav);
}

/* ── Global Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 2px 10px var(--yellow-glow);
}

.btn-primary:hover {
  background: var(--yellow-hover);
  box-shadow: 0 4px 18px var(--yellow-shadow);
  transform: translateY(-1px);
}

.btn-primary:active {
  background: var(--yellow-active);
  transform: translateY(0);
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--grey-800);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow-nav);
  border: 1.5px solid var(--yellow-border);
}

.btn-outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: var(--grey-300);
  background: var(--grey-50);
}

/* ── Tags ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.tag--yellow {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

.tag--dark {
  background: var(--black);
  color: var(--yellow);
}

.tag--grey {
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--color-border);
}

hr.divider {
  height: 1px;
  background: var(--color-divider);
  border: none;
  margin-block: var(--space-8);
}

/* ============================================================
   HEADER RESPONSIVE - FINAL FIX
============================================================ */

/* ---------- Large tablets / small desktops ---------- */
@media (max-width: 1140px) {
  .header-inner {
    padding-inline: var(--space-5);
    gap: var(--space-5);
  }

  .logo-img {
    height: 72px;
    max-width: 180px;
  }

  .header-nav ul {
    gap: 0;
  }

  .nav-link {
    padding: var(--space-2) clamp(0.4rem, 0.5vw, var(--space-3));
    font-size: clamp(0.78rem, 0.5rem + 0.6vw, 0.9rem);
  }

  .header-actions {
    gap: var(--space-3);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book {
    padding: var(--space-2) var(--space-4);
  }
}

/* ---------- Tablet / mobile ---------- */
@media (max-width: 960px) {
  :root {
    --header-h: 75px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding-inline: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
  }

  .header-nav,
  .btn-call {
    display: none !important;
  }

  .header-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    z-index: 2;
  }

  .logo-img {
    height: 65px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 2;
  }

  .btn-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    background: var(--grey-100);
    color: var(--grey-700);
    border: none;
    z-index: 3;
  }

  .btn-menu i,
  .btn-menu svg {
    width: 18px;
    height: 18px;
  }

  /* Header icon-only booking button */
  .header-actions > .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--yellow-glow);
  }

  .header-actions > .btn-book .book-lbl {
    display: none;
  }

  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* Drawer CTA button */
  .btn-book.mob-book {
    width: 100%;
    min-height: 48px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    margin: 0;
    border-radius: 14px;
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(254, 225, 0, 0.28);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book .book-lbl {
    display: inline;
  }

  .btn-book.mob-book i,
  .btn-book.mob-book svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.95rem;
  }

  .btn-menu {
    left: 0.95rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .header-actions > .btn-book {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 11px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 17px;
    height: 17px;
  }

  .logo-img {
    height: 60px;
    max-width: 126px;
  }

  .mob-panel {
    width: min(300px, 88vw);
  }
.mob-logo {
    height: 70px;
    max-width: 115px;
  }
  .btn-book.mob-book {
    min-height: 46px;
    padding: 0.85rem 1rem;
    border-radius: 13px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    padding-inline: 0.8rem;
  }

  .btn-menu {
    left: 0.8rem;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .header-actions > .btn-book {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 10px;
  }

  .btn-menu i,
  .btn-menu svg,
  .header-actions > .btn-book i,
  .header-actions > .btn-book svg {
    width: 16px;
    height: 16px;
  }

  .logo-img {
    height: 60px;
    max-width: 112px;
  }

  .mob-panel {
    width: min(280px, 90vw);
    padding: var(--space-4) var(--space-4) var(--space-6);
  }

  .mob-logo {
    height: 60px;
    max-width: 115px;
  }

  .btn-book.mob-book {
    min-height: 44px;
    padding: 0.82rem 0.95rem;
    border-radius: 12px;
  }
}



  /* ═══════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════ */
.page-header {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

/* BG image layer */
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 6s ease;
}

.page-header:hover .page-header-bg img {
  transform: scale(1.04);
}

/* dark gradient overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 1;
}

/* Inner content sits above bg and overlay */
.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ── Breadcrumb ── */
.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.page-header-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--ease);
}

.page-header-breadcrumb a:hover {
  color: var(--yellow);
}

.page-header-breadcrumb a i {
  width: 13px;
  height: 13px;
}

.page-header-sep {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.page-header-breadcrumb span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  color: var(--yellow);
  letter-spacing: 0.03em;
}

/* ── Content ── */
.page-header-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
}

/* Label on dark bg */
.page-header-label {
  background: rgba(254, 225, 0, 0.10);
  color: var(--yellow);
  border: 1px solid rgba(254, 225, 0, 0.18);
}

.page-header-label i {
  color: var(--yellow);
}

/* Title */
.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--ls-tight);
  color: var(--white);
  margin: 0;
}

.page-header-title .highlight {
  color: var(--yellow);
}

/* Description */
.page-header-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.68);
  line-height: var(--lh-relaxed);
  max-width: 60ch;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-header {
    min-height: 300px;
  }

  .page-header-inner {
    padding-top: clamp(3.5rem, 7vw, 5rem);
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: 260px;
  }

  .page-header-title {
    font-size: clamp(1.5rem, 1rem + 2.5vw, 2rem);
  }
}

/* ==========================================
   DRIVING SCHOOL — WHO WE ARE
   aligned with SKM root tokens and theme
========================================== */
.driving-who {
  position: relative;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--yellow-light) 100%);
  overflow: hidden;
}

.driving-who__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(var(--space-8), 5vw, var(--space-20));
}

.driving-who__content {
  position: relative;
  z-index: 2;
}

.driving-who__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(254, 225, 0, 0.12);
  border: 1px solid var(--yellow-border);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--yellow-nav);
}

.driving-who__label i,
.driving-who__label svg {
  width: 14px;
  height: 14px;
  color: var(--black);
  flex-shrink: 0;
}

.driving-who__title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2vw, 3.4rem);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--black);
}

.driving-who__highlight {
  position: relative;
  display: inline-block;
  color: var(--yellow-nav);
}


.driving-who__desc {
  margin: 0 0 var(--space-4);
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
}

.driving-who__points {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.driving-who__point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.driving-who__point-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 20px var(--yellow-glow);
}

.driving-who__point-icon i,
.driving-who__point-icon svg {
  width: 18px;
  height: 18px;
  color: var(--black);
}

.driving-who__point-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.driving-who__point-text strong {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  line-height: 1.35;
  color: var(--black);
}

.driving-who__point-text span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: var(--fw-body);
  line-height: 1.6;
  color: var(--grey-500);
}

.driving-who__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.driving-who__stat {
  padding: var(--space-4);
  border-radius: 18px;
  background: var(--black);
  box-shadow: var(--shadow-lg);
}

.driving-who__stat-num {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1rem + 1vw, 2.2rem);
  font-weight: var(--fw-number);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--yellow);
}

.driving-who__stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: var(--fw-heading);
  line-height: 1.5;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.driving-who__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.driving-who__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-normal);
  text-decoration: none;
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    color var(--ease),
    transform var(--ease);
}

.driving-who__btn i,
.driving-who__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.driving-who__btn--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 24px var(--yellow-glow);
}

.driving-who__btn--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--yellow-shadow);
}

.driving-who__btn--ghost {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--color-border);
}

.driving-who__btn--ghost:hover {
  background: var(--grey-50);
  border-color: var(--grey-300);
  transform: translateY(-2px);
}

.driving-who__visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.driving-who__image-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06);
}

.driving-who__image-wrap img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.driving-who__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 150px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  box-shadow:
    0 16px 30px rgba(254, 225, 0, 0.26),
    0 8px 18px rgba(0, 0, 0, 0.10);
}

.driving-who__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--fw-number);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.driving-who__badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--fw-badge);
  line-height: 1.45;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.66);
}

.driving-who__mini-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  width: min(88%, 260px);
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.driving-who__mini-card i,
.driving-who__mini-card svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.driving-who__mini-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: var(--fw-strong);
  line-height: 1.3;
  color: var(--white);
}

.driving-who__mini-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: var(--fw-body);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.driving-who__shape {
  position: absolute;
  border-radius: 28px;
  z-index: 1;
}

.driving-who__shape--yellow {
  top: 30px;
  right: -12px;
  width: 220px;
  height: 220px;
  background: rgba(254, 225, 0, 0.22);
}

.driving-who__shape--dark {
  left: 10px;
  bottom: 26px;
  width: 160px;
  height: 160px;
  background: rgba(17, 17, 17, 0.08);
}

/* responsive */
@media (max-width: 1024px) {
  .driving-who__inner {
    grid-template-columns: 1fr;
  }

  .driving-who__title {
    max-width: 100%;
  }

  .driving-who__visual {
    min-height: auto;
  }

  .driving-who__image-wrap {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .driving-who__content {
    text-align: center;
  }

  .driving-who__label {
    justify-content: center;
  }

  .driving-who__desc {
    margin-inline: auto;
  }

  .driving-who__stats {
    grid-template-columns: 1fr;
  }

  .driving-who__actions {
    justify-content: center;
  }

  .driving-who__point {
    text-align: left;
  }

  .driving-who__visual {
    margin-top: var(--space-2);
  }

  .driving-who__image-wrap img {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .driving-who__inner {
    gap: var(--space-8);
  }

  .driving-who__title {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  .driving-who__point {
    padding: var(--space-4);
    border-radius: 16px;
  }

  .driving-who__actions {
    flex-direction: column;
  }

  .driving-who__btn {
    width: 100%;
  }

  .driving-who__image-wrap {
    border-radius: 22px;
  }

  .driving-who__image-wrap img {
    height: 420px;
  }

  .driving-who__badge {
    top: 14px;
    left: 14px;
    min-width: 128px;
    padding: 0.75rem 0.85rem;
  }

  .driving-who__badge-num {
    font-size: 1.6rem;
  }

  .driving-who__mini-card {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 0.85rem 0.9rem;
  }
}


/* ==========================================
   DRIVING SCHOOL - COURSE OVERVIEW
   based on attached 3-card course layout
========================================== */
.dr-course {
  background: var(--white);
}

.dr-course__header {
  max-width: 700px;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-12));
}

.dr-course__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: stretch;
}

.dr-course-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-6);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  min-height: 100%;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.dr-course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.dr-course-card--featured {
  background: var(--yellow-light);
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 28px rgba(254, 225, 0, 0.16);
}

.dr-course-card--dark {
  background: var(--black);
  border-color: var(--grey-800);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.dr-course-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.dr-course-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--yellow-glow);
}

.dr-course-card__icon i,
.dr-course-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--black);
}

.dr-course-card__icon--dark {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.dr-course-card__icon--dark i,
.dr-course-card__icon--dark svg {
  color: var(--yellow);
}

.dr-course-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  white-space: nowrap;
}

.dr-course-card__badge--yellow {
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--yellow-hover);
}

.dr-course-card__badge--grey {
  background: var(--grey-100);
  color: var(--grey-500);
  border: 1px solid var(--color-border);
}

.dr-course-card__badge--dark {
  background: var(--yellow);
  color: var(--black);
  border: 1px solid var(--yellow-hover);
}

.dr-course-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.dr-course-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.1rem + 0.8vw, 2.2rem);
  font-weight: var(--fw-medium);
  line-height: 1.08;
  color: var(--black);
  letter-spacing: var(--ls-tight);
}

.dr-course-card__title--light {
  color: var(--white);
}

.dr-course-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: var(--lh-relaxed);
  color: var(--grey-600);
  max-width: 100%;
}

.dr-course-card__desc--light {
  color: rgba(255, 255, 255, 0.68);
}

.dr-course-card__block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.dr-course-card__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--grey-500);
}

.dr-course-card__label i,
.dr-course-card__label svg {
  width: 15px;
  height: 15px;
  color: var(--grey-500);
  flex-shrink: 0;
}

.dr-course-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.dr-course-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  line-height: 1.55;
  color: var(--grey-700);
}

.dr-course-card__list li i,
.dr-course-card__list li svg {
  width: 16px;
  height: 16px;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 2px;
}

.dr-course-card__list li strong {
  font-weight: var(--fw-strong);
  color: var(--black);
}

.dr-course-card__list--compact li {
  color: var(--grey-600);
}

.dr-course-pack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.dr-course-pack__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: var(--space-4) var(--space-2);
  border-radius: 16px;
  border: 1.5px solid var(--color-border);
  background: var(--white);
  text-align: center;
}

.dr-course-pack__item strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.1rem + 0.9vw, 2.3rem);
  font-weight: var(--fw-number);
  line-height: 1;
  color: var(--black);
  letter-spacing: var(--ls-tight);
}

.dr-course-pack__item span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-heading);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--grey-500);
}

.dr-course-pack__item small {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: var(--fw-strong);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--grey-400);
}

.dr-course-pack__item--active {
  border-color: var(--yellow);
  background: var(--yellow-light);
  box-shadow: 0 4px 18px var(--yellow-glow);
}

.dr-course-pack__item--active strong,
.dr-course-pack__item--active small {
  color: var(--yellow-nav);
}

.dr-course-support {
  display: grid;
  gap: var(--space-3);
}

.dr-course-support__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.dr-course-support__item i,
.dr-course-support__item svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.dr-course-card__footer-note {
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dr-course-card__footer-note strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  color: var(--white);
}

.dr-course-card__footer-note span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.dr-course-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  margin-top: auto;
  padding: 0 var(--space-5);
  border-radius: 16px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease);
}

.dr-course-card__cta i,
.dr-course-card__cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--ease);
}

.dr-course-card__cta:hover i,
.dr-course-card__cta:hover svg {
  transform: translateX(4px);
}

.dr-course-card__cta--primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 6px 20px var(--yellow-glow);
}

.dr-course-card__cta--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
}

.dr-course-card__cta--outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--color-border);
}

.dr-course-card__cta--outline:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
  color: var(--yellow-nav);
  transform: translateY(-2px);
}

.dr-course-card__cta--dark {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}

.dr-course-card__cta--dark:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .dr-course__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dr-course-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .dr-course__grid {
    grid-template-columns: 1fr;
  }

  .dr-course-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .dr-course-card {
    padding: var(--space-5);
    border-radius: 20px;
  }

  .dr-course-pack {
    grid-template-columns: 1fr;
  }

  .dr-course-card__cta {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════
   FULL-WIDTH BOOKING CTA
   centered content + title max-width removed
═══════════════════════════════════════════ */
.booking-cta-fullbleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #0b0b0b;
}

.booking-cta-fullbleed__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.booking-cta-fullbleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  filter: saturate(0.9) contrast(1.02) brightness(0.72);
}

.booking-cta-fullbleed__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.74) 36%,
      rgba(0, 0, 0, 0.56) 62%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.booking-cta-fullbleed__glow {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(254, 225, 0, 0.22) 0%, rgba(254, 225, 0, 0) 72%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.booking-cta-fullbleed__container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.booking-cta-fullbleed__content {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  text-align: center;
}

.booking-cta-fullbleed__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(254, 225, 0, 0.14);
  border: 1px solid rgba(254, 225, 0, 0.22);
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-strong);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.booking-cta-fullbleed__eyebrow i,
.booking-cta-fullbleed__eyebrow svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.booking-cta-fullbleed__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.4rem + 3vw, 4.8rem);
  font-weight: var(--fw-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--white);
  text-transform: uppercase;
}

.booking-cta-fullbleed__title span {
  color: var(--yellow);
}

.booking-cta-fullbleed__desc {
  margin: 0;
  max-width: 58ch;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  font-weight: var(--fw-body);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.74);
}

.booking-cta-fullbleed__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  width: 100%;
}

.booking-cta-fullbleed__stat {
  min-width: 150px;
  padding: 1rem 1.1rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.booking-cta-fullbleed__stat strong {
  display: block;
  margin-bottom: 0.22rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.1rem + 1vw, 2.2rem);
  font-weight: var(--fw-number);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--yellow);
}

.booking-cta-fullbleed__stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: var(--fw-heading);
  line-height: 1.4;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
}

.booking-cta-fullbleed__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  width: 100%;
}

.booking-cta-fullbleed__actions .btn {
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.96rem;
  font-weight: var(--fw-strong);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.booking-cta-fullbleed__btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 10px 28px rgba(254, 225, 0, 0.22);
}

.booking-cta-fullbleed__btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(254, 225, 0, 0.30);
}

.booking-cta-fullbleed__btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.booking-cta-fullbleed__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  transform: translateY(-2px);
}

.booking-cta-fullbleed__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  width: 100%;
}

.booking-cta-fullbleed__trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: var(--fw-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.booking-cta-fullbleed__trust i,
.booking-cta-fullbleed__trust svg {
  width: 14px;
  height: 14px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 1024px) {
  .booking-cta-fullbleed {
    min-height: 560px;
  }

  .booking-cta-fullbleed__content {
    max-width: 820px;
  }

  .booking-cta-fullbleed__glow {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .booking-cta-fullbleed {
    min-height: auto;
    padding-block: 4rem;
  }

  .booking-cta-fullbleed__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.72) 42%,
        rgba(0, 0, 0, 0.82) 100%
      );
  }

  .booking-cta-fullbleed__container {
    padding-inline: 1.25rem;
  }

  .booking-cta-fullbleed__content {
    max-width: 100%;
    gap: 1rem;
  }

  .booking-cta-fullbleed__title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .booking-cta-fullbleed__desc {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .booking-cta-fullbleed__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .booking-cta-fullbleed__stat {
    min-width: 0;
  }

  .booking-cta-fullbleed__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .booking-cta-fullbleed__actions .btn {
    width: 100%;
  }

  .booking-cta-fullbleed__trust {
    gap: 0.8rem 1rem;
  }

  .booking-cta-fullbleed__glow {
    width: 240px;
    height: 240px;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .booking-cta-fullbleed {
    padding-block: 3.5rem;
  }

  .booking-cta-fullbleed__eyebrow {
    min-height: 34px;
    padding: 0.4rem 0.8rem;
  }

  .booking-cta-fullbleed__stats {
    grid-template-columns: 1fr;
  }

  .booking-cta-fullbleed__stat {
    padding: 0.95rem 1rem;
  }

  .booking-cta-fullbleed__trust {
    flex-direction: column;
    align-items: center;
  }
}


/* ==========================================
   HOW IT WORKS SECTION - FIXED UI VERSION
========================================== */
.hiw {
  background: linear-gradient(180deg, var(--grey-50) 0%, #f7f7f7 100%);
  position: relative;
  overflow: hidden;
  padding-top: clamp(5rem, 8vw, 7rem);
}

.hiw-header {
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}


.hiw-header .section-desc {
  max-width: 56ch;
}

.hiw-process-wrap {
  position: relative;
  padding-top: 2.4rem;
}

.hiw-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hiw-process-line {
  position: absolute;
  top: 1rem;
  left: 7%;
  right: 7%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0.12) 0 10px,
    transparent 10px 18px
  );
  z-index: 0;
}

.hiw-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 5rem;
}

.hiw-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-height: 340px;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.35rem;
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  overflow: hidden;
}

.hiw-card-inner::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(254, 225, 0, 0.18) 100%);
}

.hiw-card:hover .hiw-card-inner {
  transform: translateY(-6px);
  border-color: rgba(254, 225, 0, 0.42);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
}

.hiw-step-no {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--grey-200);
  color: var(--grey-400);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: var(--fw-number);
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.hiw-step-no--final {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 22px rgba(254, 225, 0, 0.25);
}

.hiw-icon {
  width: 52px;
  height: 52px;
  margin-top: 0.9rem;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  color: var(--yellow-nav);
}

.hiw-icon i,
.hiw-icon svg {
  width: 21px;
  height: 21px;
}

.hiw-icon--final {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.hiw-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 30px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--grey-100);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--grey-500);
  font-size: 0.66rem;
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.hiw-badge--final {
  background: rgba(254, 225, 0, 0.12);
  border-color: rgba(254, 225, 0, 0.18);
  color: var(--yellow);
}

.hiw-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 0.75vw, 1.9rem);
  font-weight: var(--fw-heading);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}

.hiw-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--grey-600);
  max-width: 100%;
}

.hiw-meta {
  margin-top: auto;
  padding-top: 0.4rem;
}

.hiw-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.56rem 0.8rem;
  border-radius: 999px;
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.77rem;
  font-weight: var(--fw-strong);
  line-height: 1.2;
  color: var(--grey-600);
}

.hiw-meta-pill i,
.hiw-meta-pill svg {
  width: 15px;
  height: 15px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

.hiw-card--final .hiw-card-inner {
  background: linear-gradient(180deg, #111111 0%, #181818 100%);
  border-color: rgba(254, 225, 0, 0.22);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.hiw-card--final .hiw-title {
  color: var(--white);
}

.hiw-card--final .hiw-desc {
  color: rgba(255, 255, 255, 0.70);
}

.hiw-meta-pill--final {
  background: rgba(254, 225, 0, 0.12);
  border-color: rgba(254, 225, 0, 0.18);
  color: #fff0a0;
}

.hiw-meta-pill--final i,
.hiw-meta-pill--final svg {
  color: var(--yellow);
}

/* CTA strip */
.hiw-cta-strip {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  padding: 1.15rem 1.25rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #0f0f0f 0%, #171717 100%);
  border: 1px solid rgba(254, 225, 0, 0.14);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
}

.hiw-cta-left {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 260px;
  flex: 1;
}

.hiw-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(254, 225, 0, 0.22);
}

.hiw-cta-icon i,
.hiw-cta-icon svg {
  width: 20px;
  height: 20px;
}

.hiw-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hiw-cta-text strong {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1rem + 0.55vw, 1.7rem);
  font-weight: var(--fw-medium);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hiw-cta-text span {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.hiw-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hiw-cta-actions .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.hiw-cta-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

/* responsive */
@media (max-width: 1100px) {
  .hiw-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .hiw-process-line {
    display: none;
  }

  .hiw-card-inner {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .hiw {
    padding-top: 4.25rem;
  }

  .hiw-process {
    grid-template-columns: 1fr;
  }

  .hiw-process-wrap {
    padding-top: 1.4rem;
  }

  .hiw-card {
    padding-top: 5rem;
  }

  .hiw-step-no {
    left: 0.9rem;
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
  }

  .hiw-card-inner {
    min-height: auto;
    padding: 1.15rem 1rem 1.1rem;
    border-radius: 1.1rem;
  }

  .hiw-title {
    font-size: clamp(1.25rem, 1rem + 1vw, 1.65rem);
  }

  .hiw-desc {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .hiw-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .hiw-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hiw-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hiw-header .section-title,
  .hiw-header .section-desc {
    max-width: 100%;
  }

  .hiw-badge,
  .hiw-meta-pill {
    font-size: 0.72rem;
  }
}

/* ============================================================
   TESTIMONIALS — DRIVING SCHOOL ONLY
============================================================ */
.testi {
  background: var(--white);
}

.testi-header {
  max-width: 640px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* summary + arrows row */
.testi-controls--single {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.testi-controls--single .testi-summary {
  flex: 1;
  margin-bottom: 0;
}

.testi-controls--single .testi-arrows {
  flex-shrink: 0;
  align-self: center;
}

/* summary */
.testi-summary {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
  transition: opacity 300ms ease;
}

.testi-summary-score {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.testi-big-score {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
  font-weight: var(--fw-number);
  color: var(--black);
  line-height: 1;
  letter-spacing: var(--ls-tight);
}

.testi-summary-right {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.testi-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.star-icon {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #d8d8d8;
}

.star-icon.full {
  color: #f5c518;
}

.star-icon.half::before {
  content: "★";
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  color: #f5c518;
}

.testi-summary-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: var(--grey-500);
}

.testi-summary-divider {
  width: 1px;
  height: 36px;
  background: var(--color-divider);
  flex-shrink: 0;
}

.testi-summary-tags {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex: 1;
}

.testi-stag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-heading);
  color: var(--grey-600);
}

.testi-stag i {
  width: 13px;
  height: 13px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* arrows */
.testi-arrows {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  transition: background var(--ease), border-color var(--ease),
    box-shadow var(--ease), transform var(--ease);
}

.testi-arrow i {
  width: 17px;
  height: 17px;
  color: var(--grey-600);
  transition: color var(--ease);
}

.testi-arrow:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 4px 14px var(--yellow-glow);
  transform: scale(1.06);
}

.testi-arrow:hover i {
  color: var(--black);
}

.testi-arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
  box-shadow: none;
}

/* swiper outer */
.testi-swiper-outer {
  position: relative;
  padding-bottom: var(--space-10);
  margin-bottom: var(--space-2);
}

.testi-swiper {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* IMPORTANT: equal height slides */
.testi-swiper .swiper-wrapper {
  align-items: stretch;
}

.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
  user-select: none;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* card top */
.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.testi-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.testi-card-stars .star-icon {
  font-size: 14px;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-strong);
  color: var(--grey-400);
  letter-spacing: var(--ls-wide);
  white-space: nowrap;
}

.testi-verified i {
  width: 13px;
  height: 13px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* quote */
.testi-quote {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-700);
  line-height: var(--lh-relaxed);
  flex: 1;
  padding-left: var(--space-4);
  border-left: 3px solid var(--yellow);
  margin: 0;
}

/* author */
.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: var(--ls-wide);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.testi-author-info strong {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-strong);
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-author-info span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--grey-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-course-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: var(--fw-badge);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  background: var(--yellow);
  color: var(--black);
  flex-shrink: 0;
  white-space: nowrap;
}

.testi-course-tag--soft {
  background: var(--yellow-light);
  color: var(--yellow-nav);
  border: 1px solid var(--yellow-border);
}

/* dots */
.testi-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.testi-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--grey-300);
  opacity: 1;
  border: none;
  cursor: pointer;
  transition: background var(--ease), width var(--ease), transform var(--ease);
  display: inline-block;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
  width: 24px;
  border-radius: var(--radius-full);
}

/* footer strip */
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--grey-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}

.testi-footer-text {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--grey-700);
}

.testi-footer-text i {
  width: 20px;
  height: 20px;
  color: var(--yellow-nav);
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 768px) {
  .testi-controls--single {
    flex-direction: column;
    align-items: stretch;
  }

  .testi-controls--single .testi-arrows {
    align-self: flex-start;
  }

  .testi-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .testi-summary-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 640px) {
  .testi-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .testi-footer .btn {
    width: 100%;
    justify-content: center;
  }
}
/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq {
  background: var(--grey-50);
}

.faq-header {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--yellow-border);
  box-shadow: 0 8px 24px var(--yellow-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  text-align: left;
  background: transparent;
  border: none;
  padding: var(--space-5);
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-strong);
  color: var(--black);
  line-height: 1.5;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.faq-icon i {
  width: 17px;
  height: 17px;
  color: var(--grey-600);
  transition: color var(--ease), transform var(--ease);
}

.faq-item.active .faq-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}

.faq-item.active .faq-icon i {
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 var(--space-5) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-body);
  color: var(--grey-600);
  line-height: var(--lh-relaxed);
  max-width: 100%;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 640px) {
  .faq-question {
    padding: var(--space-4);
  }

  .faq-answer p {
    padding: 0 var(--space-4) var(--space-4);
  }

  .faq-question span:first-child {
    font-size: var(--text-sm);
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }
}


/* ============================================================
   FLOATING ACTION BUTTONS
   WhatsApp (bottom-left) + Back to Top (bottom-right)
============================================================ */

/* Shared base */
.fab-whatsapp,
.fab-backtotop {
  position: fixed;
  bottom: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms ease;
}

/* ---- WhatsApp ---- */
.fab-whatsapp {
  left: 1.5rem;
  background: #25D366;
  color: #ffffff;
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.fab-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.30);
}

/* Tooltip */
.fab-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #111111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: var(--fw-strong);
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #111111;
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
}

/* ---- Back to Top ---- */
.fab-backtotop {
  right: 1.5rem;
  background: var(--yellow);
  color: var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.fab-backtotop svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fab-backtotop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-backtotop:hover {
  background: var(--yellow-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px var(--yellow-shadow);
}

.fab-backtotop:active {
  background: var(--yellow-active);
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px var(--yellow-glow);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .fab-whatsapp,
  .fab-backtotop {
    bottom: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .fab-whatsapp {
    left: 1.25rem;
  }

  .fab-backtotop {
    right: 1.25rem;
  }

  .fab-whatsapp svg {
    width: 23px;
    height: 23px;
  }

  .fab-backtotop svg {
    width: 18px;
    height: 18px;
  }

  .fab-tooltip {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   FOOTER WITH FLOATING CTA
════════════════════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  z-index: 1;
}

/* floating CTA */
.footer-cta-wrap {
  position: relative;
  z-index: 5;
  margin-bottom: -95px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  align-items: center;
  background: #fee100;
  border-radius: 22px;
  padding: 1.6rem 2rem;
  box-shadow:
    0 20px 55px rgba(254, 225, 0, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.footer-cta-left {
  min-width: 0;
}

.footer-cta-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.footer-cta-title {
  margin: 0;
  font-size: clamp(1.7rem, 1.1rem + 1.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #111111;
}

.footer-cta-text {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.60);
  max-width: 60ch;
}

.footer-cta-right {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-cta-actions .btn {
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.28s ease;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, background-color, border-color, color;
}

.footer-cta-actions .btn-primary {
  background: #111111;
  color: #ffffff;
  border: 2px solid #111111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.footer-cta-actions .btn-primary:hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.footer-cta-phone {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.footer-cta-phone:hover {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.footer-cta-btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* footer body */
.site-footer-main {
  position: relative;
  background: #050505;
  padding-top: clamp(8rem, 11vw, 10rem);
  padding-bottom: 1.4rem;
  overflow: hidden;
}

.site-footer-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(254, 225, 0, 0.18), transparent 35%);
  pointer-events: none;
}

.site-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.72fr 1fr;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-title {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 1.2rem + 0.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.footer-brand-desc {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.58);
  max-width: 34ch;
}

.footer-col-title {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 0.6rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fee100;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: #fee100;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fee100;
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.28s ease;
}

.footer-socials a:hover {
  background: #fee100;
  border-color: #fee100;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(254, 225, 0, 0.20);
}

.footer-socials a i {
  font-size: 17px;
  line-height: 1;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(254, 225, 0, 0.07);
  border: 1px solid rgba(254, 225, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fee100;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact-item a:hover {
  color: #fee100;
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
  margin-top: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-bottom-text {
  margin: 0;
  padding-inline: 1rem;
  max-width: 900px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom-text a {
  color: #fee100;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-bottom-text a:hover {
  color: #fff06a;
}
/* responsive */
@media (max-width: 1100px) {
  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta-title,
  .footer-cta-text {
    max-width: 100%;
  }

  .footer-cta-right,
  .footer-cta-actions {
    justify-content: center;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-cta-wrap {
    margin-bottom: -68px;
  }

  .footer-cta {
    border-radius: 18px;
    padding: 1.25rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .footer-cta-actions .btn {
    width: 100%;
  }

  .site-footer-main {
    padding-top: 7.6rem;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-cta-wrap {
    margin-bottom: -58px;
  }

  .footer-cta-title {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .footer-cta-text,
  .footer-links a,
  .footer-contact-item a,
  .footer-contact-item span,
  .footer-brand-desc {
    font-size: 0.96rem;
  }

  .footer-col-title {
    font-size: 0.92rem;
  }

  .site-footer-main {
    padding-top: 7rem;
  }
}


@media (max-width: 768px) {
  .site-footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-text {
    font-size: 0.92rem;
  }
}