/* ==========================================================================
   MARLIMO — Chauffeur & Transportation Services
   Design tokens: navy #14151F (ink), gold #F2A71B (brand), cream #FAF6EC
   Display: Marcellus | Body: Jost | Arabic: Tajawal
   ========================================================================== */

:root {
  --navy-950: #0b0c14;
  --navy-900: #14151f;
  --navy-800: #1d1f30;
  --navy-700: #2a2d45;
  --gold-600: #d98e10;
  --gold-500: #f2a71b;
  --gold-400: #f6bb47;
  --gold-100: #fcebc7;
  --cream: #faf6ec;
  --white: #ffffff;
  --ink: #14151f;
  --mist: #666a7d;
  --mist-light: #9195a8;
  --line: #e7e2d4;
  --whatsapp: #25d366;

  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --radius: 2px;
  --shadow-soft: 0 20px 50px -20px rgba(14, 15, 26, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(14, 15, 26, 0.18);
}

/* Arabic overrides */
html[lang="ar"] {
  --font-display: "Tajawal", "Arial", sans-serif;
  --font-body: "Tajawal", "Arial", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
html[lang="ar"] body { direction: rtl; text-align: right; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}
html[lang="ar"] .eyebrow::before { display: none; }
html[lang="ar"] .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-600);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(38px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
p { color: var(--mist); }
.lead { font-size: 19px; color: var(--mist); max-width: 640px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover { background: #1fb959; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--gold-100);
  font-size: 12.5px;
  letter-spacing: 0.03em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--gold-400); white-space: nowrap; }
.topbar-links { display: flex; gap: 20px; align-items: center; overflow-x: auto; max-width: 100%; scrollbar-width: none; }
.topbar-links::-webkit-scrollbar { display: none; }
.topbar-links span { opacity: 0.65; flex-shrink: 0; }
.lang-switch { display: flex; gap: 8px; }
.lang-switch a { opacity: 0.6; }
.lang-switch a.active { opacity: 1; color: var(--gold-500); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(242,167,27,0.15);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; border-radius: 4px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 21px;
  letter-spacing: 0.06em;
}
.brand-text span {
  color: var(--gold-500);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 15px;
  display: block;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-500); }
.main-nav .has-drop { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-800);
  min-width: 240px;
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  border-top: 2px solid var(--gold-500);
}
html[lang="ar"] .dropdown { left: auto; right: 0; }
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 10px 20px; font-size: 13px; text-transform: none; letter-spacing: 0.01em; }
.dropdown a:hover { background: rgba(242,167,27,0.08); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 11px 20px; font-size: 12.5px; }
.nav-phone { color: var(--gold-400); font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em; display: flex; align-items:center; gap:6px;}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all 0.25s ease; }
.nav-close { display: none; }

/* Backdrop shown behind the sliding mobile nav */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(11,12,20,0.6);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
  z-index: 998;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(100deg, rgba(11,12,20,0.94) 20%, rgba(11,12,20,0.55) 55%, rgba(242,167,27,0.28) 100%), var(--hero-image, url('../images/hero-banner.jpg'));
  background-size: cover;
  background-position: center;
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-content h1 { color: var(--white); max-width: 720px; }
.hero-content h1 em { color: var(--gold-500); font-style: normal; }
.hero-content .lead { color: rgba(255,255,255,0.78); margin-top: 20px; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-cities {
  display: flex; gap: 26px; margin-top: 56px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px;
}
.hero-cities span { color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; display:flex; align-items:center; gap:6px;}
.hero-cities span::before { content:"◆"; color: var(--gold-500); font-size: 8px; }

/* ---------- Trust / stats strip ---------- */
.trust-strip { background: var(--navy-900); border-top: 1px solid rgba(242,167,27,0.15); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 30px 0;
}
.trust-item { text-align: center; padding: 0 14px; border-inline-start: 1px solid rgba(255,255,255,0.1); color: var(--white); }
.trust-item:first-child { border-inline-start: none; }
.trust-item .num { font-family: var(--font-display); font-size: 30px; color: var(--gold-500); display:block; }
.trust-item .label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-950); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.65); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Route / city strip (signature element) ---------- */
.route-strip { position: relative; padding: 50px 0 20px; }
.route-line {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; margin-top: 10px;
}
.route-line::before {
  content: "";
  position: absolute; top: 11px; left: 4%; right: 4%;
  height: 1px;
  background-image: linear-gradient(to right, var(--gold-500) 40%, transparent 0%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
}
.route-stop { position: relative; text-align: center; flex: 1; z-index: 2; }
.route-stop .dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy-900); border: 2px solid var(--gold-500);
  margin: 0 auto 14px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-500); font-size: 11px; font-family: var(--font-display);
}
.route-stop strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--navy-900); }
.route-stop span { font-size: 12px; color: var(--mist-light); text-transform: uppercase; letter-spacing: 0.05em; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  transition: all 0.25s ease;
  position: relative;
}
.service-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-card); transform: translateY(-4px); }
.service-card .icon {
  width: 52px; height: 52px; border: 1.5px solid var(--gold-500); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--gold-600); font-size: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card a.more { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-600); font-weight: 600; }

