:root {
  --primary:        #1E4FA3;
  --primary-dark:   #163a7c;
  --primary-light:  #3a6bc9;
  --accent:         #FFDF8C;
  --accent-dark:    #E8C158;
  --bg:             #F0F4FA;
  --surface:        #FFFFFF;
  --border:         #D1DCF0;
  --text:           #1A202C;
  --text-muted:     #6B7280;
  --radius:         10px;
  --radius-lg:      18px;
  --shadow:         0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:      0 20px 60px rgba(0,0,0,.18);
  --container:      1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.5px; line-height: 1.2; }
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }
p { color: var(--text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(30,79,163,.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .1s, color .15s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--primary-dark); }
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { background: rgba(30,79,163,.06); }
.btn:active { transform: translateY(1px); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Header / Nav ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}
.brand-accent { color: var(--accent-dark); }

.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active { background: rgba(30,79,163,.08); color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle { display: none; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: white;
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,223,140,.18), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero .eyebrow { background: rgba(255,255,255,.14); color: var(--accent); }
.hero h1 { font-size: 48px; margin-bottom: 20px; color: white; }
.hero p.lead { color: rgba(255,255,255,.85); font-size: 18px; max-width: 520px; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 30px; color: var(--accent); }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,.7); }

.hero-card {
  background: white;
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.hero-card h3 { margin-bottom: 6px; }
.hero-card p { margin-bottom: 20px; font-size: 14px; }
.hero-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.hero-card-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.hero-card-divider::before, .hero-card-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.hero-card-info { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.hero-card-info div { display: flex; gap: 10px; align-items: flex-start; }

/* ── Sections ────────────────────────────────────────── */
section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }

/* ── Cards / Grids ───────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,79,163,.08);
  color: var(--primary);
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 22px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* ── Fleet cards ─────────────────────────────────────── */
.fleet-card { overflow: hidden; padding: 0; }
.fleet-media {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  font-size: 46px;
}
.fleet-body { padding: 24px; }
.fleet-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag {
  font-size: 12px; font-weight: 600;
  background: rgba(30,79,163,.08); color: var(--primary);
  padding: 5px 10px; border-radius: 999px;
}

/* ── Testimonials ────────────────────────────────────── */
.quote-card { border-left: 4px solid var(--accent); }
.quote-stars { color: var(--accent-dark); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.quote-name { font-weight: 700; color: var(--text); margin-top: 14px; font-size: 14px; }
.quote-role { font-size: 12.5px; color: var(--text-muted); }

.gbp-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 32px;
}
.gbp-note strong { color: var(--primary-dark); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: 15px; }

/* ── CTA band ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: white; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 0; }

/* ── Contact ─────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(30,79,163,.08); color: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item h3 { font-size: 16px; margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; margin: 0; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 320px;
}
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ── Service area list ───────────────────────────────── */
.region-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.region-list li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 500;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-brand { color: white; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.footer-col h4 { color: white; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: white; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* ── WhatsApp floating button ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .15s;
}
.whatsapp-float:hover { transform: scale(1.05); color: white; }
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Page hero (interior pages) ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 56px 0;
}
.page-hero h1 { color: white; font-size: 36px; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.8); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  h1 { font-size: 32px; }
  .hero h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .main-nav { position: fixed; inset: 64px 0 0 0; background: white; padding: 24px; transform: translateX(100%); transition: transform .2s; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 14px 16px; font-size: 16px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; flex-shrink: 0; }
  .header-phone { display: none; }
  .header-cta { gap: 10px; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 13px; }
  .brand { font-size: 19px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cta-band { padding: 36px 24px; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; }
}
