/* ============================================================
   LOCAL INSTRUCTORS — Cambridgeshire Driving School
   Design system: Education × Automotive
   Brand palette sampled directly from the logo:
     #FA980F  orange      ("Loca")
     #E8411D  flame       ("Instructors")
     #E21814  L-plate red (the L)
   Nunito + Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Brand — straight off the logo */
  --brand-orange:   #FA980F;   /* "Loca" */
  --brand-flame:    #E8411D;   /* "Instructors" */
  --brand-red:      #E21814;   /* the L-plate L */
  --brand-gradient: linear-gradient(100deg, #FA980F 0%, #E8411D 100%);

  /* Primary = flame, darkened just enough to carry white text at AA */
  --primary:        #D93B14;
  --primary-dark:   #B02F0E;
  --primary-light:  #E8411D;

  /* Accent = the orange. Always pairs with dark text, never white. */
  --accent:         #FA980F;
  --accent-dark:    #B87105;
  --accent-light:   #FFB33F;

  --dark:           #141519;   /* warm near-black */
  --dark-2:         #1D1F25;
  --dark-3:         #292C34;

  --white:          #FFFFFF;
  --gray:           #9A9891;
  --gray-light:     #EDEAE5;
  --bg-light:       #FAF7F3;   /* warm off-white */
  --bg-section:     #F4F0EA;

  --text-dark:      #17171A;
  --text-medium:    #45444A;
  --text-light:     #6D6B72;
  --border:         #E7E2DA;

  --shadow-sm:      0 2px 10px rgba(18, 20, 25, 0.06);
  --shadow-md:      0 8px 30px rgba(18, 20, 25, 0.10);
  --shadow-lg:      0 18px 55px rgba(18, 20, 25, 0.16);
  --shadow-amber:   0 10px 30px rgba(232, 65, 29, 0.35);

  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      26px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display:   'Nunito', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --container:      1200px;
}

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-medium);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY SCALE ──────────────────────────────── */
h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { font-size: 1rem; }

.highlight { color: var(--primary); }
.highlight-amber { color: var(--accent-dark); }
em { font-style: normal; color: var(--accent-dark); }

/* ── LAYOUT UTILITIES ──────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5.5rem 0; }
.bg-light { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }
.text-center { text-align: center; }

/* ── SECTION HEADER ────────────────────────────────── */
.section-label {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem; background: rgba(232, 65, 29, 0.08);
  border-radius: 2rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-header.centered p { margin: 0 auto; max-width: 640px; color: var(--text-light); }
.section-divider {
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px; margin: 1rem 0;
}
.section-header.centered .section-divider { margin: 1rem auto; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 2rem; border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800; letter-spacing: 0.01em;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(232, 65, 29,0.45); }
.btn-blue { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-blue:hover { background: #000; border-color: #000; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.65); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-3px); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ── SCROLL ANIMATIONS ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(38px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── NAVIGATION ────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 1.5rem; max-width: var(--container); margin: 0 auto;
}

/* Brand logo lockup (the real logo — transparent PNG, reads on light and dark) */
.nav-logo { display: flex; align-items: center; }
.brandmark { display: inline-flex; align-items: center; }
.brand-logo {
  height: 42px; width: auto; display: block;
  /* lifts the white car off dark navs without touching the artwork */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18));
}
@media (max-width: 480px) { .brand-logo { height: 34px; } }

/* States */
#navbar.hero-nav { background: linear-gradient(180deg, rgba(18, 20, 25,0.62) 0%, rgba(18, 20, 25,0) 100%); }
#navbar.hero-nav .nav-links a { color: rgba(255,255,255,0.92); }
#navbar.hero-nav .nav-links a:hover { color: #fff; }
#navbar.hero-nav .hamburger span { background: #fff; }

#navbar.scrolled, #navbar.solid-nav {
  background: rgba(18, 20, 25,0.94); backdrop-filter: blur(12px);
  box-shadow: 0 2px 22px rgba(0,0,0,0.35); border-bottom: 1px solid rgba(255,255,255,0.06);
}
#navbar.scrolled .nav-links a, #navbar.solid-nav .nav-links a { color: rgba(255,255,255,0.9); }
#navbar.scrolled .nav-links a:hover, #navbar.solid-nav .nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a.active, #navbar.solid-nav .nav-links a.active { color: #fff; }
#navbar.scrolled .hamburger span, #navbar.solid-nav .hamburger span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 600; position: relative; padding: 0.25rem 0; transition: color 0.25s; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
#navbar.hero-nav .nav-links a.active { color: #fff; }

