/* ============================================================
   AO PLATINUM CHAUFFEURS — Design System
   Palette: near-black stage, brushed-silver, warm brass/gold
   Type: Cormorant Garamond (display, engraved-metal feel)
         Jost (body/nav, clean geometric sans)
   Signature motif: the "swept ribbon" underline (from the AQ
   monogram's trailing road-lines) used as a section divider
   and hover state throughout.
   ============================================================ */

:root {
  --black: #060606;
  --black-2: #0e0e0f;
  --charcoal: #16171a;
  --charcoal-2: #1f2023;
  --hairline: #2a2b2f;
  --silver: #c7ccd1;
  --silver-dim: #8b9096;
  --gold: #c9a961;
  --gold-bright: #e8d9a8;
  --gold-deep: #9c7f3f;
  --off-white: #f3f1ec;
  --shadow: rgba(0, 0, 0, 0.55);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--off-white);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em; color: var(--silver); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

/* Signature ribbon divider — echoes the AQ monogram's swept road-lines */
.ribbon {
  position: relative;
  height: 14px;
  width: 100%;
  max-width: 260px;
  margin: 28px auto;
  opacity: 0.9;
}
.ribbon svg { width: 100%; height: 100%; display: block; }
.ribbon.left { margin: 28px 0; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 24px rgba(201, 169, 97, 0.35);
}
.btn.solid {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  border-color: transparent;
}
.btn.solid:hover { filter: brightness(1.08); box-shadow: 0 0 28px rgba(201, 169, 97, 0.45); }
.btn.ghost { border-color: var(--hairline); color: var(--off-white); }
.btn.ghost:hover { border-color: var(--gold); background: transparent; color: var(--gold-bright); box-shadow: none; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--hairline);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(10px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 84px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s ease;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li.active > a { color: var(--gold-bright); }
.main-nav > ul > li.active > a { position: relative; }
.main-nav > ul > li.active > a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.main-nav > ul > li > a { position: relative; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  box-shadow: 0 18px 40px var(--shadow);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border-left: 2px solid transparent;
}
.dropdown-menu a:hover { color: var(--gold-bright); border-left-color: var(--gold); background: rgba(201,169,97,0.06); }

.nav-cta { margin-left: 12px; }
.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 980px) {
  .main-nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); flex-direction: column; align-items: stretch; padding: 20px 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav > ul > li > a { padding: 16px 4px; border-bottom: 1px solid var(--hairline); }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; border: none; background: var(--black-2); }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-cta { margin: 20px 4px 0; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 24px; height: 1.5px; background: var(--off-white); }
}
@media (min-width: 981px) { .nav-toggle { display: none; } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.4) 48%, rgba(6,6,6,0.12) 100%);
}
.hero.side-fade::after {
  background: linear-gradient(90deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.4) 48%, rgba(6,6,6,0.12) 100%);
}
.hero h1, .hero p.lead, .hero .eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,0.7); }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 120px 32px 90px;
  margin: 0;
  padding-left: max(32px, calc((100vw - 1240px) / 2 + 32px));
}
.hero.small { min-height: 46vh; }
.hero.small .hero-inner { padding-top: 90px; padding-bottom: 60px; }
.hero p.lead { font-size: 1.15rem; color: var(--silver); max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ---- Split hero (home page): text left, vehicle image right ---- */
.hero-split {
  position: relative;
  background: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 32px 0 max(32px, calc((100vw - 1240px) / 2 + 32px));
}
.hero-split-copy { padding-bottom: 76px; }
.hero-split .grad-gold {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-split-media { position: relative; align-self: end; }
.hero-split-media img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero-split-media::before {
  content: "";
  position: absolute;
  inset: -10% -10% 10% -10%;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,169,97,0.14), transparent 65%);
  z-index: 0;
}
@media (max-width: 900px) {
  .hero-split-grid { grid-template-columns: 1fr; padding-top: 56px; padding-left: 32px; }
  .hero-split-copy { padding-bottom: 24px; }
  .hero-split-media { order: -1; max-width: 420px; margin: 0 auto; }
}

