/* ============================================================
   EasyRide Rentals — Main Stylesheet
   Complete styles for index.html and all sections
   ============================================================ */

:root {
  --navy:        #0A2A4A;
  --navy-deep:   #061B30;
  --green:       #00A86B;
  --green-deep:  #00824F;
  --amber:       #FFB23F;
  --paper:       #F7F9FA;
  --ink:         #0F1B2A;
  --ink-soft:    #4A5A6A;
  --line:        #E3E9ED;
  --silver:      #E8EDF1;
  --white:       #FFFFFF;
  --font-display:'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --maxw:        1240px;
  --radius:      12px;
  --shadow-sm:   0 1px 4px rgba(10,42,74,0.08);
  --shadow-md:   0 4px 20px rgba(10,42,74,0.12);
  --shadow-lg:   0 12px 48px rgba(10,42,74,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: underline; text-decoration-color: rgba(0,130,79,0.3); }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 6px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.18s ease;
  white-space: nowrap; line-height: 1.2;
}
.btn--primary {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn--primary:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; text-decoration: none; }
.btn--outline {
  background: transparent; color: var(--navy); border-color: var(--line);
}
.btn--outline:hover { border-color: var(--green); color: var(--green-deep); text-decoration: none; }
.btn--ghost {
  background: transparent; color: var(--navy); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--navy); background: var(--silver); text-decoration: none; }
.btn--sm  { font-size: 13px; padding: 8px 16px; }
.btn--lg  { font-size: 16px; padding: 15px 28px; }
.btn--block { width: 100%; }

/* ===== EYEBROWS & SECTION TITLES ===== */
.eyebrow {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-deep);
  margin-bottom: 10px; display: block;
}
.eyebrow--center { text-align: center; }
.section-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px); line-height: 1.1;
  color: var(--navy); letter-spacing: -0.01em;
}
.section-title--center { text-align: center; }
.section-sub {
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  max-width: 600px; margin: 12px 0 32px;
}
.section-sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy-deep); color: rgba(255,255,255,0.75);
  font-size: 12.5px; font-weight: 600; padding: 9px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.topbar__item { display: flex; align-items: center; gap: 7px; }
.topbar__item--deal strong { color: var(--amber); }
.topbar__item--deal a { color: var(--green); font-weight: 700; }
.topbar__icon { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(10,42,74,0.04);
}
.header__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__text {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  line-height: 1; color: var(--navy);
  display: flex; flex-direction: column;
}
.brand__sub { font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; color: var(--green); margin-top: 2px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  text-decoration: none; padding: 7px 12px; border-radius: 7px;
  transition: all 0.15s;
}
.nav a:hover { color: var(--navy); background: var(--silver); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header__actions .btn--ghost {
  font-size: 13.5px; padding: 9px 16px; color: var(--navy);
  border-color: var(--line);
}
.header__actions .btn--ghost:hover { border-color: var(--navy); }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 38px; height: 38px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 6px;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all 0.2s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px; border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-decoration: none; padding: 10px 14px; border-radius: 8px;
}
.mobile-nav a:hover { background: var(--silver); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--navy);
  overflow: hidden; padding: 0;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero__road {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 140%; height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,168,107,0.05) 100%);
  border-radius: 60% 60% 0 0;
}
.hero__sweep {
  position: absolute; border-radius: 50%;
}
.hero__sweep--1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,168,107,0.12) 0%, transparent 70%);
  top: -400px; right: -200px;
}
.hero__sweep--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,178,63,0.06) 0%, transparent 70%);
  bottom: -200px; left: -100px;
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 72px 24px 80px;
  display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center;
}