.nav-cta { padding: 0.7rem 1.5rem; border-radius: var(--radius); background: var(--primary); color: #fff !important; font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; transition: var(--transition); box-shadow: 0 6px 18px rgba(232, 65, 29,0.35); }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent-light); transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 999;
  flex-direction: column; padding: 5.5rem 2rem 2rem;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-nav-links a { display: block; padding: 1.25rem 0; font-size: 1.3rem; font-weight: 700; font-family: var(--font-display); color: var(--text-dark); border-bottom: 1px solid var(--gray-light); }
.mobile-nav-links a.active { color: var(--primary); }
.mobile-menu-close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: var(--text-dark); line-height: 1; }
.mobile-menu-cta { margin-top: 2rem; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden;
  background:
    linear-gradient(115deg, rgba(18, 20, 25,0.92) 0%, rgba(20,20,24,0.80) 45%, rgba(232, 65, 29,0.55) 100%),
    url('../assets/hero.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 15%, rgba(232, 65, 29,0.16) 0%, transparent 55%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; width: 100%; padding: 7rem 0 5rem; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 0.5rem 1rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.6rem; backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 4px rgba(22,163,74,0.25); }
.hero h1 { color: #fff; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero h1 em { color: var(--accent-light); }
.hero-sub { color: rgba(255,255,255,0.86); font-size: clamp(1.05rem, 2vw, 1.25rem); margin-bottom: 2.2rem; max-width: 540px; }
.hero-sub:not(:last-of-type) { margin-bottom: 1.1rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.8rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.55rem; color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 600; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent-light); flex-shrink: 0; }

/* Hero side card */
.hero-card {
  background: rgba(255,255,255,0.10); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.20); border-radius: var(--radius-xl);
  padding: 2rem; color: #fff; box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.4rem; }
.hero-card .hero-card-sub { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.4rem; }
.hero-card-list { display: flex; flex-direction: column; gap: 0.9rem; }
.hero-card-list li { position: relative; padding-left: 2.35rem; font-size: 0.95rem; color: rgba(255,255,255,0.92); }
.hero-card-list .tick { position: absolute; left: 0; top: -1px; width: 26px; height: 26px; border-radius: 50%; background: rgba(22,163,74,0.2); color: #4ADE80; display: inline-flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.hero-card .btn { width: 100%; justify-content: center; margin-top: 1.6rem; }

.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.55); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; animation: bounceScroll 2s infinite; z-index: 2; }
@keyframes bounceScroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; padding: 6.5rem 0 4.5rem; }
  .hero-card { max-width: 460px; }
}

/* ── TRUST STRIP ───────────────────────────────────── */
.trust-strip { background: var(--dark); padding: 1.6rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.85rem; justify-content: center; color: rgba(255,255,255,0.9); }
.trust-item .trust-ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.trust-item span.trust-txt { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; } }

