/* ============================================================
   Nanje Yachts — Dubai yacht & boat charter (lead-gen)
   Palette keyed to the brand logo: marine navy, wave blue,
   crisp white, warm Dubai gold.
   ============================================================ */

:root {
  /* Core palette (from CLAUDE-DESIGN §1) */
  --bg: #0F2742;          /* deep marine navy */
  --surface: #FFFFFF;
  --surface-alt: #F4F7FA;
  --text: #0F2742;
  --muted: #5B7185;
  --primary: #2E78C4;     /* wave blue */
  --secondary: #172E4A;   /* deep navy */
  --accent: #D4A94A;      /* Dubai gold */
  --cta: #D4A94A;
  --border: #D9E2EC;
  --focus: #2E78C4;

  /* Derived */
  --navy-grad: linear-gradient(160deg, #143256 0%, #0F2742 55%, #0B1E33 100%);
  --gold-soft: #E7CB86;
  --gold-deep: #B98E2F;
  --ink-on-gold: #1A1304;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15,39,66,.06), 0 2px 6px rgba(15,39,66,.05);
  --shadow-md: 0 8px 24px rgba(15,39,66,.10), 0 2px 6px rgba(15,39,66,.06);
  --shadow-lg: 0 24px 60px rgba(15,39,66,.18), 0 6px 16px rgba(15,39,66,.10);
  --shadow-gold: 0 10px 30px rgba(184,142,47,.35);

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --nav-h: 76px;

  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  margin-top: 14px;
}
.section .lead {
  margin-top: 16px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
}

.btn {
  --btn-bg: var(--cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--ink-on-gold);
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--cta); color: var(--ink-on-gold); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(184,142,47,.45); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 10px 26px rgba(31,168,85,.32); }
.btn-wa:hover { transform: translateY(-2px); background: #1c9b4f; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); color:#fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 14px; min-height: 44px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--secondary);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--primary); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 2.5px; background: var(--secondary); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--navy-grad);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(20px,6vw,40px) 40px;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu .m-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(8,20,33,.92) 0%, rgba(10,24,40,.55) 42%, rgba(12,28,46,.18) 75%, rgba(12,28,46,.30) 100%),
    linear-gradient(105deg, rgba(11,26,43,.55) 0%, rgba(11,26,43,0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 92px);
  padding-top: 120px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(212,169,74,.25); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6.4vw, 76px);
  font-weight: 700;
  max-width: 16ch;
  letter-spacing: -0.025em;
}
.hero h1 .gold { color: var(--gold-soft); }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 2vw, 21px);
  max-width: 54ch;
  color: rgba(255,255,255,.9);
  font-weight: 350;
}
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Trust strip */
.trust {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 26px 0;
}
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1 1 220px; }
.trust-item .ti-ico {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--primary);
}
.trust-item .ti-ico svg { width: 22px; height: 22px; }
.trust-item .ti-k { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); }
.trust-item .ti-s { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   FLEET
   ============================================================ */
.alt { background: var(--surface-alt); }

.fleet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 9px 17px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--secondary);
  cursor: pointer;
  transition: all .2s ease;
  min-height: 42px;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }

.grid-fleet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 2.5vw, 30px);
}
.vcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-alt); }
.vcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.vcard:hover .vcard-media img { transform: scale(1.06); }
.vcard-size {
  position: absolute; top: 14px; left: 14px;
  background: rgba(15,39,66,.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
}
.vcard-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--accent);
  color: var(--ink-on-gold);
  font-weight: 600; font-size: 11.5px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.vcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.vcard-body h3 { font-size: 21px; font-weight: 600; }
.vcard-meta { display: flex; align-items: center; gap: 16px; margin-top: 10px; color: var(--muted); font-size: 14px; }
.vcard-meta span { display: inline-flex; align-items: center; gap: 6px; }
.vcard-meta svg { width: 16px; height: 16px; color: var(--primary); }
.vcard-foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vcard-price .vp-from { font-size: 12px; color: var(--muted); display: block; letter-spacing: .03em; }
.vcard-price .vp-amt { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--text); }
.vcard-price .vp-amt small { font-weight: 500; font-size: 13px; color: var(--muted); }
.vcard-price .vp-enq { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--primary); }

.indic-note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.indic-note svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ============================================================
   EXPERIENCES
   ============================================================ */