/* Hero copy */
.hero__copy .eyebrow { color: var(--green); margin-bottom: 16px; }
.hero__headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero__headline-accent { color: var(--green); }
.hero__sub {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7;
  color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 28px;
}
.hero__trustrow {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88); font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
}
.trust-pill strong { color: #fff; }
.trust-pill svg { flex-shrink: 0; }

/* Hero near-me */
.hero__nearme {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-top: 20px;
}
.hero__nearme span {
  font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.08em;
}
.hero__nearme a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  padding: 4px 11px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px; font-size: 12px; font-weight: 600; transition: all 0.15s;
}
.hero__nearme a:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }

/* ===== BOOKING WIDGET ===== */
.booker {
  background: #fff; border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow-lg);
}
.booker__heading {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--navy); margin-bottom: 18px;
}
.booker__tabs {
  display: flex; gap: 4px; background: var(--silver);
  border-radius: 9px; padding: 4px; margin-bottom: 20px;
}
.booker__tab {
  flex: 1; font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
  border: none; background: transparent; border-radius: 7px;
  padding: 9px 12px; cursor: pointer; transition: all 0.15s;
}
.booker__tab.is-active {
  background: #fff; color: var(--navy);
  box-shadow: 0 1px 4px rgba(10,42,74,0.1);
}
.booker__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field__label { font-size: 12px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.field__input {
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 8px;
  padding: 10px 12px; background: var(--paper); width: 100%;
  transition: border-color 0.15s;
  -webkit-appearance: none; appearance: none;
}
.field__input:focus { outline: none; border-color: var(--green); background: #fff; }
select.field__input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%234A5A6A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 32px;
}
.booker__note {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; line-height: 1.5;
}
.booker__note svg { flex-shrink: 0; color: var(--green-deep); }
.booker__protectionlink {
  display: block; text-align: center; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--green-deep);
}

/* ============================================================
   COMPARE STRIP
   ============================================================ */