.city-card {
  position: relative; overflow: hidden; background: var(--navy-900);
  min-height: 280px; display: flex; align-items: flex-end; padding: 28px;
}
.city-card::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,12,20,0.1), rgba(11,12,20,0.92)); }
.city-card-inner { position: relative; z-index: 2; color: var(--white); width: 100%; }
.city-card-inner .tag { color: var(--gold-500); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em; }
.city-card-inner h3 { color: var(--white); margin: 6px 0 10px; }
.city-card-inner a { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-400); font-weight: 600; }

/* Fleet */
.fleet-card { border: 1px solid var(--line); background: var(--white); }
.fleet-card .fleet-media { background: var(--navy-950); height: 190px; display:flex; align-items:center; justify-content:center; color: var(--gold-500); font-family: var(--font-display); font-size: 15px; letter-spacing: 0.05em;}
.fleet-card .fleet-body { padding: 26px; }
.fleet-card h3 { margin-bottom: 8px; }
.fleet-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 18px; }
.fleet-tags span { font-size: 11.5px; background: var(--cream); border:1px solid var(--line); padding: 5px 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--mist);}

/* Testimonials */
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); padding: 34px; position: relative;
}
.testimonial-card .stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 16px; font-size: 14px; }
.testimonial-card p.quote { color: var(--navy-800); font-size: 15.5px; font-style: italic; margin-bottom: 22px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy-900); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px;
}
.testimonial-card .who strong { display: block; font-size: 14px; color: var(--navy-900); }
.testimonial-card .who span { font-size: 12px; color: var(--mist-light); }

/* Process / steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step { padding: 0 24px; position: relative; }
.step .step-num { font-family: var(--font-display); font-size: 44px; color: var(--gold-100); display:block; margin-bottom: 8px; }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; }

/* CTA band */
.cta-band { background: var(--gold-500); padding: 60px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.cta-band h2 { color: var(--navy-950); font-size: 30px; max-width: 520px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-navy:hover { background: var(--navy-950); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-900); font-weight: 600; }

/* Phone field with country-code select */
.phone-row { display: flex; gap: 8px; }
.phone-row select.country-code { flex: 0 0 118px; }
.phone-row input[type="tel"] { flex: 1; }

/* Duration option pills (Chauffeur Service page) */
.duration-options { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.duration-options a {
  border: 1.5px solid var(--gold-500); color: var(--navy-900); background: var(--white);
  padding: 12px 22px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.03em;
  transition: all 0.2s ease;
}
.duration-options a:hover { background: var(--gold-500); color: var(--navy-950); }

/* Fleet vehicle picker on the booking page */
.vehicle-picker { margin-bottom: 30px; }
.vehicle-picker-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.vehicle-picker-grid .option { position: relative; }
.vehicle-picker-grid label {
  border: 1.5px solid var(--line); padding: 16px 12px; text-align: center; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--navy-900); transition: all 0.2s ease; display: block;
}
.vehicle-picker-grid input { position: absolute; opacity: 0; pointer-events: none; }
.vehicle-picker-grid input:checked + label,
.vehicle-picker-grid label:hover { border-color: var(--gold-500); background: var(--gold-100); }

/* Fleet grouped-by-category headings */
.fleet-category-heading { margin: 60px 0 28px; text-align: center; }
.fleet-category-heading:first-child { margin-top: 0; }
.fleet-category-heading h3 { font-size: 24px; }
.fleet-category-heading span { color: var(--gold-600); text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; }

.field input, .field select, .field textarea {
  border: 1px solid var(--line); padding: 13px 14px; font-family: var(--font-body); font-size: 14.5px; background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold-500); outline-offset: 1px; border-color: var(--gold-500); }
.field-full { grid-column: 1 / -1; }