/* ── SERVICES GRID ─────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.6rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 15px;
  background: linear-gradient(135deg, rgba(232, 65, 29,0.12) 0%, rgba(232, 65, 29,0.14) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  margin-bottom: 1.3rem; transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); transform: rotate(-6deg); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.65; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.2rem; font-size: 0.9rem; font-weight: 700; font-family: var(--font-display); color: var(--primary); transition: gap 0.25s; }
.service-card:hover .service-card-link { gap: 0.8rem; }

/* ── WHY / TWO-COLUMN ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-media { position: relative; }
.split-img {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.split-badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--white); border-radius: var(--radius-lg); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.9rem;
}
.split-badge .sb-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.split-badge .sb-label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; line-height: 1.3; }
.split-content h2 { margin-bottom: 1.2rem; }
.feature-list { display: flex; flex-direction: column; gap: 1.15rem; margin-top: 1.6rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.feature-list .fl-ico { width: 34px; height: 34px; border-radius: 10px; background: rgba(22,163,74,0.12); color: #16A34A; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.feature-list .fl-txt strong { display: block; color: var(--text-dark); font-family: var(--font-display); font-weight: 700; margin-bottom: 0.15rem; }
.feature-list .fl-txt span { font-size: 0.92rem; color: var(--text-light); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split-media { order: -1; } }

/* ── STATS ─────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--primary-dark) 130%); padding: 4.5rem 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%; background: radial-gradient(ellipse, rgba(232, 65, 29,0.12) 0%, transparent 60%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 900; color: #fff; }
.stat-number .stat-suffix, .stat-prefix { color: var(--accent-light); }
.stat-divider { width: 34px; height: 3px; background: var(--accent); margin: 0.7rem auto; border-radius: 2px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; } .stat-item:nth-last-child(-n+2) { border-bottom: none; } }

/* ── STEPS / PROCESS ───────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.6rem; position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--gray-light); line-height: 1; margin-bottom: 0.6rem; }
.step-card:hover .step-num { color: var(--accent); }
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── VIDEO / REELS SHOWCASE ────────────────────────── */
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.reel-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 9/16; background: var(--dark); box-shadow: var(--shadow-md);
  transition: var(--transition); cursor: pointer;
}
.reel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reel-card video, .reel-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.reel-card .reel-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; text-align: center; padding: 1.5rem; color: rgba(255,255,255,0.85);
  background: linear-gradient(160deg, var(--primary) 0%, var(--dark) 100%);
}
.reel-card .reel-fallback .rf-ico { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.reel-card .reel-fallback p { font-size: 0.82rem; line-height: 1.4; }
.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: var(--transition); z-index: 2;
}
.reel-play svg { width: 22px; height: 22px; color: var(--primary); margin-left: 3px; }
.reel-card:hover .reel-play { background: var(--accent); transform: translate(-50%,-50%) scale(1.08); }
.reel-card:hover .reel-play svg { color: var(--dark); }
.reel-tag { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem 1rem; z-index: 2; background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 768px) { .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .reels-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ──────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-card p { color: var(--text-medium); font-size: 0.98rem; line-height: 1.7; margin-bottom: 1.4rem; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.testi-author .ta-name { font-family: var(--font-display); font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testi-author .ta-meta { font-size: 0.8rem; color: var(--text-light); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── CTA SECTION ───────────────────────────────────── */
.cta-section { background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 120%; height: 200%; background: radial-gradient(ellipse at 30% 40%, rgba(232, 65, 29,0.18) 0%, transparent 55%); }
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.15rem; margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (interior) ──────────────────────────── */
.page-hero {
  padding: 9rem 0 4.5rem; position: relative; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 20, 25,0.93) 0%, rgba(232, 65, 29,0.72) 100%),
    var(--dark);
  background-size: cover; background-position: center;
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 20%, rgba(232, 65, 29,0.16) 0%, transparent 55%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--accent-light); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 1.4rem; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.25s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.5; }
@media (max-width: 768px) { .page-hero { padding-top: 7.5rem; } }

/* ── SERVICE DETAIL (services page) ────────────────── */
.subnav { position: sticky; top: 70px; z-index: 90; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.subnav-inner { display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.85rem 0; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav-inner a { white-space: nowrap; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.88rem; font-weight: 600; color: var(--text-medium); transition: var(--transition); }
.subnav-inner a:hover { background: var(--bg-section); color: var(--primary); }

.svc-detail { padding: 4.5rem 0; border-bottom: 1px solid var(--border); scroll-margin-top: 130px; }
.svc-detail .split { align-items: center; }
.svc-tag { display: inline-block; background: rgba(232, 65, 29,0.1); color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2rem; margin-bottom: 1rem; }
.svc-detail h2 { margin-bottom: 1rem; }
.svc-detail .svc-lead { font-size: 1.05rem; color: var(--text-medium); margin-bottom: 1.5rem; }
.svc-detail .svc-forwho { background: var(--bg-light); border-left: 3px solid var(--accent); padding: 0.9rem 1.2rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.5rem; font-size: 0.95rem; }
.svc-detail .svc-forwho strong { color: var(--text-dark); }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.4rem 0; }
.check-list li { position: relative; padding-left: 1.95rem; font-size: 0.95rem; color: var(--text-medium); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; background: rgba(22,163,74,0.14); color: #16A34A; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; }

/* ── PRICING ───────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.4rem 2rem; text-align: center; transition: var(--transition); position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark); font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 2rem; white-space: nowrap; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.price-card .price-amount { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--primary); line-height: 1; margin: 1rem 0 0.3rem; }
.price-card .price-amount small { font-size: 1rem; color: var(--text-light); font-weight: 600; }
.price-card .price-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.price-card .check-list { text-align: left; margin: 1.5rem 0; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ── GALLERY + LIGHTBOX ────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { padding: 0; border: 0; cursor: pointer; overflow: hidden; border-radius: var(--radius); position: relative; background: var(--bg-section); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gi-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18, 20, 25,0.6) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; }
.gallery-item:hover .gi-overlay { opacity: 1; }
/* Placeholder shown until real photos are added to /assets */
.gallery-item.gi-placeholder { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); }
.gallery-item.gi-placeholder::before { content: '📷'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; opacity: 0.5; }
.gallery-item.gi-placeholder .gi-overlay { opacity: 1; background: linear-gradient(0deg, rgba(18, 20, 25,0.75) 0%, transparent 60%); }
.lightbox { position: fixed; inset: 0; background: rgba(6,12,26,0.95); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); border-radius: 50%; width: 52px; height: 52px; border: 0; color: #fff; font-size: 1.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }
.lightbox-close { top: 20px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; } }

/* ── CONTACT ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; color: var(--text-dark); background: var(--bg-light); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(232, 65, 29,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; background: var(--accent); color: var(--dark); border-radius: var(--radius); font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; transition: var(--transition); box-shadow: var(--shadow-amber); }
.form-submit:hover { background: var(--accent-light); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; background: rgba(22,163,74,0.06); border: 1px solid rgba(22,163,74,0.2); border-radius: var(--radius-lg); }
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { color: var(--text-dark); font-size: 1.3rem; margin-bottom: 0.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.contact-card .cc-ico { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(232, 65, 29,0.12), rgba(232, 65, 29,0.14)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--text-light); word-break: break-word; }
.contact-card a:hover { color: var(--primary); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); margin-top: 1rem; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ── AREAS SERVED ──────────────────────────────────── */
.areas-list { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 2rem; }
.area-chip { background: var(--white); border: 1px solid var(--border); padding: 0.6rem 1.2rem; border-radius: 2rem; font-size: 0.9rem; font-weight: 600; color: var(--text-medium); transition: var(--transition); }
.area-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ── VALUES GRID (about) ───────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.7rem; transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .vc-ico { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.92rem; color: var(--text-light); }

/* Balanced value grids. auto-fit orphans the last card at 5 or 6 items (4+1, 4+2),
   so those two counts get an explicit template: 3+2 centred, and 3+3. */
.values-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.values-grid.grid-5 { grid-template-columns: repeat(6, 1fr); }
.values-grid.grid-5 > * { grid-column: span 2; }
.values-grid.grid-5 > :nth-child(4) { grid-column: 2 / span 2; }
.values-grid.grid-5 > :nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 1024px) {
  .values-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid.grid-5 { grid-template-columns: repeat(4, 1fr); }
  .values-grid.grid-5 > :nth-child(4) { grid-column: span 2; }
  .values-grid.grid-5 > :nth-child(5) { grid-column: 2 / span 2; }
}
@media (max-width: 600px) {
  .values-grid.grid-3, .values-grid.grid-5 { grid-template-columns: 1fr; }
  .values-grid.grid-5 > *,
  .values-grid.grid-5 > :nth-child(4),
  .values-grid.grid-5 > :nth-child(5) { grid-column: 1 / -1; }
}

