/* =========================================================================
   Car Flex — Design System
   Bright pink primary with deep ink/navy + lilac + mint complementary tones.
   Sans-serif type system: "Sora" (display) + "Inter" (body/UI).
   ========================================================================= */

:root {
  /* Brand palette */
  --pink: #FF2E93;
  --pink-600: #E01777;
  --pink-700: #B80F60;
  --pink-100: #FFE3F1;
  --pink-50: #FFF3FA;
  --ink: #150E23;
  --navy: #1E1638;
  --navy-700: #2A2050;
  --lilac: #F1E9FF;
  --lilac-600: #8B7BD8;
  --mint: #00E6A8;
  --amber: #FFC24B;
  --sky: #33C9F2;

  --white: #FFFFFF;
  --gray-50: #FAF9FC;
  --gray-100: #F2EFF7;
  --gray-200: #E6E1F0;
  --gray-300: #D3CCE3;
  --gray-500: #8A80A3;
  --gray-600: #675E80;
  --gray-700: #453D5C;
  --gray-900: #201A34;

  --success: #16B978;
  --warn: #F2A93B;
  --danger: #F0446B;

  /* Typography */
  --font-display: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(21, 14, 35, 0.06);
  --shadow: 0 8px 24px rgba(21, 14, 35, 0.10);
  --shadow-lg: 0 20px 48px rgba(21, 14, 35, 0.16);
  --header-h: 76px;
  --ease: cubic-bezier(.22, .9, .32, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--gray-700); }