.compare { background: var(--paper); padding: 80px 24px; }
.compare__inner { max-width: var(--maxw); margin: 0 auto; }
.compare__inner .section-title--center { margin: 8px 0 40px; }
.compare__table {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; background: #fff; border-radius: 16px;
  border: 1.5px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare__col { padding: 32px 28px; }
.compare__col--us { background: rgba(0,168,107,0.04); }
.compare__head { margin-bottom: 24px; }
.compare__tag {
  display: inline-block; font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.compare__tag--them { background: var(--silver); color: var(--ink-soft); }
.compare__tag--us   { background: rgba(0,168,107,0.12); color: var(--green-deep); }
.compare__list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare__list li { font-size: 15px; display: flex; align-items: center; gap: 10px; color: var(--ink); }
.compare__center {
  display: flex; align-items: center; justify-content: center;
  background: var(--silver);
}
.compare__vs {
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  color: var(--ink-soft); writing-mode: vertical-rl;
}
.check { color: var(--green); font-weight: 900; font-size: 16px; flex-shrink: 0; }
.x     { color: #C0392B;    font-weight: 900; font-size: 16px; flex-shrink: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--navy); padding: 88px 24px; }
.how__inner { max-width: var(--maxw); margin: 0 auto; }
.how .eyebrow { color: var(--green); }
.how .section-title--center { color: #fff; margin: 8px 0 56px; }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.how__step {
  text-align: center; position: relative;
}
.how__num {
  font-family: var(--font-display); font-weight: 900; font-size: 56px;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px;
  -webkit-text-stroke: 1px rgba(0,168,107,0.2);
}
.how__step h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 19px;
  color: #fff; margin-bottom: 10px;
}
.how__step p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.how__connector {
  position: absolute; top: 28px; right: -20px; width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(0,168,107,0.2));
}

/* ============================================================
   FLEET
   ============================================================ */
.fleet { padding: 88px 24px; background: var(--paper); }
.fleet__inner { max-width: var(--maxw); margin: 0 auto; }
.fleet__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.fleet__head-sub {
  max-width: 340px; font-size: 15px; line-height: 1.65; color: var(--ink-soft);
  margin-top: 4px;
}
.fleet__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

/* Car Cards */
.car-card {
  background: #fff; border-radius: 16px; border: 1.5px solid var(--line);
  overflow: hidden; position: relative; transition: box-shadow 0.2s, transform 0.2s;
}
.car-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.car-card--popular { border-color: var(--green); }
.car-card__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px; letter-spacing: 0.04em;
}
.car-card__art {
  height: 130px; display: flex; align-items: center; justify-content: center;
  padding: 12px 16px;
}
.car-card__art--economy { background: linear-gradient(135deg, #EEF2F5, #DDE5EB); }
.car-card__art--midsize { background: linear-gradient(135deg, #0D2A42, #163554); }
.car-card__art--suv     { background: linear-gradient(135deg, #0D4A30, #1A6B46); }
.car-card__art--cargo   { background: linear-gradient(135deg, #EEF2F5, #DDE5EB); }
.car-svg { width: 100%; height: 100%; overflow: visible; }
.car-card__body { padding: 18px 18px 20px; }
.car-card__class {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-deep); display: block; margin-bottom: 4px;
}
.car-card__body h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: var(--navy); margin-bottom: 4px;
}
.car-card__meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.car-card__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; }
.car-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: auto;
}
.car-card__price { font-size: 14px; color: var(--ink-soft); }
.car-card__price strong { font-size: 22px; font-weight: 900; color: var(--navy); }

/* ============================================================
   DEALS
   ============================================================ */
.deals { background: var(--navy); padding: 88px 24px; }
.deals__inner { max-width: var(--maxw); margin: 0 auto; }
.deals .eyebrow { color: var(--green); }
.deals .section-title--center { color: #fff; margin: 8px 0 8px; }
.deals .section-sub--center { color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.deals__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.deal-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s, border-color 0.2s;
}
.deal-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.deal-card--featured { background: rgba(0,168,107,0.14); border-color: var(--green); }
.deal-card__badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 4px 12px; border-radius: 100px; width: fit-content;
}
.deal-card__badge--hot,
.deal-card--featured .deal-card__badge { background: var(--green); color: #fff; }
.deal-card__icon { font-size: 32px; line-height: 1; }
.deal-card h3 {
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  color: #fff; margin: 0;
}
.deal-card__desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }
.deal-card__price { display: flex; align-items: baseline; gap: 5px; }
.deal-card__from { font-size: 13px; color: rgba(255,255,255,0.5); }
.deal-card__price strong {
  font-family: var(--font-display); font-size: 40px; font-weight: 900;
  color: #fff; line-height: 1;
}
.deal-card__per { font-size: 14px; color: rgba(255,255,255,0.6); }
.deal-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.deal-card__features li { font-size: 14px; color: rgba(255,255,255,0.75); }
.deal-card .btn--primary { margin-top: 4px; }
.deals__disclaimer {
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 32px; max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   PROTECTION PLANS
   ============================================================ */
.protection { padding: 88px 24px; background: var(--silver); }
.protection__inner { max-width: var(--maxw); margin: 0 auto; }
.protection__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.protection__head-sub {
  max-width: 360px; font-size: 15px; color: var(--ink-soft); line-height: 1.65;
  margin-top: 4px;
}
.protection__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.plan-card {
  background: #fff; border-radius: 16px; border: 1.5px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card--popular { border-color: var(--green); position: relative; }
.plan-card__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 100px;
}
.plan-card__head { padding: 24px 22px 18px; border-bottom: 1px solid var(--line); }
.plan-card__name {
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  color: var(--navy); display: block; margin-bottom: 6px;
}
.plan-card__price { font-size: 15px; color: var(--ink-soft); margin: 0; }
.plan-card__price strong { font-size: 26px; color: var(--navy); }
.plan-card__list { list-style: none; padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.plan-card__list li { font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.plan-card__foot { padding: 0 22px 22px; }
.plan-card__note { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.protection__footnote {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px; margin-top: 28px;
}
.protection__footnote svg { flex-shrink: 0; margin-top: 2px; color: var(--ink-soft); }
.protection__footnote p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { background: var(--green); padding: 56px 24px; }
.stats__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat {
  text-align: center; padding: 16px 40px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 44px); color: #fff; line-height: 1.1;
}
.stat__label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78); margin-top: 4px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 88px 24px; background: var(--paper); }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; }
.reviews__inner .section-title--center { margin: 8px 0 48px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: #fff; border-radius: 14px; border: 1.5px solid var(--line);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
}
.review-card__stars { color: var(--amber); font-size: 17px; letter-spacing: 2px; }
.review-card blockquote { margin: 0; padding: 0; }
.review-card blockquote p { font-size: 15px; color: var(--ink); line-height: 1.7; }
.review-card__who { font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-top: auto; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations { padding: 88px 24px; background: var(--silver); }
.locations__inner { max-width: var(--maxw); margin: 0 auto; }
.locations__inner .section-title--center { margin: 8px 0 8px; }
.locations__inner .section-sub--center { margin-bottom: 40px; }
.locations__grid { display: grid; gap: 24px; }
.locations__grid--two { grid-template-columns: 1fr 1fr; }
.location-card {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 16px; padding: 30px 28px;
}
.location-card__icon { font-size: 28px; margin-bottom: 8px; display: block; }
.location-card h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--navy); margin-bottom: 8px;
}
.location-card address {
  font-style: normal; font-size: 15px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 18px;
}
.location-card__details {
  list-style: none; display: flex; flex-direction: column;
  gap: 7px; margin-bottom: 22px;
}
.location-card__details li { font-size: 14px; color: var(--ink); }
.locations__service-area {
  background: #fff; border-radius: 12px; border: 1.5px solid var(--line);
  padding: 24px 28px; margin-top: 32px; text-align: center;
}
.locations__service-area h3 {
  font-family: var(--font-display); font-size: 17px; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
}
.locations__service-area p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }
.locations__service-area strong { color: var(--navy); }
.locations__contact {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-top: 32px;
  font-size: 16px; color: var(--ink);
}
.locations__contact a { font-weight: 700; color: var(--green-deep); }
.locations__contact svg { flex-shrink: 0; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 88px 24px; background: #fff; }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__inner .section-title--center { margin: 8px 0 48px; }
.faq__list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 12px; overflow: hidden; transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--green); }
.faq-item summary {
  font-size: 15.5px; font-weight: 700; color: var(--navy);
  padding: 18px 22px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--green-deep); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft);
  padding: 0 22px 20px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--navy); padding: 96px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,168,107,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 4vw, 42px); color: #fff;
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.cta p { font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.65; margin-bottom: 32px; }
.cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__btns .btn--ghost {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cta__btns .btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); padding: 60px 24px 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__name {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: #fff; margin-bottom: 4px;
}
.footer__tag { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer__address {
  font-style: normal; font-size: 13.5px; line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
.footer__address a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer__address a:hover { color: #fff; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer__col h4 {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 0; }
.footer__col a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; padding: 5px 0; transition: color 0.15s;
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy .hero__headline { font-size: clamp(32px, 6vw, 48px); }
  .booker { max-width: 540px; margin: 0 auto; }
  .compare__table { grid-template-columns: 1fr; }
  .compare__center { display: none; }
  .how__steps { grid-template-columns: 1fr; gap: 32px; }
  .how__connector { display: none; }
  .protection__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .deals__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header__actions { display: none; }
  .menu-toggle { display: flex; }
  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .locations__grid--two { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { gap: 0; }
  .stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 560px) {
  .topbar__item--deal { display: none; }
  .fleet__grid { grid-template-columns: 1fr; }
  .deals__grid { grid-template-columns: 1fr; }
  .booker__grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: 1; }
  .hero__nearme { display: none; }
  .cta__btns { flex-direction: column; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