/* A plain character in the icon tile — the ❓ emoji renders red on the red/orange
   gradient and all but disappears. */
.value-card .vc-ico.vc-ico-char { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem; }
.mission-card .mc-ico { font-size: 1.8rem; margin-bottom: 1rem; }
.mission-card h3 { margin-bottom: 0.7rem; }
.mission-card p { color: var(--text-light); }
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; background: none; text-align: left; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); transition: color 0.25s; }
.faq-question:hover, .faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-icon { font-size: 1.6rem; font-weight: 300; flex-shrink: 0; color: var(--accent-dark); transition: transform 0.3s ease; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 900px; padding-bottom: 1.3rem; }
.faq-answer p { color: var(--text-light); line-height: 1.75; margin: 0; }

/* ── FOOTER ────────────────────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brandmark { margin-bottom: 1.1rem; }
.footer-brand .brand-logo { height: 46px; }
.footer-tagline { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom { padding: 1.6rem 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--accent-light); }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── WHATSAPP FLOAT ────────────────────────────────── */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 998; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.45); transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 768px) { .wa-float { right: 16px; bottom: 16px; } }

/* reCAPTCHA v3 drops a floating badge at bottom-right — exactly where .wa-float
   and the cookie banner already sit. Google permits hiding it provided the
   "protected by reCAPTCHA" disclosure is shown instead; that is the
   .recaptcha-note paragraph under the contact form's submit button. Removing
   one without removing the other breaks Google's terms. */