a { color: var(--pink-700); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--pink-600); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.25em; color: var(--gray-700); }
li { margin-bottom: .35em; }
button { font-family: inherit; }
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.section { padding: 72px 0; }
.section--sm { padding: 44px 0; }
.section--soft { background: linear-gradient(180deg, var(--pink-50), var(--white) 60%); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #C9C0E0; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-700);
  background: var(--pink-100);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section--ink .eyebrow { background: rgba(255,46,147,.16); color: #FF7BB8; }
.lede { font-size: 1.15rem; color: var(--gray-600); max-width: 68ch; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-6 { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .grid-6 { grid-template-columns: repeat(2,1fr);} }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .96rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink-600); color: #fff; box-shadow: 0 10px 24px rgba(255,46,147,.35); }
.btn-primary:hover { background: var(--pink-700); color: #fff; box-shadow: 0 14px 30px rgba(255,46,147,.45); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1DA851; color: #fff; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--gray-200);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 0; }
.logo-mark svg { display: block; }
.brand-flex { color: var(--pink-700); }
.footer-brand { display: flex; align-items: center; gap: 10px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius-pill);
  color: var(--gray-900); text-decoration: none; font-weight: 600; font-size: .95rem;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-link:hover, .nav-item:focus-within > .nav-link { background: var(--pink-50); color: var(--pink-700); }
.nav-caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .18s var(--ease); }
.nav-item:focus-within .nav-caret, .nav-item:hover .nav-caret { transform: rotate(225deg); margin-top: 3px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 270px; padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--gray-900); text-decoration: none; font-weight: 600; font-size: .92rem; }
.dropdown a:hover { background: var(--pink-50); color: var(--pink-700); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 2px solid var(--gray-200); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; display:block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span::before { position:absolute; top:-6px; }
.nav-toggle span::after { position:absolute; top:6px; }

@media (max-width: 1080px) {
  .main-nav { position: fixed; inset: var(--header-h) 0 0 0; z-index: 1500; background: #fff; flex-direction: column; align-items: stretch; padding: 18px; overflow-y: auto; transform: translateX(100%); transition: transform .28s var(--ease); gap: 2px; }
  .main-nav.is-open { transform: translateX(0); }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 12px; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 10px; }
  .nav-item.is-open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 100% 0%, #2A1E52 0%, var(--ink) 55%);
  color: #fff;
  padding: 64px 0 84px;
}
.hero::before {
  content: '';
  position: absolute; inset: -40% -10% auto auto; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255,46,147,.45), transparent 70%);
  filter: blur(10px);
}
.hero::after {
  content: '';
  position: absolute; left: -12%; bottom: -30%; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(51,201,242,.30), transparent 70%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero .lede { color: #CFC5EC; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust div { font-size: .82rem; color: #B8ADD9; font-weight: 600; }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: #fff; }

/* Quick lead form (flexigocars-style) */
.quick-form {
  background: #fff; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg);
  color: var(--gray-900);
}
.quick-form h3 { margin-bottom: 4px; }
.quick-form .sub { color: var(--gray-600); font-size: .9rem; margin-bottom: 18px; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 480px) { .qf-row { grid-template-columns: 1fr; } }
.field label { display:block; font-weight: 700; font-size: .8rem; margin-bottom: 6px; color: var(--gray-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--gray-200);
  font-family: var(--font-body); font-size: .95rem; background: var(--gray-50); color: var(--gray-900);
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); background: #fff; }
.field-check { display: flex; align-items: flex-start; gap: 8px; font-size: .78rem; color: var(--gray-600); margin: 10px 0 16px; }
.field-check input { margin-top: 3px; }
.form-note { font-size: .74rem; color: var(--gray-600); margin-top: 10px; }
.form-success { margin-top: 12px; padding: 12px 14px; border-radius: 10px; background: rgba(46, 189, 133, 0.14); border: 1px solid rgba(46, 189, 133, 0.4); color: #1F8F63; font-size: .88rem; font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pink-100); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--pink-100); color: var(--pink-700); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; font-family: var(--font-display); font-weight: 800; }
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card p { font-size: .93rem; margin-bottom: 12px; }
.card-link { font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.card-link::after { content: '→'; transition: transform .18s var(--ease); }
.card-link:hover::after { transform: translateX(4px); }

.service-card { display:flex; flex-direction: column; }
.tile-link { text-decoration: none; color: inherit; display: block; height: 100%; }

/* ---------- Badges ---------- */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 800; padding: 5px 11px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .03em; }
.badge-instock { background: #E4FBF1; color: #0A8F5B; }
.badge-limited { background: #FFF4E0; color: #A9660B; }
.badge-outstock { background: #FDEAEE; color: #C21C42; }
.badge-call { background: var(--gray-100); color: var(--gray-700); }
.badge-preorder { background: #E9F0FF; color: #2454C7; }
.badge-pink { background: var(--pink-100); color: var(--pink-700); }
.badge-ev { background: #E1FBF3; color: #067A56; }

/* ---------- Vehicle cards ---------- */
.veh-card { background:#fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.veh-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.veh-media { position: relative; background: var(--gray-100); aspect-ratio: 4/3; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.veh-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.veh-badges { position:absolute; top:10px; left:10px; display:flex; gap:6px; flex-wrap:wrap; }
.veh-badges { z-index: 4; }
.veh-select { position:absolute; top:10px; right:10px; z-index: 5; }
.veh-select label { display:flex; align-items:center; gap:6px; background:#fff; padding:6px 10px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); font-size:.76rem; font-weight:700; cursor:pointer; }
.veh-body { padding: 16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.veh-make { display:flex; align-items:center; flex-wrap: wrap; gap:6px; font-size: .74rem; text-transform: uppercase; letter-spacing:.05em; font-weight:700; color: var(--pink-700); }
.veh-make-logo { width:18px; height:18px; object-fit:contain; flex-shrink:0; }
.veh-make .veh-contract-bubble { margin-left: auto; text-transform: none; letter-spacing: normal; font-size: .68rem; }
.veh-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); margin: 0; }
.veh-derivative { font-size: .82rem; color: var(--gray-600); min-height: 2.4em; }
.veh-specs { display:flex; flex-wrap:wrap; gap:6px; font-size:.72rem; color: var(--gray-600); margin: 4px 0; }
.veh-specs span { background: var(--gray-100); padding: 4px 9px; border-radius: var(--radius-pill); }
.veh-specs span.chip-ev { background: #E1FBF3; color: #067A56; font-weight: 700; }
.veh-variant-picker { display:flex; flex-direction:column; gap:4px; margin: 2px 0 4px; }
.veh-variant-picker-label { font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color: var(--gray-500); }
.veh-variant-select { width:100%; padding:9px 10px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-size:.82rem; font-weight:700; color: var(--ink); background:#fff; cursor:pointer; }
.veh-variant-select:hover, .veh-variant-select:focus { border-color: var(--pink-600); outline:none; }
.veh-price { margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--gray-200); }
.veh-price .amount { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.veh-price .unit { font-size: .78rem; color: var(--gray-600); }
.veh-actions { display:flex; gap:8px; margin-top:12px; }
.veh-actions .btn { flex:1; }

.results-toolbar { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-bottom: 18px; }
.results-count { font-weight: 700; color: var(--gray-700); font-size: .92rem; }

/* ---------- Filters ---------- */
.filter-panel { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.filter-bar { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 22px; }
.filter-bar-row { display:flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.filter-bar-row .filter-group { flex: 1 1 170px; min-width: 150px; margin-bottom: 0; }
.filter-bar-row .filter-reset { flex-shrink: 0; align-self: center; }
.filter-group { margin-bottom: 18px; }
.filter-group > label, .filter-group > .filter-title { display:block; font-family: var(--font-display); font-weight: 700; font-size: .82rem; margin-bottom: 8px; color: var(--ink); }
.filter-group select, .filter-group input[type=text] { width:100%; padding: 10px 12px; border-radius: 9px; border: 1.5px solid var(--gray-200); background:#fff; font-size:.88rem; }
.filter-chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip { border: 1.5px solid var(--gray-200); background: #fff; padding: 6px 13px; border-radius: var(--radius-pill); font-size: .78rem; font-weight: 700; cursor:pointer; color: var(--gray-700); transition: all .15s var(--ease); }
.chip.is-active { background: var(--pink-600); border-color: var(--pink-600); color: #fff; }
.chip:hover { border-color: var(--pink); }
.range-row { display:flex; align-items:center; justify-content:space-between; font-size:.78rem; font-weight:700; color: var(--gray-700); margin-bottom:6px; }
input[type=range] { width: 100%; accent-color: var(--pink); }
.filter-actions { display:flex; gap:10px; margin-top: 6px; }
.filter-reset { background:none; border:none; color:var(--pink-700); font-weight:700; font-size:.82rem; cursor:pointer; padding:8px 0; }

/* Enquiry basket */
.basket-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--ink); color: #fff; transform: translateY(110%); transition: transform .3s var(--ease);
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
}
.basket-bar.is-visible { transform: translateY(0); }
.basket-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 14px 0; flex-wrap:wrap;}
.basket-count { font-weight:800; font-family: var(--font-display); }
.basket-list { font-size:.82rem; color:#C9C0E0; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 18px 4px; font-family: var(--font-display); font-weight:700; font-size:1rem; color: var(--ink); display:flex; justify-content:space-between; align-items:center; cursor:pointer; gap: 16px; }
.faq-q .plus { flex-shrink:0; width: 26px; height:26px; border-radius:50%; background: var(--pink-100); color: var(--pink-700); display:flex; align-items:center; justify-content:center; font-weight:800; transition: transform .2s var(--ease); }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 4px 20px; color: var(--gray-700); }
.faq-item summary::-webkit-details-marker { display:none; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: .82rem; color: var(--gray-600); padding: 16px 0; }
.breadcrumbs a { color: var(--gray-600); text-decoration:none; }
.breadcrumbs a:hover { color: var(--pink-700); }

/* ---------- Tables ---------- */
table { width:100%; border-collapse: collapse; margin: 1.2em 0; }
th, td { text-align:left; padding: 12px 14px; border-bottom: 1px solid var(--gray-200); font-size:.92rem; }
th { font-family: var(--font-display); background: var(--gray-50); }

/* ---------- Manufacturer / Bodystyle grids ---------- */
.logo-tile { display:flex; flex-direction: column; align-items:center; justify-content:center; gap: 6px; min-height: 100px; background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font-display); font-weight:800; font-size: .88rem; color: var(--ink); text-decoration:none; transition: all .18s var(--ease); text-align:center; padding: 14px 10px; }
.logo-tile:hover { border-color: var(--pink); color: var(--pink-700); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.logo-tile img { display: block; max-width: 56px; max-height: 56px; object-fit: contain; }

/* ---------- Manufacturer brand page ---------- */
.mfr-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 10px; }
.mfr-logo { width: 72px; height: 72px; object-fit: contain; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px; flex-shrink: 0; }
.mfr-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.mfr-section + .mfr-section { border-top: none; }

/* ---------- Reg lookup ---------- */
.reg-box { display:flex; gap:0; border-radius: 10px; overflow:hidden; border: 3px solid #FFC72C; max-width: 420px; font-family: var(--font-display); }
.reg-box .flag { background:#003399; color:#FFC72C; font-weight:800; font-size:.7rem; display:flex; align-items:center; justify-content:center; padding: 0 8px; }
.reg-box input { border:none; background:#FFD84D; text-transform:uppercase; font-weight:800; font-size:1.1rem; letter-spacing:.05em; padding: 12px 14px; flex:1; font-family: var(--font-display); text-align:center; }
.reg-box input:focus { outline: 2px solid var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E4DFF3; padding: 64px 0 0; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing:.06em; margin-bottom: 16px; }
.site-footer a { color: #FFFFFF; text-decoration: none; font-size: .88rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-brand { font-family: var(--font-display); font-weight:800; font-size:1.3rem; color:#fff; }
.footer-social { display:flex; gap:10px; margin-top:16px; flex-wrap:wrap; }
.footer-social a { width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:800; }
.footer-social a:hover { background: var(--pink); color: #fff; }
.footer-legal { padding: 28px 0; font-size: .78rem; color: #F5F3FA; line-height:1.7; }
.footer-legal a { color: #FFFFFF; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 26px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size: .8rem; color: #F5F3FA; }
.footer-bottom a { color: #FFFFFF; }
/* The global "p { color: ... }" rule (see base typography) directly matches
   every <p> tag, including these footer paragraphs — inherited colour from
   .site-footer/.footer-legal never wins against a rule that targets the
   element itself. These explicit, higher-specificity overrides are the
   actual fix for footer text contrast (off-white on the dark footer). */
.site-footer p, .footer-top p, .footer-legal p, .footer-bottom p { color: #F5F3FA; }
.site-footer p a, .footer-legal p a, .footer-bottom p a { color: #FFFFFF; }
.domain-sale-note { background: rgba(255,46,147,.12); border: 1px dashed rgba(255,46,147,.4); border-radius: var(--radius-sm); padding: 10px 16px; font-size: .78rem; margin-top: 18px; }
.domain-sale-note a { color: #FF9BC8; font-weight: 700; }

/* Newsletter block */
.newsletter-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px; }
.newsletter-box #mc_embed_signup { background: transparent !important; }
.newsletter-box #mc_embed_signup * { color: #F5F3FA; }
.newsletter-box #mc_embed_signup h2 { color: #fff; font-family: var(--font-display); font-size: 1rem; }
.newsletter-box input[type=email], .newsletter-box input[type=text] { width:100%; padding: 10px 12px; border-radius: 8px; border:1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color:#fff; margin-bottom:8px; }
.newsletter-box input[type=submit] { background: var(--pink-600); color:#fff; border:none; padding: 10px 18px; border-radius: var(--radius-pill); font-weight:800; cursor:pointer; font-family: var(--font-display); }
.newsletter-box .indicates-required, .newsletter-box p { font-size: .74rem; color: #F5F3FA; }
.newsletter-box label { font-size: .78rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left:16px; right:16px; bottom:16px; z-index: 900; max-width: 620px; margin: 0 auto; background:#fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border:1px solid var(--gray-200); padding: 22px; transform: translateY(140%); transition: transform .4s var(--ease); }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: .85rem; margin-bottom: 14px; }
.cookie-actions { display:flex; gap:10px; flex-wrap:wrap; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 380; width: 60px; height:60px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 26px rgba(37,211,102,.45); color:#fff; text-decoration:none; font-size:1.6rem; transition: transform .2s var(--ease); }
.whatsapp-float:hover { transform: scale(1.08); color:#fff; }

/* ---------- Stat / trust strip ---------- */
.stat-strip { display:flex; justify-content:space-between; flex-wrap:wrap; gap: 24px; padding: 30px 0; }
.stat-strip div { text-align:center; flex:1; min-width:140px; }
.stat-strip strong { display:block; font-family: var(--font-display); font-size: 2rem; color: var(--pink-700); }
.stat-strip span { font-size: .82rem; color: var(--gray-600); font-weight:600; }

/* ---------- Misc content pages ---------- */
.prose { max-width: 76ch; }
.prose h2 { margin-top: 1.4em; }
.two-col { display:grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items:start; }
@media (max-width: 980px) { .two-col { grid-template-columns: 1fr; } }
.side-cta { position: sticky; top: calc(var(--header-h) + 20px); background: var(--gray-50); border:1px solid var(--gray-200); border-radius: var(--radius); padding: 22px; }
.side-cta h3 { font-size:1.05rem; }
.benefit-list { list-style:none; padding:0; margin:0; }
.benefit-list li { display:flex; gap:10px; padding: 8px 0; border-bottom: 1px dashed var(--gray-200); font-size:.92rem; }
.benefit-list li::before { content:'✓'; color: var(--mint); background: #E1FBF3; width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:900; flex-shrink:0; }

.pill-row { display:flex; flex-wrap:wrap; gap:10px; }
.pill { background: var(--pink-100); color: var(--pink-700); padding: 6px 14px; border-radius: var(--radius-pill); font-size:.8rem; font-weight:700; text-decoration:none; }
.pill:hover { background: var(--pink-600); color:#fff; }

.callout { background: var(--lilac); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--lilac-600); font-size:.92rem; }
.callout strong { color: var(--ink); }

.loading-skel { background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 37%, var(--gray-100) 63%); background-size: 400% 100%; animation: skel 1.4s ease infinite; border-radius: var(--radius); }
@keyframes skel { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

.empty-state { text-align:center; padding: 60px 20px; color: var(--gray-600); }

/* Vehicle finder wizard */
.vf-step { display: none; }
.vf-step:first-child { display: block; }

/* Section divider wave-ish accent */
.accent-bar { height: 6px; width: 64px; background: linear-gradient(90deg, var(--pink), var(--sky)); border-radius: 4px; margin-bottom: 18px; }

/* ---------- Vehicle card: contract bubble, term chips, initial rental ---------- */
.veh-contract-bubble { background: var(--pink-600); color: #fff; }
.veh-initial-rental { font-size: .78rem; color: var(--gray-600); margin-top: 4px; font-weight: 600; }

/* ---------- VAT display toggle ---------- */
.vat-toggle { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; padding: 10px 14px; background: var(--pink-50); border: 1px solid var(--pink-100); border-radius: var(--radius-pill); width: fit-content; }
.vat-toggle-label { font-size: .82rem; font-weight: 700; color: var(--gray-700); margin-right: 2px; }
.vat-toggle-btn { border: 1.5px solid var(--gray-200); background: #fff; color: var(--gray-700); font-weight: 700; font-size: .82rem; padding: 7px 16px; border-radius: var(--radius-pill); cursor: pointer; transition: all .15s var(--ease); }
.vat-toggle-btn:hover { border-color: var(--pink-600); }
.vat-toggle-btn.is-active { background: var(--pink-600); border-color: var(--pink-600); color: #fff; }

/* ---------- Enquire Now modal ---------- */
.enquiry-modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(21,14,35,.62); display: flex; align-items: center; justify-content: center; padding: 20px; }
.enquiry-modal-overlay[hidden] { display: none; }
body.modal-open { overflow: hidden; }
.enquiry-modal { position: relative; background: #fff; border-radius: var(--radius); max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px 28px; box-shadow: var(--shadow-lg); }
.enquiry-modal h2 { margin-bottom: 6px; }
.enquiry-modal-vehicle { color: var(--pink-700); font-weight: 700; margin-bottom: 18px; font-size: .95rem; }
.enquiry-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--gray-100); color: var(--gray-700); font-size: 1.3rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.enquiry-modal-close:hover { background: var(--pink-100); color: var(--pink-700); }
.enquiry-form { display: flex; flex-direction: column; gap: 14px; }
.enquiry-form label { display: flex; flex-direction: column; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--gray-900); }
.enquiry-form .optional { font-weight: 500; color: var(--gray-600); }
.enquiry-form input[type=text], .enquiry-form input[type=tel], .enquiry-form input[type=email] { font-family: var(--font-body); font-size: .95rem; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); color: var(--ink); background: #fff; }
.enquiry-form input:focus { outline: 2px solid var(--pink-600); outline-offset: 1px; border-color: var(--pink-600); }
.enquiry-checkbox { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 600 !important; }
.enquiry-checkbox input { margin-top: 3px; }
.enquiry-form-note { font-size: .78rem; color: var(--gray-600); text-align: center; margin-top: -4px; }

/* ---------- Manufacturer hub tiles (live-stock aware) ---------- */
[data-manufacturer-tile] { transition: opacity .2s var(--ease); }
.manufacturer-count { display: block; font-size: .74rem; font-weight: 700; color: var(--pink-700); margin-top: 4px; }

/* ---------- Motion polish ---------- */

/* Staggered reveal cascade inside grids — each successive card/tile
   animates in slightly after the previous one, for a more polished feel. */
.grid > .reveal:nth-child(1), .grid > .reveal:nth-child(1) { transition-delay: 0s; }
.grid > .reveal:nth-child(2) { transition-delay: .08s; }
.grid > .reveal:nth-child(3) { transition-delay: .16s; }
.grid > .reveal:nth-child(4) { transition-delay: .24s; }
.grid > .reveal:nth-child(5) { transition-delay: .32s; }
.grid > .reveal:nth-child(6) { transition-delay: .4s; }
.pill-row > .reveal:nth-child(n) { transition-delay: calc(var(--i, 0) * 0.05s); }

/* Floating hero blobs — subtle, slow, ambient motion behind the hero copy */
.hero::before { animation: float-blob-a 14s ease-in-out infinite; }
.hero::after { animation: float-blob-b 18s ease-in-out infinite; }
@keyframes float-blob-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, 22px) scale(1.08); }
}
@keyframes float-blob-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -18px) scale(1.06); }
}

/* Vehicle card hover lift + image zoom */
.veh-card { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.veh-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.veh-media { overflow: hidden; }
.veh-media img { transition: transform .4s var(--ease); position: relative; z-index: 1; }
.veh-card:hover .veh-media img { transform: scale(1.06); }

/* Logo mark gentle hover tilt */
.brand:hover .logo-mark svg { transform: rotate(-4deg) scale(1.05); }
.logo-mark svg { transition: transform .3s var(--ease); }

/* WhatsApp float button — soft attention pulse */
.whatsapp-float { animation: wa-pulse 3.2s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 10px rgba(37,211,102,.14); }
}

/* Nav dropdown caret + link micro-interaction already handled; add gentle
   underline sweep for footer/inline text links */
.dropdown a { transition: background .18s var(--ease), color .18s var(--ease), padding-left .18s var(--ease); }
.dropdown a:hover { padding-left: 16px; }

/* Enquiry modal entrance */
.enquiry-modal { animation: modal-in .28s var(--ease); }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .whatsapp-float { animation: none !important; }
}

/* ---------- Car / Van quick-toggle (Browse Vehicles + listing pages) ---------- */
.veh-type-toggle { display:flex; gap:8px; margin-bottom: 16px; flex-wrap: wrap; }
.veh-type-btn { border: 1.5px solid var(--gray-200); background:#fff; color: var(--gray-700); font-weight:700; font-size:.86rem; padding: 9px 20px; border-radius: var(--radius-pill); cursor:pointer; transition: all .15s var(--ease); font-family: var(--font-display); }
.veh-type-btn:hover { border-color: var(--pink-600); }
.veh-type-btn.is-active { background: var(--pink-600); border-color: var(--pink-600); color: #fff; }