/* ---- Feature strip: icon row with vertical dividers ---- */
.feature-strip { border-top: 1px solid var(--hairline); background: var(--black-2); }
.feature-strip-row { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1240px; margin: 0 auto; }
.feature-strip-item { display: flex; align-items: flex-start; gap: 14px; padding: 30px 26px; border-left: 1px solid var(--hairline); }
.feature-strip-item:first-child { border-left: none; }
.feature-strip-item .icon { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.feature-strip-item h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--off-white); margin: 0 0 6px; }
.feature-strip-item p { font-size: 0.85rem; margin: 0; color: var(--silver-dim); }
@media (max-width: 900px) {
  .feature-strip-row { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-item:nth-child(3) { border-left: none; }
}
@media (max-width: 560px) {
  .feature-strip-row { grid-template-columns: 1fr; }
  .feature-strip-item { border-left: none; border-top: 1px solid var(--hairline); }
  .feature-strip-item:first-child { border-top: none; }
}

/* ---------------- Sections ---------------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.section-head { text-align: left; max-width: 680px; margin: 0 0 48px; }
.section-head.center { text-align: center; margin: 0 auto 56px; }
.section-head .eyebrow { justify-content: flex-start; }
.section-head.center .eyebrow { justify-content: center; }

.bg-alt { background: var(--black-2); }
.bg-charcoal { background: var(--charcoal); }
.bordered-y { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

/* Grids */
.grid { display: grid; gap: 28px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

/* Cards */
.card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  padding: 34px 28px;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.card .icon { width: 40px; height: 40px; margin-bottom: 20px; color: var(--gold); }
.card h3 { margin-bottom: 10px; }
.card a.more { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }

.service-card { display: block; }

/* Stats */
.stats { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-bright); line-height: 1; }
.stat .label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-dim); margin-top: 8px; }

/* Vehicle card */
.vehicle {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--hairline);
}
.vehicle:last-child { border-bottom: none; }
.vehicle.reverse { grid-template-columns: 1fr 1.1fr; }
.vehicle.reverse .vehicle-copy { order: 2; }
.vehicle.reverse .vehicle-img { order: 1; }
.vehicle-img {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.vehicle-img img { width: 100%; height: 100%; object-fit: contain; }
.vehicle-copy .cap { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.vehicle.featured { background: linear-gradient(180deg, rgba(201,169,97,0.06), transparent); border-radius: 4px; margin: 0 -24px; padding: 56px 24px; }
.favourite-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--black);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.spec-tags span { border: 1px solid var(--hairline); color: var(--silver); font-size: 0.76rem; padding: 5px 12px; border-radius: 999px; }
@media (max-width: 780px) {
  .vehicle.featured { margin: 0; padding: 40px 0; }
}
@media (max-width: 780px) {
  .vehicle, .vehicle.reverse { grid-template-columns: 1fr; }
  .vehicle.reverse .vehicle-copy, .vehicle.reverse .vehicle-img { order: initial; }
}

/* Testimonials */
.testimonial {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  padding: 34px;
  border-radius: var(--radius);
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.testimonial .who { color: var(--gold-bright); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 16px; }

/* Accordion (FAQ) */
.accordion-group { margin-bottom: 44px; }
.accordion-group > .group-title { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.accordion-item { border-bottom: 1px solid var(--hairline); }
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--off-white);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-item .answer { padding: 0 0 22px; max-width: 760px; }

/* Forms */
.form-panel {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  padding: 40px;
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-dim); }
.field input, .field select, .field textarea {
  background: var(--black-2);
  border: 1px solid var(--hairline);
  color: var(--off-white);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.8rem; color: var(--silver-dim); margin-top: 16px; }

/* Info list */
.policy-body h2 { margin-top: 2em; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body ul { color: var(--silver); padding-left: 22px; }
.policy-body li { margin-bottom: 8px; }

/* Location strip */
.loc-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.loc-strip a {
  padding: 9px 20px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}
.loc-strip a:hover { border-color: var(--gold); color: var(--gold-bright); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: 90px 0;
  background: radial-gradient(ellipse at center, rgba(201,169,97,0.10), transparent 65%), var(--black-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--hairline); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a, .footer-grid p { color: var(--silver-dim); font-size: 0.9rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 44px; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--hairline); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--silver); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-bright); }