.grecaptcha-badge { visibility: hidden; }

/* ── COOKIE BANNER ─────────────────────────────────── */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1001; display: none; gap: 14px; align-items: center; flex-wrap: wrap; background: #fff; padding: 16px 22px; border-radius: var(--radius-lg); box-shadow: 0 12px 40px rgba(0,0,0,0.18); max-width: 620px; margin: 0 auto; }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; flex: 1 1 260px; font-size: 0.88rem; color: var(--text-medium); }
.cookie-banner p a { color: var(--primary); font-weight: 600; }
.cookie-banner .btn-sm { padding: 0.55rem 1.2rem; font-size: 0.88rem; border-radius: var(--radius); }
.cookie-ghost { background: transparent; color: var(--text-light); font-weight: 600; padding: 0.55rem 1rem; }

/* ── RESPONSIVE NAV ────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links, .nav-cta.desktop-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .hero-trust { gap: 1.1rem; }
}

/* ============================================================
   LOCAL INSTRUCTORS — components added in the 2026 rebrand
   ============================================================ */

/* ── BRAND ACCENT UTILITIES ────────────────────────── */
.brand-rule { height: 5px; background: var(--brand-gradient); }
.text-orange { color: var(--accent-dark); }
.text-flame  { color: var(--primary); }

/* A small L-plate chip, used as a bullet/marker throughout */
.lplate {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.5em; height: 1.5em; border-radius: 0.28em;
  background: #fff; color: var(--brand-red);
  font-family: var(--font-display); font-weight: 900; font-size: 0.8em;
  line-height: 1; transform: rotate(-7deg); flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18); border: 1px solid rgba(0,0,0,0.06);
}
.lplate::before { content: 'L'; }

/* ── NAV DROPDOWN ──────────────────────────────────── */
.nav-links li.has-dropdown { position: relative; }
.nav-links .dd-toggle { display: inline-flex; align-items: center; gap: 0.32rem; }
.nav-links .dd-toggle svg { width: 11px; height: 11px; transition: transform 0.25s; }
.nav-links li.has-dropdown:hover .dd-toggle svg,
.nav-links li.has-dropdown:focus-within .dd-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; padding: 0.5rem; margin-top: 0.9rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.dropdown::before { content: ''; position: absolute; top: -0.9rem; left: 0; right: 0; height: 0.9rem; }
.nav-links li.has-dropdown:hover .dropdown,
.nav-links li.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.7rem 0.8rem; border-radius: var(--radius);
  color: var(--text-dark) !important; font-size: 0.9rem; font-weight: 600;
  transition: background 0.2s;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--bg-section); }
.dropdown .dd-ico { font-size: 1.1rem; line-height: 1.2; flex-shrink: 0; }
.dropdown .dd-txt small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }

/* Mobile menu sub-links */
.mobile-nav-links .sub-links { padding: 0.2rem 0 0.9rem 0.2rem; }
.mobile-nav-links .sub-links a {
  font-size: 1rem; font-weight: 600; padding: 0.6rem 0 0.6rem 1.1rem;
  border-bottom: none; color: var(--text-medium);
  border-left: 2px solid var(--border);
}
.mobile-nav-links .sub-links a:hover { color: var(--primary); border-left-color: var(--primary); }

/* ── TRANSMISSION PICKER (home) ────────────────────── */
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .pick-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.pick-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.pick-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pick-media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-section); position: relative; }
.pick-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.pick-card:hover .pick-media img { transform: scale(1.06); }
.pick-media .pick-flag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: var(--brand-gradient); color: #fff;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 2rem;
}
.pick-body { padding: 1.7rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.pick-body h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pick-body > p { font-size: 0.94rem; color: var(--text-light); margin-bottom: 1.1rem; }
.pick-price {
  display: flex; align-items: baseline; gap: 0.4rem;
  font-family: var(--font-display); margin-bottom: 1.2rem;
}
.pick-price b { font-size: 1.8rem; font-weight: 900; color: var(--primary); line-height: 1; }
.pick-price span { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.pick-body .check-list { margin: 0 0 1.5rem; }
.pick-body .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ── BLOCK PRICING TABLE ───────────────────────────── */
.price-table-wrap {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow-x: auto; background: #fff; box-shadow: var(--shadow-sm);
}
table.price-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table thead th {
  background: var(--dark); color: #fff; text-align: left;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 1rem 1.4rem; white-space: nowrap;
}
.price-table thead th:last-child, .price-table td:last-child { text-align: right; }
.price-table tbody td { padding: 0.95rem 1.4rem; border-bottom: 1px solid var(--border); font-size: 0.97rem; color: var(--text-medium); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--bg-light); }
.price-table tbody tr.is-popular { background: rgba(250,152,15,0.10); }
.price-table tbody tr.is-popular td { border-bottom-color: rgba(250,152,15,0.28); }
.price-table .pt-hours { font-family: var(--font-display); font-weight: 800; color: var(--text-dark); white-space: nowrap; }
.price-table .pt-total { font-family: var(--font-display); font-weight: 900; color: var(--primary); font-size: 1.12rem; white-space: nowrap; }
.price-table .pt-rate { white-space: nowrap; }
.pt-save {
  display: inline-block; background: rgba(22,163,74,0.12); color: #15803D;
  font-size: 0.75rem; font-weight: 700; padding: 0.18rem 0.6rem;
  border-radius: 2rem; white-space: nowrap;
}
.pt-save.is-zero { background: var(--gray-light); color: var(--text-light); }
.pt-tag {
  display: inline-block; background: var(--brand-gradient); color: #fff;
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.16rem 0.55rem; border-radius: 2rem; margin-left: 0.5rem; vertical-align: middle;
}
.price-foot { margin-top: 1.2rem; font-size: 0.88rem; color: var(--text-light); }

/* Headline rate band */
.rate-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  background: var(--dark); border-radius: var(--radius-xl); padding: 2.4rem 2rem;
  position: relative; overflow: hidden;
}
.rate-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 88% 10%, rgba(250,152,15,0.20) 0%, transparent 58%); }
.rate-band > div { position: relative; z-index: 1; text-align: center; padding: 0 1rem; border-right: 1px solid rgba(255,255,255,0.12); }
.rate-band > div:last-child { border-right: none; }
.rate-band .rb-amount { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.9rem); font-weight: 900; color: #fff; line-height: 1; }
.rate-band .rb-amount small { font-size: 0.9rem; color: var(--accent-light); font-weight: 700; }
.rate-band .rb-label { margin-top: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.72); }
@media (max-width: 780px) {
  .rate-band { grid-template-columns: 1fr; gap: 0; padding: 1.8rem 1.4rem; }
  .rate-band > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 1.3rem 0; }
  .rate-band > div:last-child { border-bottom: none; }
}