/* Contact info blocks */
.contact-block { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-block .ic { width: 42px; height: 42px; border: 1.5px solid var(--gold-500); border-radius: 50%; display:flex; align-items:center; justify-content:center; color: var(--gold-600); flex-shrink:0; }
.contact-block strong { display: block; color: var(--navy-900); margin-bottom: 4px; font-size: 15px; }
.contact-block p, .contact-block a { font-size: 14px; }
.contact-block a:hover { color: var(--gold-600); }

.map-embed { width: 100%; height: 360px; border: 1px solid var(--line); filter: grayscale(0.15); }

/* Breadcrumb / page header */
.page-hero {
  background: var(--navy-950); color: var(--white); padding: 60px 0 46px;
  background-image: linear-gradient(120deg, rgba(11,12,20,0.95), rgba(11,12,20,0.75)), var(--hero-image, url('../images/hero-banner.jpg'));
  background-size: cover; background-position: center 30%;
}
.page-hero .crumb { font-size: 12.5px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; margin-bottom: 14px; }
.page-hero .crumb a:hover { color: var(--gold-400); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.4vw, 48px); }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 12px; max-width: 620px; }

/* Blog */
.blog-card { border: 1px solid var(--line); background: var(--white); }
.blog-card .blog-media { height: 190px; background: var(--navy-900); display:flex;align-items:center;justify-content:center; color: var(--gold-500); font-family: var(--font-display); }
.blog-card .blog-body { padding: 26px; }
.blog-card .meta { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-600); margin-bottom: 10px; }
.blog-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 40px 0 16px; }
.article-body p { margin-bottom: 18px; font-size: 16px; color: var(--mist); }
.article-body ul { margin: 0 0 18px; padding-inline-start: 20px; }
.article-body li { list-style: disc; margin-bottom: 8px; color: var(--mist); }
html[lang="ar"] .article-body li { padding-inline-start: 6px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary { font-family: var(--font-display); font-size: 17px; color: var(--navy-900); cursor: pointer; list-style: none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold-600); font-size: 22px; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 14px; font-size: 14.5px; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); padding-top: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { margin: 18px 0 20px; font-size: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display:flex;align-items:center;justify-content:center; font-size: 13px; color: rgba(255,255,255,0.85); transition: all 0.2s ease; }
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-500); background: rgba(242,167,27,0.08); }
.footer-col h4 { color: var(--white); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600;}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: var(--gold-500); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: var(--gold-500); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  animation: wa-pulse 2.6s infinite;
}
html[lang="ar"] .wa-float { right: auto; left: 26px; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Sticky mobile call bar */
.mobile-callbar { display: none; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-gold { color: var(--gold-600); }
.badge-row { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; margin-top: 10px;}
.badge-row .b-item { font-size: 12.5px; color: var(--mist); text-transform: uppercase; letter-spacing: 0.05em; display:flex; align-items:center; gap:8px;}
.badge-row .b-item::before { content:"✓"; color: var(--gold-600); font-weight: 700;}

/* ---------- Responsive ---------- */
/* Tablet & below: switch to burger nav well before items would overflow */
@media (max-width: 1220px) {
  .burger { display: flex; }
  .nav-cta .nav-phone { display: none; }

  /* Slide-in mobile nav panel */
  .main-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 84%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--navy-950);
    z-index: 999;
    padding: 90px 26px 40px;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: -12px 0 40px rgba(0,0,0,0.35);
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border-top: none; background: rgba(255,255,255,0.03);
    padding: 0; min-width: 0;
  }
  .main-nav .has-drop.open-sub .dropdown { display: block; }
  .main-nav .dropdown a { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-close {
    display: block; position: absolute; top: 22px; right: 22px;
    background: none; border: none; color: var(--gold-500); font-size: 22px; padding: 8px;
  }
}
/* Tablet-specific grid tuning: 2-up instead of collapsing straight to 1 */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .trust-item { border-inline-start: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 0;}
  .route-line { flex-wrap: wrap; gap: 24px 0; }
  .route-line::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}
/* Phone: single column everywhere */
@media (max-width: 640px) {
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 70px 0 50px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 44px 0; }
  h1 { font-size: 32px; }
  .brand-text strong { font-size: 18px; }
  .brand img { height: 42px; }
  .cta-band h2 { font-size: 24px; }
  .map-embed { height: 260px; }
}
@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .btn { padding: 13px 22px; font-size: 12.5px; }
}