.footer-badges { display: flex; align-items: center; gap: 18px; }
.footer-badges img { height: 40px; background: #fff; padding: 5px; border-radius: 3px; }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--silver-dim);
}
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-bright); }

/* Breadcrumb */
.crumb { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 18px; }
.crumb a:hover { color: var(--gold); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--silver-dim); }

/* ---------------- Blog ---------------- */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card .meta { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-dim); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.3rem; }
.blog-card p { flex-grow: 1; }
.blog-post-hero { padding-bottom: 40px; }
.blog-post-meta { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.blog-body { max-width: 760px; }
.blog-body h2 { margin-top: 1.6em; font-size: 1.7rem; }
.blog-body ul { color: var(--silver); padding-left: 22px; }
.blog-body li { margin-bottom: 8px; }
.blog-cta { border: 1px solid var(--hairline); background: var(--charcoal); padding: 28px; border-radius: var(--radius); margin-top: 40px; }

/* ---------------- About / values ---------------- */
.value-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 780px) { .value-row { grid-template-columns: 1fr; } }
.value-row img { border-radius: 2px; }
.timeline { border-left: 1px solid var(--hairline); padding-left: 28px; margin-left: 6px; }
.timeline .t-item { position: relative; padding-bottom: 34px; }
.timeline .t-item::before { content: ""; position: absolute; left: -33px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-item .yr { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 26px; }
.contact-detail .icon { width: 22px; height: 22px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.contact-detail h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 4px; color: var(--off-white); }
.contact-detail p { margin: 0; }

/* ---------------- Photo gallery ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: 2px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
}
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; } .gallery-item.tall { grid-row: span 1; } }

/* ---------------- Google Reviews widget (Elfsight) ---------------- */
/* Best-effort text-colour override for the embedded review widget.
   Elfsight renders most of its UI in the light DOM, so these broad
   selectors usually catch it — but if Elfsight ever switches that
   widget to a closed Shadow DOM, page CSS can't reach inside it at
   all, and the colour has to be set from the Elfsight dashboard
   (Edit Widget → Appearance → Text color) instead. */
.reviews-widget-wrap,
.reviews-widget-wrap * {
  color: #ffffff !important;
}
.reviews-widget-wrap a { color: #e8d9a8 !important; }

/* ---------------- WhatsApp floating action button ---------------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0,0,0,0.55); }
.whatsapp-fab.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.8); }
.whatsapp-fab .icon { width: 30px; height: 30px; color: #fff; }
@media (max-width: 560px) {
  .whatsapp-fab { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-fab .icon { width: 26px; height: 26px; }
}

/* Infinity glyph used in the "wide range of vehicles" stat */
.icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.stat .num.infinity-glyph { display: inline-flex; align-items: center; justify-content: center; }
.stat .num.infinity-glyph img { width: 56px; height: auto; }

/* ---------------- Top announcement banner ---------------- */
.announce-bar {
  position: relative;
  background: linear-gradient(90deg, #16130a, #1c1710 50%, #16130a);
  border-bottom: 1px solid var(--hairline);
  color: var(--gold-bright);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 11px 44px 11px 16px;
}
.announce-bar strong { color: var(--off-white); font-weight: 600; }
.announce-bar .close-announce {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--silver);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}
.announce-bar .close-announce:hover { color: var(--gold-bright); }
body.announce-hidden .announce-bar { display: none; }

/* WhatsApp FAB icon as an image instead of inline SVG */
.whatsapp-fab img { width: 34px; height: 34px; border-radius: 50%; }