.grid-exp {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.exp {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.exp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.exp::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(8,20,33,.92) 0%, rgba(10,24,40,.45) 50%, rgba(10,24,40,.12) 100%);
}
.exp:hover img { transform: scale(1.07); }
.exp-body { padding: 26px; width: 100%; }
.exp-body h3 { color: #fff; font-size: 24px; font-weight: 600; }
.exp-body p { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.85); max-width: 40ch; }
.exp-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: .01em;
  color: #fff;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  min-height: 44px;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.exp-link:hover {
  background: var(--cta);
  border-color: var(--cta);
  color: var(--ink-on-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.exp-link svg { width: 16px; height: 16px; transition: transform .25s ease; }
.exp:hover .exp-link svg { transform: translateX(4px); }
.exp-tall { grid-column: span 6; min-height: 420px; }
.exp-wide { grid-column: span 6; }
.exp-third { grid-column: span 4; }

/* ============================================================
   WHY / SPLIT FEATURE
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split-media { position: relative; }
.split-media .sm-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 6;
}
.split-media .sm-main img { width: 100%; height: 100%; object-fit: cover; }
.split-media .sm-badge {
  position: absolute;
  right: -18px; bottom: -22px;
  background: var(--navy-grad);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  max-width: 240px;
}
.split-media .sm-badge .smb-k { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--gold-soft); }
.split-media .sm-badge .smb-s { font-size: 13.5px; color: rgba(255,255,255,.78); margin-top: 4px; }

.why-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 20px; }
.why-list li { display: flex; gap: 16px; }
.why-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-alt); color: var(--primary);
  border: 1px solid var(--border);
}
.alt .why-ico { background: #fff; }
.why-ico svg { width: 22px; height: 22px; }
.why-list h4 { font-family: var(--font-display); font-size: 17.5px; font-weight: 600; }
.why-list p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-grad);
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(212,169,74,.22), transparent 68%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 700; max-width: 18ch; }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,.82); max-width: 46ch; font-size: 17px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.cinfo-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 18px; }
.cinfo-list li { display: flex; gap: 15px; align-items: flex-start; }
.cinfo-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-alt); color: var(--primary);
  border: 1px solid var(--border);
}
.cinfo-ico svg { width: 21px; height: 21px; }
.cinfo-list .ci-k { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--text); }
.cinfo-list .ci-v { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.cinfo-list a.ci-v:hover { color: var(--primary); }

.map-ph {
  margin-top: 26px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, #fff 0 14px, #F4F7FA 14px 28px);
  min-height: 200px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.map-ph .mp-ico { width: 40px; height: 40px; color: var(--primary); margin: 0 auto 12px; }
.map-ph .mp-t { font-family: var(--font-display); font-weight: 600; color: var(--secondary); }
.map-ph .mp-s { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow-md);
}
.alt .form-card { box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--secondary); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--text);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: #9aabba; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,120,196,.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; }
.field .err { font-size: 12.5px; color: #d9534f; }
.form-foot { margin-top: 6px; }
.form-alt {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.form-alt a { color: var(--primary); font-weight: 600; }
.form-success {
  text-align: center;
  padding: 30px 10px;
}
.form-success .fs-ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(31,168,85,.12); color: #1FA855;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.form-success .fs-ico svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 23px; }
.form-success p { color: var(--muted); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-grad); color: rgba(255,255,255,.72); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(48px, 6vw, 76px) 0 44px;
}
.foot-logo-chip {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: inline-block;
  box-shadow: var(--shadow-md);
}
.foot-logo-chip img { height: 56px; width: auto; }
.footer .f-about { margin-top: 20px; font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a, .footer ul span { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .2s ease; }
.footer ul a:hover { color: var(--gold-soft); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.foot-contact svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  transition: all .2s ease;
}
.foot-social a:hover { background: var(--accent); color: var(--ink-on-gold); border-color: var(--accent); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom .fb-claim { color: rgba(255,255,255,.5); }

/* ============================================================
   MOBILE BOTTOM CTA BAR
   ============================================================ */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(15,39,66,.10);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--secondary);
  padding: 7px 4px;
  border-radius: 12px;
  min-height: 52px;
  justify-content: center;
  transition: background .2s ease;
}
.mobile-bar a svg { width: 21px; height: 21px; }
.mobile-bar a.mb-call { color: var(--primary); }
.mobile-bar a.mb-wa { color: #1FA855; }
.mobile-bar a.mb-quote {
  background: var(--cta);
  color: var(--ink-on-gold);
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8,20,33,.62);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: popIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-head {
  padding: 26px clamp(22px,4vw,34px) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.modal-head h3 { font-size: 24px; font-weight: 700; }
.modal-head p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.modal-close {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .2s ease;
}
.modal-close:hover { background: var(--surface-alt); color: var(--text); }
.modal-close svg { width: 18px; height: 18px; }
.modal-body { padding: 20px clamp(22px,4vw,34px) clamp(26px,4vw,34px); }
.modal-context {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 13.5px;
  color: var(--secondary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-context svg { width: 18px; height: 18px; color: var(--primary); flex: none; }
.modal-context b { color: var(--text); }

/* ============================================================
   ANIMATIONS (reveal on scroll)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .exp-tall, .exp-wide { grid-column: span 6; }
  .exp-third { grid-column: span 6; }
}

@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .nav-actions .btn:not(.nav-burger-keep) { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .split-media .sm-badge { right: 8px; bottom: -18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-flex { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .mobile-menu { padding-bottom: 90px; }
  .grid-exp { grid-template-columns: 1fr; }
  .exp-tall, .exp-wide, .exp-third { grid-column: span 1; min-height: 280px; }
  .exp-tall { min-height: 320px; }
  .hero { min-height: 86vh; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .trust-item { flex: 1 1 100%; }
  .grid-fleet { grid-template-columns: 1fr; }
  .nav-logo img { height: 42px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