/* ── INSTRUCTOR PATH (become an instructor) ────────── */
.path-list { display: grid; gap: 1.2rem; counter-reset: path; }
.path-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem 1.7rem; transition: var(--transition);
}
.path-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.path-step .ps-num {
  counter-increment: path;
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--brand-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.15rem;
}
.path-step .ps-num::before { content: 'Part ' counter(path); font-size: 0.62rem; display: none; }
.path-step h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.path-step p { font-size: 0.94rem; color: var(--text-light); }
.path-step .ps-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.path-step .ps-meta span {
  background: var(--bg-section); border-radius: 2rem; padding: 0.28rem 0.8rem;
  font-size: 0.78rem; font-weight: 600; color: var(--text-medium);
}
@media (max-width: 560px) { .path-step { grid-template-columns: 1fr; gap: 1rem; } }

/* ── CALLOUT ───────────────────────────────────────── */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--bg-light); border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.4rem 1.6rem; margin: 2rem 0;
}
.callout .co-ico { font-size: 1.4rem; line-height: 1.2; flex-shrink: 0; }
.callout h4 { margin-bottom: 0.3rem; }
.callout p { font-size: 0.93rem; color: var(--text-light); margin: 0; }

/* ── BOOKING FORM ──────────────────────────────────── */
.booking-shell {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.booking-head { background: var(--dark); padding: 1.8rem 2.2rem; position: relative; overflow: hidden; }
.booking-head::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 90% 0%, rgba(250,152,15,0.22) 0%, transparent 60%); }
.booking-head > * { position: relative; z-index: 1; }
.booking-head h2 { color: #fff; font-size: 1.5rem; margin-bottom: 0.35rem; }
.booking-head p { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin: 0; }
.booking-body { padding: 2.2rem; }
@media (max-width: 560px) { .booking-head, .booking-body { padding: 1.5rem 1.3rem; } }

/* Segmented lesson-type picker */
.seg-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem; }
.seg-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.6rem; margin-bottom: 1.4rem; }
.seg-group input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg-group label {
  display: flex; align-items: center; gap: 0.55rem; cursor: pointer;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0.75rem 0.9rem; font-size: 0.9rem; font-weight: 600; color: var(--text-medium);
  background: var(--bg-light); transition: var(--transition);
}
.seg-group label .seg-ico { font-size: 1.05rem; }
.seg-group label:hover { border-color: var(--accent); }
.seg-group input:checked + label {
  border-color: var(--primary); background: rgba(232,65,29,0.07); color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,65,29,0.10);
}
.seg-group input:focus-visible + label { outline: 2px solid var(--primary); outline-offset: 2px; }

.form-consent { display: flex; align-items: flex-start; gap: 0.65rem; margin: 0.4rem 0 1.4rem; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }
.form-consent label { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }
.form-consent a { color: var(--primary); font-weight: 600; }

.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  display: none; margin-bottom: 1.2rem; padding: 0.9rem 1.1rem;
  background: rgba(226,24,20,0.07); border: 1px solid rgba(226,24,20,0.25);
  border-radius: var(--radius); color: #A3120F; font-size: 0.9rem;
}
.form-error.visible { display: block; }
.form-note { font-size: 0.82rem; color: var(--text-light); text-align: center; margin-top: 1rem; }
/* The disclosure that lets us hide the badge above. Required wording, kept as
   quiet fine print. */
.recaptcha-note { font-size: 0.72rem; opacity: 0.75; margin-top: 0.85rem; }
.recaptcha-note a { color: inherit; text-decoration: underline; }

/* ── AREAS (grouped) ───────────────────────────────── */
.areas-panel { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.areas-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem 1.5rem; }
.areas-card h4 { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.9rem; }
.areas-card ul { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.areas-card li { font-size: 0.87rem; color: var(--text-light); background: var(--bg-light); border-radius: 2rem; padding: 0.3rem 0.75rem; }

/* ── COMPARE TABLE (manual vs automatic) ───────────── */
.compare-wrap { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow-x: auto; background: #fff; }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { padding: 1rem 1.3rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.94rem; }
.compare thead th { background: var(--bg-section); font-family: var(--font-display); font-weight: 800; color: var(--text-dark); }
.compare tbody th { font-weight: 600; color: var(--text-dark); width: 34%; }
.compare tbody td { color: var(--text-light); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }

/* ── A11Y HELPERS ──────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}
/* Touch devices: JS adds .open on first tap (there is no hover to rely on) */
.nav-links li.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
