/* ══════════════════════════════════════════════════
   URBANIA IN DELHI — Design System v3.0
   File: assets/css/main.css
══════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:        #1a1f3a;
  --navy-dark:   #0d1128;
  --navy-mid:    #2d3561;
  --navy-light:  #3d4a8a;
  --gold:        #c9a84c;
  --gold-dark:   #a98527;
  --gold-light:  #f0d078;
  --gold-pale:   rgba(201,168,76,0.12);
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-50:     #fafafa;
  --gray-100:    #f4f4f6;
  --gray-200:    #e8e8ee;
  --gray-400:    #9090a8;
  --gray-600:    #5a5a72;
  --text-dark:   #1a1f3a;
  --text-body:   #4a4a5e;
  --green:       #25D366;
  --red:         #ef4444;

  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 999px;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.20);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.30);
  --shadow-gold-lg: 0 16px 50px rgba(201,168,76,0.40);

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.18s;
  --t-med:   0.35s;
  --t-slow:  0.65s;

  --header-h:   101px;
  --nav-h:      70px;
  --section-py: 90px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; font-size: 16px; overflow-x: clip; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); overflow-x: clip; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); background: rgba(240,208,120,0.1); border-color: rgba(240,208,120,0.2); }
.section-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0.6} }

.h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; line-height: 1.15; color: var(--text-dark); }
.h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 700; line-height: 1.22; color: var(--text-dark); margin-bottom: 18px; }
.h3 { font-family: var(--font-display); font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 700; line-height: 1.3; color: var(--text-dark); }
.h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.h1 .accent, .h2 .accent, .h3 .accent { color: var(--gold); }
.h1.light, .h2.light, .h3.light { color: var(--white); }

.body-lg { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); }
.body-md { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); }
.body-sm { font-size: 0.85rem; line-height: 1.7; color: var(--gray-600); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--r-full);
  padding: 12px 28px;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out), background var(--t-fast) ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--t-fast) ease;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); box-shadow: 0 4px 16px rgba(26,31,58,0.3); }
.btn-primary:hover { box-shadow: 0 10px 28px rgba(26,31,58,0.4); }

.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: var(--shadow-gold-lg); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); }

.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }

.btn-wa { background: var(--green); color: var(--white); }
.btn-wa:hover { background: #128C7E; box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-xs { padding: 7px 16px; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* Icon button */
.btn-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--t-med) var(--ease-spring);
  flex-shrink: 0;
}
.btn-icon:hover { transform: scale(1.1); }
.btn-icon.navy { background: var(--navy); color: white; }
.btn-icon.navy:hover { background: var(--gold); color: var(--navy-dark); }
.btn-icon.wa { background: var(--green); color: white; }
.btn-icon.wa:hover { background: #128C7E; box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

/* Magnetic button wrapper */
.mag-btn-wrap { display: inline-block; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out), border-color var(--t-fast) ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.4); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; position: relative; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease;
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: white; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239090a8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ── BADGE / TAG ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: var(--r-full); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); }
.badge-navy { background: var(--navy); color: white; }
.badge-green { background: rgba(37,211,102,0.12); color: #166534; border: 1px solid rgba(37,211,102,0.3); }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--gray-400); margin: 16px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* ── STAR RATING ── */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }

/* ── HERO GRADIENT ── */
.hero-gradient { background: linear-gradient(135deg, var(--navy-dark) 0%, #0f1525 40%, var(--navy) 100%); }
.hero-gold-accent { background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%); }

/* ══════════════════════════════════════════════
   LOADER
══════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: max(24px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 42%, rgba(45,53,97,0.72), transparent 43%),
    linear-gradient(145deg, #080b1d 0%, var(--navy-dark) 52%, #111936 100%);
  transition: opacity 0.46s var(--ease-out), visibility 0.46s ease, clip-path 0.58s var(--ease-out);
  clip-path: inset(0);
}
#loader::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.035) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: loaderSweep 1.8s ease-in-out infinite;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; clip-path: inset(0 0 100% 0); }

.loader-grid {
  position: absolute;
  inset: -10%;
  opacity: 0.26;
  background-image: linear-gradient(rgba(240,208,120,0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(240,208,120,0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(700px) rotateX(58deg) translateY(34%);
  mask-image: radial-gradient(circle, black 0%, transparent 67%);
}
.loader-aurora {
  position: absolute;
  width: min(68vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.13;
  animation: loaderAurora 4.8s ease-in-out infinite alternate;
}
.loader-aurora-one { left: -18%; top: -32%; background: var(--gold); }
.loader-aurora-two { right: -22%; bottom: -40%; background: #6776cd; animation-delay: -2.2s; }

.loader-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  text-align: center;
  padding: clamp(22px, 5vw, 38px);
  border: 1px solid rgba(240,208,120,0.16);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.09);
  animation: loaderPanelIn 0.55s var(--ease-spring) both;
}
.loader-emblem {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.loader-logo-image {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 16px 44px rgba(0,0,0,0.42), 0 0 0 1px rgba(240,208,120,0.36), 0 0 38px rgba(201,168,76,0.16);
  animation: loaderLogoIn 0.48s var(--ease-spring) both;
}
.loader-orbit { position: absolute; inset: 3px; border-radius: 50%; border: 1px solid rgba(240,208,120,0.26); }
.loader-orbit::before { content: ''; position: absolute; top: 11px; left: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 14px var(--gold); }
.loader-orbit.orbit-one { animation: loaderOrbit 3.6s linear infinite; }
.loader-orbit.orbit-two { inset: 13px; border-color: rgba(255,255,255,0.12); animation: loaderOrbit 4.6s linear infinite reverse; }
.loader-orbit.orbit-two::before { top: auto; left: auto; right: 3px; bottom: 23px; width: 5px; height: 5px; background: white; box-shadow: 0 0 12px rgba(255,255,255,0.7); }
.loader-spark { position: absolute; inset: 26px; border-radius: 30px; border: 1px solid rgba(240,208,120,0.16); animation: loaderSpark 1.7s ease-in-out infinite; }
.loader-kicker { margin-bottom: 9px; color: var(--gold-light); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0; animation: loaderFadeUp 0.42s ease 0.18s forwards; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 1.8vw, 12px);
  line-height: 1;
  margin-bottom: 13px;
  white-space: nowrap;
  animation: loaderBrandIn 0.4s var(--ease-spring) both;
}
.loader-logo .gold { color: var(--gold); }
.loader-logo .reveal-char { display: inline-block; opacity: 1; transform: none; }
.loader-logo .reveal-char.in { animation: loaderCharGlow 0.46s var(--ease-spring) both; }
.loader-divider { font-family: var(--font-body); font-size: 0.72rem; font-style: italic; font-weight: 600; color: rgba(255,255,255,0.36); }

.loader-tagline {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.52);
  margin-bottom: 25px;
  opacity: 0;
  animation: loaderFadeUp 0.42s ease 0.34s forwards;
}
.loader-route { width: min(100%, 270px); display: flex; align-items: center; margin: 0 auto 16px; color: var(--gold-light); opacity: 0; animation: loaderFadeUp 0.4s ease 0.4s forwards; }
.loader-pin { width: 9px; height: 9px; flex: 0 0 auto; border: 2px solid var(--gold-light); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.loader-route-line { position: relative; flex: 1; height: 1px; margin: 0 8px; overflow: hidden; background: rgba(255,255,255,0.1); }
.loader-route-glow { position: absolute; inset: 0 auto 0 -35%; width: 35%; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); animation: loaderRoute 0.75s ease-in-out infinite; }
.loader-van { width: 42px; height: 22px; flex: 0 0 auto; filter: drop-shadow(0 0 10px rgba(240,208,120,0.25)); }

.loader-progress {
  width: min(100%, 270px);
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 13px;
}
.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), white);
  background-size: 180% 100%;
  border-radius: inherit;
  width: 0;
  box-shadow: 0 0 13px rgba(240,208,120,0.45);
  animation: progressFill 0.82s var(--ease-out) forwards, loaderProgressShine 0.55s linear infinite;
}
.loader-status { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 18px; color: rgba(255,255,255,0.42); font-size: 0.66rem; letter-spacing: 0.025em; }
.loader-status strong { min-width: 28px; color: var(--gold-light); font-variant-numeric: tabular-nums; }
.loader-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #47d883; box-shadow: 0 0 0 0 rgba(71,216,131,0.42); animation: loaderStatusPulse 1.25s ease infinite; }

@keyframes loaderLogoIn { from { opacity: 0.7; transform: scale(0.82) rotate(-3deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes loaderBrandIn { from { transform: translateY(6px) scale(0.98); filter: brightness(0.76); } to { transform: translateY(0) scale(1); filter: brightness(1); } }
@keyframes loaderCharGlow { 0% { transform: translateY(6px); filter: brightness(0.75); } 65% { transform: translateY(-1px); filter: brightness(1.24); } 100% { transform: translateY(0); filter: brightness(1); } }
@keyframes loaderFadeUp { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }
@keyframes loaderPanelIn { from { opacity: 0; transform: translateY(16px) scale(0.975); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes progressFill { to { width: 100%; } }
@keyframes loaderOrbit { to { transform: rotate(360deg); } }
@keyframes loaderSpark { 50% { transform: scale(1.08); opacity: 0.5; } }
@keyframes loaderAurora { to { transform: translate3d(5%, 3%, 0) scale(1.1); opacity: 0.2; } }
@keyframes loaderRoute { to { left: 110%; } }
@keyframes loaderSweep { 45%,100% { transform: translateX(100%); } }
@keyframes loaderProgressShine { to { background-position: -180% 0; } }
@keyframes loaderStatusPulse { 50% { box-shadow: 0 0 0 7px rgba(71,216,131,0); } }

@media (max-width: 640px) {
  #loader { padding: max(18px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); }
  .loader-inner { width: min(100%, 350px); padding: 24px 18px 22px; border-radius: 27px; }
  .loader-emblem { width: 112px; height: 112px; margin-bottom: 15px; }
  .loader-logo-image { width: 78px; height: 78px; border-radius: 20px; }
  .loader-logo { font-size: clamp(1.72rem, 9vw, 2.15rem); gap: 7px; }
  .loader-kicker { font-size: 0.56rem; letter-spacing: 0.17em; }
  .loader-tagline { max-width: 250px; margin: 0 auto 21px; font-size: 0.68rem; line-height: 1.5; }
  .loader-route, .loader-progress { width: min(100%, 235px); }
  .loader-status { gap: 6px; font-size: 0.59rem; }
}

@media (max-height: 650px) and (max-width: 640px) {
  .loader-inner { padding-top: 18px; padding-bottom: 18px; }
  .loader-emblem { width: 92px; height: 92px; margin-bottom: 10px; }
  .loader-logo-image { width: 64px; height: 64px; border-radius: 17px; }
  .loader-tagline { margin-bottom: 15px; }
}

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform var(--t-med) var(--ease-out);
}

/* Top bar */
.top-bar {
  background: var(--navy-dark);
  padding: 7px 0;
  overflow: hidden;
  transition: max-height var(--t-med) ease, padding var(--t-med) ease, opacity var(--t-med) ease;
}
.top-bar.hidden { max-height: 0; padding: 0; opacity: 0; }

.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 14px; }

.top-contact {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.77rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast) ease;
}
.top-contact:hover { color: var(--gold); }
.top-contact svg { width: 12px; height: 12px; fill: var(--gold); flex-shrink: 0; }

.top-social { display: flex; align-items: center; gap: 8px; }
.top-social a {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast) ease, background var(--t-fast) ease, transform var(--t-fast) ease;
}
.top-social a svg { width: 13px; height: 13px; }
.top-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* Main nav */
.main-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: box-shadow var(--t-med) ease;
}
#site-header.scrolled .main-nav { box-shadow: 0 4px 30px rgba(0,0,0,0.09); }
#site-header.hide { transform: translateY(-100%); }

.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-img {
  width: 58px;
  height: 58px;
  display: block;
  padding: 3px;
  border: 1px solid rgba(201,168,76,0.42);
  border-radius: 50%;
  object-fit: cover;
  background: #050505;
  box-shadow: 0 7px 18px rgba(13,17,40,0.14);
}
@media (max-width: 640px) { .nav-logo-img { width: 46px; height: 46px; } }
.nav-logo-icon { width: 50px; height: 34px; flex-shrink: 0; }
.nav-logo-icon svg { width: 100%; height: 100%; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: 0.05em; }
.nav-logo-sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

/* Footer logo image */
.footer-logo-img { height: 64px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
@media (max-width: 640px) { .footer-logo-img { height: 52px; } }

/* Nav menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px;
  font-size: 0.875rem; font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) ease, background var(--t-fast) ease;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 3px; left: 13px; right: 13px;
  transform: scaleX(0);
  transform-origin: right center;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(201,168,76,0.24);
  opacity: 0;
  transition: transform 0.42s var(--ease-out), opacity 0.24s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left center;
  opacity: 1;
}
.nav-cta::after { display: none; }
.nav-link .chevron { width: 14px; height: 14px; transition: transform var(--t-fast) ease; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 230px; padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transform-origin: top left;
  transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-spring), visibility var(--t-med) ease;
  z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.nav-dropdown a {
  display: block; padding: 9px 14px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-body);
  border-radius: var(--r-sm);
  transition: background var(--t-fast) ease, color var(--t-fast) ease, padding-left var(--t-fast) ease;
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--navy); padding-left: 18px; }
.nav-dropdown .dd-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); padding: 8px 14px 4px; }

/* Nav CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--r-full) !important;
  box-shadow: var(--shadow-gold);
  transition: box-shadow var(--t-med) ease, transform var(--t-med) var(--ease-spring) !important;
}
.nav-cta:hover { box-shadow: var(--shadow-gold-lg); transform: translateY(-2px) !important; }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r-sm);
  background: none; border: none; cursor: pointer;
  z-index: 205;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--t-med) var(--ease-spring), opacity var(--t-fast) ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   PAGE HERO / INNER BANNER
══════════════════════════════════════════════ */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t-fast) ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.stats-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); }
.stats-sep { width: 1px; height: 40px; background: var(--gray-200); }

/* ══════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════ */
.about-img-wrap { position: relative; }
.about-img-inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1/0.85;
  background: var(--navy-dark);
}
.about-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-gold);
  text-align: center;
  color: var(--navy-dark);
  z-index: 2;
}
.about-img-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.about-img-badge .txt { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════
   VEHICLE CARDS
══════════════════════════════════════════════ */
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.v-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out), border-color var(--t-fast) ease;
  cursor: pointer;
}
.v-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,0.5); }
.v-card:focus-visible { outline: 3px solid rgba(201,168,76,0.55); outline-offset: 4px; }

.v-card-img {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  aspect-ratio: 16/10;
  overflow: hidden;
}
.v-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out), filter 0.35s ease; }
.v-card-img img.photo-contain { object-fit: contain; padding: 8px; background: linear-gradient(145deg, #0d1128, #252c52); }
.v-card-img.with-photo .v-card-img-placeholder { display: none; }
.v-card:hover .v-card-img img { transform: scale(1.05); }
.v-card:hover .v-card-img img.photo-contain { transform: scale(1.025); }
.v-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.v-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.v-badge-premium { position: absolute; top: 12px; right: 12px; z-index: 2; }

.v-card-body { padding: 22px; }
.v-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.v-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.v-spec { font-size: 0.72rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); padding: 4px 10px; border-radius: var(--r-full); }
.v-price { margin-bottom: 16px; }
.v-price-from { font-size: 0.72rem; color: var(--gray-400); display: block; }
.v-price-num { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.v-price-num.gold { color: var(--gold); }
.v-price-per { font-size: 0.75rem; font-weight: 500; color: var(--gray-400); }
.v-actions { display: flex; gap: 8px; }
.v-actions .btn { flex: 1; padding: 10px; font-size: 0.82rem; border-radius: var(--r-sm); }

/* ══════════════════════════════════════════════
   PRICING TABLE
══════════════════════════════════════════════ */
.pricing-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead { background: var(--navy-dark); }
.pricing-table th { padding: 16px 20px; color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-align: left; white-space: nowrap; }
.pricing-table td { padding: 14px 20px; font-size: 0.9rem; color: var(--text-body); border-bottom: 1px solid var(--gray-100); white-space: nowrap; }
.pricing-table td strong { color: var(--text-dark); font-weight: 700; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--off-white); }
.pricing-table .highlight-row td { background: rgba(201,168,76,0.05); font-weight: 600; color: var(--navy); }
.pricing-table .highlight-row td strong { color: var(--gold); }

/* ══════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 30px 26px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--gray-200);
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) var(--ease-out), border-color var(--t-fast) ease;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.4); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p { font-size: 0.87rem; line-height: 1.65; color: var(--gray-600); }

/* ══════════════════════════════════════════════
   FEATURES LIST
══════════════════════════════════════════════ */
.feature-list { display: flex; flex-direction: column; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--gray-100);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.feature-text h5 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.feature-text p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.5; }

/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), #0f1525, var(--navy));
  padding: var(--section-py) 0; position: relative; overflow: hidden;
}
.stats-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(45,53,97,0.5) 0%, transparent 50%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
  cursor: pointer; text-decoration: none;
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) ease, border-color var(--t-fast) ease;
  position: relative; overflow: hidden;
}
.stat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.07), transparent); opacity: 0; transition: opacity var(--t-med) ease; }
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.35); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.stat-icon-bg-g { background: rgba(255,255,255,0.07); }
.stat-icon-bg-ig { background: rgba(255,255,255,0.07); }
.stat-icon-bg-yt { background: rgba(255,0,0,0.1); }
.stat-icon-bg-star { background: rgba(255,215,0,0.1); }
.stat-big-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; transition: color var(--t-fast) ease; }
.stat-card:hover .stat-big-num { color: var(--gold); }
.stat-name { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.stat-sub { font-size: 0.73rem; color: rgba(255,255,255,0.35); }
.stat-cta-link { margin-top: 16px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); opacity: 0; transform: translateY(6px); transition: opacity var(--t-med) ease, transform var(--t-med) ease; }
.stat-card:hover .stat-cta-link { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-track-outer {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 18px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testimonials-track-outer::-webkit-scrollbar { display: none; }
.testimonials-track-outer.is-hover-paused { cursor: ew-resize; }
.testimonials-track-outer.is-touching,
.testimonials-track-outer.is-wheel-active { cursor: grabbing; }
.testimonials-track {
  --review-gap: 22px;
  display: flex;
  align-items: stretch;
  gap: var(--review-gap);
  width: max-content;
  animation: none;
  transform: none;
}
.testimonials-group { display: flex; align-items: stretch; gap: var(--review-gap); }

.tc-card {
  width: 340px; min-height: 260px; flex-shrink: 0;
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--r-md);
  padding: 26px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transform: translateZ(0);
  transition: transform var(--t-med) var(--ease-spring), box-shadow var(--t-med) ease, border-color var(--t-fast) ease;
}
.tc-card:hover {
  transform: translateY(-6px) scale(1.008);
  box-shadow: 0 18px 44px rgba(11,25,53,0.13), 0 0 0 1px rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.46);
}
.tc-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 12px; }
.tc-text { flex: 1; font-size: 0.9rem; line-height: 1.75; color: var(--text-body); font-style: italic; margin-bottom: 18px; }
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.tc-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.tc-loc { font-size: 0.75rem; color: var(--gray-400); margin-top: 1px; }

@media (max-width: 640px) {
  .testimonials-track-outer {
    padding-bottom: 10px;
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  }
  .testimonials-track { --review-gap: 14px; }
  .testimonials-group { gap: var(--review-gap); }
  .tc-card { width: min(318px, calc(100vw - 48px)); min-height: 250px; padding: 22px; border-radius: 20px; }
}

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact-detail { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--gray-200); border-radius: var(--r-md); transition: border-color var(--t-fast) ease, transform var(--t-fast) ease, background var(--t-fast) ease; }
.contact-detail:hover { border-color: var(--gold); transform: translateX(4px); background: rgba(201,168,76,0.03); }
.contact-detail-icon { width: 42px; height: 42px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); }
.contact-detail-val { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

.contact-form-card { background: var(--off-white); border-radius: var(--r-lg); padding: 40px; border: 1px solid var(--gray-200); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══════════════════════════════════════════════
   VEHICLE DETAIL PAGE
══════════════════════════════════════════════ */
.vd-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 220px); gap: 12px; border-radius: var(--r-lg); overflow: hidden; }
.vd-gallery-main { grid-row: span 2; }
.vd-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.5s var(--ease-out), filter 0.3s ease; }
.vd-gallery img:hover { transform: scale(1.03); filter: brightness(1.05); }

.vd-info { display: flex; flex-direction: column; gap: 28px; }
.vd-price-box { background: var(--off-white); border-radius: var(--r-md); padding: 24px; border: 1px solid var(--gray-200); }
.vd-price-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); }
.vd-price-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.vd-price-num.gold { color: var(--gold); }
.vd-price-per { font-size: 0.85rem; color: var(--gray-400); }

.vd-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vd-spec-item { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--white); border-radius: var(--r-sm); border: 1px solid var(--gray-200); }
.vd-spec-icon { font-size: 1rem; }
.vd-spec-label { font-size: 0.78rem; color: var(--gray-400); }
.vd-spec-val { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 5000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity var(--t-med) ease, visibility var(--t-med) ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; cursor: pointer; transition: background var(--t-fast) ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); }
.footer-main { padding: 72px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }

.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: white; letter-spacing: 0.05em; }
.footer-logo-sub { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 22px; }

.footer-socials { display: flex; gap: 8px; }
.footer-social { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) ease; }
.footer-social svg { width: 14px; height: 14px; }
.footer-social:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

.footer-col h5 { font-size: 0.83rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color var(--t-fast) ease, padding-left var(--t-fast) ease; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.87rem; color: rgba(255,255,255,0.5); }
.footer-contact-item svg { fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--t-fast) ease; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: max(90px, calc(env(safe-area-inset-bottom) + 78px)); right: max(22px, env(safe-area-inset-right));
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 800;
  animation: waPulse 3s ease infinite;
  transition: transform var(--t-fast) ease;
}
.float-wa:hover { transform: scale(1.12); animation: none; box-shadow: 0 10px 34px rgba(37,211,102,0.55); }
.float-wa svg { width: 27px; height: 27px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

.float-wa-tooltip {
  position: absolute; right: 66px; white-space: nowrap;
  background: var(--navy-dark); color: white;
  font-size: 0.76rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast) ease;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

.float-call {
  position: fixed; bottom: max(22px, env(safe-area-inset-bottom)); right: max(22px, env(safe-area-inset-right));
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 800;
  transition: transform var(--t-fast) ease, background var(--t-fast) ease;
}
.float-call:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); transform: scale(1.1); }
.float-call svg { width: 24px; height: 24px; }

.back-to-top {
  position: fixed; bottom: max(90px, calc(env(safe-area-inset-bottom) + 78px)); left: max(22px, env(safe-area-inset-left));
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: 1.5px solid var(--gray-200);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 800;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-med) ease, visibility var(--t-med) ease, transform var(--t-med) ease, background var(--t-fast) ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ══════════════════════════════════════════════
   CONTACT POPUP (Welcome / Quote)
══════════════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(13,17,40,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.open { opacity: 1; visibility: visible; }

.popup-card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  max-width: 520px; width: 100%;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  transform: scale(0.88) translateY(24px);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.4s ease;
}
.popup-overlay.open .popup-card { transform: scale(1) translateY(0); opacity: 1; }

/* Mouse-tracking glow on card */
.popup-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 50%; top: 50%;
  transition: left 0.1s ease, top 0.1s ease;
  z-index: 0;
}

.popup-header {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 36px 36px 28px;
  overflow: hidden;
}
.popup-header::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
}
.popup-header::after {
  content: '';
  position: absolute;
  top: -30px; left: 40%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1;
  transition: background var(--t-fast) ease, color var(--t-fast) ease, transform var(--t-fast) var(--ease-spring);
  z-index: 5;
}
.popup-close:hover { background: rgba(255,255,255,0.2); color: white; transform: rotate(90deg) scale(1.1); }

.popup-welcome-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-full);
  margin-bottom: 12px; position: relative; z-index: 2;
}
.popup-wave { font-size: 1.2rem; animation: wave 1.5s ease infinite; display: inline-block; }
@keyframes wave { 0%,100%{transform:rotate(0deg)} 30%{transform:rotate(20deg)} 60%{transform:rotate(-10deg)} }

.popup-title {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 800;
  color: white; line-height: 1.25;
  margin-bottom: 8px; position: relative; z-index: 2;
}
.popup-title .gold { color: var(--gold); }
.popup-subtitle { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.6; position: relative; z-index: 2; }

/* Floating dots in header */
.popup-dots { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.popup-dot {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0.12;
  animation: floatDot ease-in-out infinite;
}
@keyframes floatDot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.popup-body { padding: 28px 36px 36px; position: relative; z-index: 2; }
.popup-form { display: flex; flex-direction: column; gap: 14px; }

/* Animated input fields */
.popup-field { position: relative; }
.popup-field .field-label {
  position: absolute; top: 13px; left: 14px;
  font-size: 0.88rem; color: var(--gray-400);
  pointer-events: none;
  transition: all 0.25s var(--ease-spring);
  z-index: 2;
}
.popup-field input:focus ~ .field-label,
.popup-field input:not(:placeholder-shown) ~ .field-label,
.popup-field select:focus ~ .field-label,
.popup-field select.has-value ~ .field-label,
.popup-field select ~ .field-label {
  top: -8px; left: 10px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); background: white; padding: 0 4px;
}
.popup-field input, .popup-field select {
  width: 100%;
  padding: 13px 42px 13px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 0.9rem; font-family: var(--font-body);
  color: var(--text-dark); background: var(--off-white);
  transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background var(--t-fast) ease, transform var(--t-fast) ease;
  outline: none;
}
.popup-field input:focus, .popup-field select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  transform: translateY(-1px);
}
.popup-field .field-icon {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  font-size: 1rem; pointer-events: none; transition: transform var(--t-fast) ease;
}
.popup-field:focus-within .field-icon { transform: translateY(-50%) scale(1.1); }

/* Magnetic submit button */
.popup-submit {
  position: relative;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--green), #20b855);
  color: white; font-size: 0.95rem; font-weight: 700;
  border: none; border-radius: var(--r-md); cursor: pointer;
  overflow: hidden; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast) ease;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.popup-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity var(--t-fast) ease;
}
.popup-submit:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
.popup-submit:hover::before { opacity: 1; }
.popup-submit:active { transform: scale(0.98); }

.popup-alt { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.popup-alt a { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); transition: color var(--t-fast) ease; }
.popup-alt a:hover { color: var(--navy); }
.popup-alt-sep { width: 1px; height: 16px; background: var(--gray-200); }

.popup-success { text-align: center; padding: 20px 0; }
.popup-success-icon { font-size: 3.5rem; margin-bottom: 12px; display: block; animation: successBounce 0.6s var(--ease-spring); }
@keyframes successBounce { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }
.popup-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.popup-success p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 20px; }
.popup-wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--green); color: white; font-weight: 700; border-radius: var(--r-full); transition: background var(--t-fast) ease, transform var(--t-fast) ease; }
.popup-wa-btn:hover { background: #128C7E; transform: translateY(-2px); }

/* Enquiry delivery feedback */
form button[type="submit"][disabled] {
  opacity: 0.76;
  cursor: wait;
  pointer-events: none;
  transform: none !important;
}
.submit-spinner {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: submitSpin 0.7s linear infinite;
}
@keyframes submitSpin { to { transform: rotate(360deg); } }
.email-submit-status {
  display: none;
  margin-top: 12px;
  padding: 11px 14px;
  color: #8a2834;
  background: #fff3f4;
  border: 1px solid rgba(180, 48, 62, 0.2);
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.5;
}
.email-submit-status.is-visible { display: block; animation: formStatusIn 0.35s var(--ease-out); }
@keyframes formStatusIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-py: 64px; }
  .container, .container-sm {
    padding-left: max(28px, env(safe-area-inset-left));
    padding-right: max(28px, env(safe-area-inset-right));
  }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }

  /* Mobile nav */
  .main-nav { background: var(--white); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-menu {
    position: fixed; top: 0; bottom: 0; right: -100%;
    width: min(310px, 84vw);
    height: 100dvh;
    background: white;
    flex-direction: column; align-items: flex-start;
    padding: 80px 20px 30px;
    box-shadow: -8px 0 50px rgba(0,0,0,0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: right var(--t-med) var(--ease-out);
    z-index: 200;
    gap: 0;
  }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; }
  .nav-link {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    border-radius: 0;
    background-image: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 2px;
    transition: color var(--t-fast) ease, background-size 0.42s var(--ease-out);
  }
  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.active { background-size: 58px 2px; }
  .nav-link::after { display: none; }
  .nav-cta { background-image: none; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 16px; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 12px; display: none; background: var(--gray-50); border-radius: 0; }
  .nav-item.dd-open .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }

  .vd-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .vd-gallery-main { grid-row: span 1; }
  .vd-specs-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-grid { gap: 24px; }
  .v-card, .contact-form-card, .rating-summary, .review-card-compact { border-radius: 22px; }
  .vd-gallery-wrap {
    padding: 8px !important;
    gap: 8px !important;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 24px !important;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  .vd-gallery-wrap .main-photo, .vd-gallery-wrap .thumb-photo { border-radius: 16px !important; overflow: hidden; }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; --header-h: 70px; }
  .top-bar { display: none; }
  body { font-size: 16px; line-height: 1.65; }
  .section { padding-top: 46px; padding-bottom: 46px; }
  .section-sm { padding-top: 40px; padding-bottom: 40px; }
  .h1 { font-size: clamp(2.05rem, 9.5vw, 2.55rem); line-height: 1.14; }
  .h2 { font-size: clamp(1.75rem, 8vw, 2.15rem); line-height: 1.25; margin-bottom: 14px; }
  .h3 { font-size: clamp(1.3rem, 6vw, 1.65rem); }
  .body-lg, .body-md { font-size: 0.96rem; line-height: 1.75; }
  .body-sm { font-size: 0.88rem; line-height: 1.72; }
  .section-eyebrow { max-width: 100%; padding: 7px 13px; font-size: 0.66rem; line-height: 1.45; letter-spacing: 0.11em; white-space: normal; }
  .btn { min-height: 46px; padding-left: 20px; padding-right: 20px; font-size: 0.92rem; }
  .btn-lg { min-height: 50px; padding: 13px 22px; font-size: 0.96rem; }
  .vehicle-grid { grid-template-columns: 1fr; gap: 20px; }
  .v-card { border-radius: 20px; }
  .v-card-body { padding: 20px 18px 18px; }
  .v-name { margin-bottom: 12px; font-size: 1.2rem; line-height: 1.35; }
  .v-specs { gap: 6px; margin-bottom: 16px; }
  .v-spec { padding: 5px 9px; font-size: 0.75rem; }
  .v-price { margin-bottom: 18px; }
  .v-price-from { font-size: 0.76rem; }
  .v-price-num { font-size: 1.5rem; }
  .v-price-per { font-size: 0.78rem; }
  .v-actions { gap: 10px; }
  .v-actions .btn { min-height: 48px; padding: 11px 9px; font-size: 0.9rem; }
  #vehicles > .container > .text-center:first-child { margin-bottom: 30px !important; }
  #vehicles .vehicle-grid + .text-center { margin-top: 24px; }
  #vehicles .vehicle-grid + .text-center .btn { width: min(100%, 300px); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .vd-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .vd-gallery-main { grid-row: span 1; }
  .popup-card { border-radius: 20px; }
  .popup-header, .popup-body { padding: 24px 20px; }
  .contact-form-card { padding: 24px 20px; }
  .why-card, .stat-card, .team-card { padding-left: 20px; padding-right: 20px; }
  .form-control { min-height: 48px; padding: 13px 14px; font-size: 16px !important; }
  .popup-field input, .popup-field select { min-height: 50px; font-size: 16px; }
  textarea.form-control { min-height: 112px; }
  .vd-layout, .vd-layout > * { width: 100%; min-width: 0; }
  .vd-gallery-wrap { width: 100%; max-width: 100%; margin-bottom: 28px !important; }
  .vd-photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; margin-bottom: 30px !important; }
  .vd-photo-strip > div { height: 104px !important; border-radius: 12px; }
  .vd-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .vd-review-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .about-img-badge { bottom: -12px; right: -8px; }
}

/* ── UTILITIES ── */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }
.success-msg { padding: 12px 16px; border-radius: var(--r-sm); background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.3); color: #166534; font-size: 0.88rem; font-weight: 600; text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── COLOUR UTILITIES ── */
.gold { color: var(--gold) !important; }
.accent { color: var(--gold); }
.white { color: white !important; }
.navy { color: var(--navy) !important; }
.text-muted { color: var(--gray-400); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001; width: 0%;
  transition: width 0.1s linear;
}

/* ── FAQ ACCORDION ── */
.faq-item { border: 1.5px solid var(--gray-200); border-radius: var(--r-md); overflow: hidden; margin-bottom: 10px; transition: border-color 0.2s ease; }
.faq-item:hover { border-color: rgba(201,168,76,0.4); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 22px; background: none; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); text-align: left; cursor: pointer; gap: 16px; }
.faq-question .faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: transform 0.3s ease, background 0.2s ease; }
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out), padding 0.3s ease; padding: 0 22px; }
.faq-answer p { font-size: 0.9rem; line-height: 1.75; color: var(--gray-600); padding-bottom: 18px; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab { padding: 9px 22px; border: 1.5px solid var(--gray-200); border-radius: var(--r-full); font-size: 0.83rem; font-weight: 700; color: var(--gray-600); background: var(--white); cursor: pointer; transition: all 0.2s ease; }
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(26,31,58,0.25); }

/* ── BOOKING CTA STRIP ── */
.cta-strip { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: white; margin-bottom: 10px; position: relative; z-index: 1; }
.cta-strip p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 28px; position: relative; z-index: 1; }
.cta-strip .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-grid.team-grid-single { grid-template-columns: minmax(0, 430px); justify-content: center; }
.team-grid.team-grid-single .team-card { width: 100%; }
.team-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-md); padding: 36px 24px; text-align: center; transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, border-color 0.2s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.4); }
.team-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: white; border: 3px solid rgba(201,168,76,0.4); }
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 12px; }
.team-bio { font-size: 0.85rem; line-height: 1.65; color: var(--gray-600); }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ── MAP PLACEHOLDER ── */
.map-placeholder { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); border-radius: var(--r-lg); height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: white; position: relative; overflow: hidden; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%); }

/* ── CONTACT CARD ── */
.contact-big-card { display: flex; align-items: center; gap: 18px; padding: 24px 26px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--r-md); transition: all 0.2s ease; }
.contact-big-card:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-big-icon { width: 56px; height: 56px; border-radius: var(--r-md); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.contact-big-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 3px; }
.contact-big-val { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.contact-big-sub { font-size: 0.78rem; color: var(--gray-400); margin-top: 2px; }

/* ── PREMIUM MEDIA & SHARED DETAIL COMPONENTS ── */
.hero-media {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 0.98;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(240,208,120,0.55), rgba(255,255,255,0.08));
  box-shadow: 0 35px 90px rgba(0,0,0,0.42);
  transform-style: preserve-3d;
}
.hero-media ~ .about-van-svg { display: none; }
.about-img-inner > img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-out); }
.about-img-inner > img + svg { display: none; }
.about-img-wrap:hover .about-img-inner > img { transform: scale(1.035); }
.hero-media::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(240,208,120,0.18);
  border-radius: 48px;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  border-radius: 28px;
}
.hero-media-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(240,208,120,0.32);
  border-radius: 999px;
  color: white;
  background: rgba(13,17,40,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.32);
}
.hero-media-badge img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.hero-media-badge strong { display: block; font-size: 0.8rem; color: var(--gold-light); }
.hero-media-badge span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.68); }

.trust-reviews { display: grid; grid-template-columns: 180px 1fr; gap: 18px; align-items: stretch; margin-top: 34px; }
.rating-summary, .review-card-compact {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  background: white;
  padding: 20px;
  box-shadow: var(--shadow-xs);
}
.rating-summary { display: grid; place-items: center; text-align: center; background: linear-gradient(145deg, var(--navy-dark), var(--navy)); color: white; }
.rating-number { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; line-height: 1; }
.review-card-compact p { font-size: 0.86rem; line-height: 1.7; color: var(--gray-600); margin: 8px 0 10px; }
.review-author { font-size: 0.78rem; font-weight: 800; color: var(--text-dark); }

@media (max-width: 900px) {
  .hero-media { max-width: 470px; margin: 10px auto 0; aspect-ratio: 1.12; }
  .hero-media-badge { left: 14px; bottom: 14px; }
}
@media (max-width: 640px) {
  .container, .container-sm {
    padding-left: max(20px, calc(env(safe-area-inset-left) + 14px));
    padding-right: max(20px, calc(env(safe-area-inset-right) + 14px));
  }
  .hero-media { border-radius: 24px; padding: 7px; }
  .hero-media img { border-radius: 18px; }
  .trust-reviews { grid-template-columns: 1fr; }
  .popup-overlay {
    padding-top: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    align-items: flex-end;
  }
  .popup-card { max-height: calc(100dvh - 24px); overflow-y: auto; }
  .popup-header { padding-right: 54px; }
}

/* ── PREMIUM VEHICLE MEGA MENU ── */
.nav-item-dd > .nav-link { cursor: pointer; }
.nav-item-dd > .nav-link .chevron { transition: transform 0.32s var(--ease-spring); }
.nav-item-dd:hover > .nav-link .chevron,
.nav-item-dd.dd-open > .nav-link .chevron { transform: rotate(180deg); }

.nav-item-dd .nav-dropdown {
  left: 50%;
  top: calc(100% + 12px);
  width: min(430px, calc(100vw - 32px));
  min-width: 430px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 20px;
  background: rgba(255,255,255,0.985);
  box-shadow: 0 28px 75px rgba(13,17,40,0.18), 0 8px 24px rgba(13,17,40,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 16px) scale(0.96);
  transform-origin: 50% 0;
  filter: blur(4px);
  transition: opacity 0.24s ease, transform 0.34s var(--ease-spring), filter 0.24s ease, visibility 0.24s ease;
  isolation: isolate;
}
.nav-item-dd .nav-dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 16px;
}
.nav-item-dd .nav-dropdown::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 78% 4%, rgba(240,208,120,0.16), transparent 35%);
  pointer-events: none;
}
.nav-item-dd:hover .nav-dropdown,
.nav-item-dd.dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  filter: blur(0);
}
.nav-dropdown .dd-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 10px;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown .dd-heading small {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 5px 8px;
  border-radius: 999px;
}
.nav-dropdown a {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.22s ease, transform 0.32s var(--ease-spring), background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.nav-item-dd:hover .nav-dropdown a,
.nav-item-dd.dd-open .nav-dropdown a { opacity: 1; transform: translateY(0); }
.nav-dropdown a:nth-of-type(2) { transition-delay: 0.025s; }
.nav-dropdown a:nth-of-type(3) { transition-delay: 0.05s; }
.nav-dropdown a:nth-of-type(4) { transition-delay: 0.075s; }
.nav-dropdown a:nth-of-type(5) { transition-delay: 0.1s; }
.nav-dropdown a:nth-of-type(6) { transition-delay: 0.125s; }
.nav-dropdown a:nth-of-type(7) { transition-delay: 0.15s; }
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a[aria-current="page"] {
  padding-left: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--off-white), #fff9e9);
  border-color: rgba(201,168,76,0.24);
  box-shadow: 0 8px 18px rgba(13,17,40,0.07);
  outline: none;
}
.dd-seat {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.dd-copy { min-width: 0; line-height: 1.12; }
.dd-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; font-size: 0.77rem; color: var(--text-dark); white-space: nowrap; }
.dd-copy small { display: block; margin-top: 4px; font-size: 0.65rem; font-weight: 600; color: var(--gray-400); }
.nav-dropdown .dd-all {
  grid-column: auto;
  grid-template-columns: 1fr auto;
  margin-top: 0;
  min-height: 56px;
  color: white;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-color: rgba(240,208,120,0.2);
}
.nav-dropdown .dd-all:hover,
.nav-dropdown .dd-all:focus-visible { color: var(--gold-light); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }
.dd-all svg { width: 16px; transition: transform 0.25s var(--ease-spring); }
.dd-all:hover svg { transform: translateX(4px); }

/* ── ABOUT PAGE — ORIGINAL VISUAL STORY ── */
.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(240,208,120,0.16), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(80,98,177,0.22), transparent 34%),
    linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black 45%, transparent);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.about-hero-kicker span {
  padding: 8px 12px;
  border: 1px solid rgba(240,208,120,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  animation: aboutChipFloat 4s ease-in-out infinite;
}
.about-hero-kicker span:nth-child(2) { animation-delay: -1.2s; }
.about-hero-kicker span:nth-child(3) { animation-delay: -2.4s; }
@keyframes aboutChipFloat { 50% { transform: translateY(-4px); border-color: rgba(240,208,120,0.48); } }

.about-story-visual,
.about-care-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(201,168,76,0.6), rgba(255,255,255,0.2));
  box-shadow: 0 30px 75px rgba(13,17,40,0.2);
  isolation: isolate;
}
.about-story-visual::before,
.about-care-visual::before {
  content: '';
  position: absolute;
  inset: 8px;
  z-index: 2;
  border-radius: 22px;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.2), transparent 70%);
  pointer-events: none;
}
.about-story-visual::after,
.about-care-visual::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 8%;
  bottom: 8%;
  width: 35%;
  left: -55%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
  transition: left 0.85s var(--ease-out);
}
.about-story-visual:hover::after,
.about-care-visual:hover::after { left: 125%; }
.about-story-visual img,
.about-care-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  transition: transform 0.85s var(--ease-out), filter 0.5s ease;
}
.about-story-visual { aspect-ratio: 1.2; }
.about-story-visual img { object-position: 63% center; }
.about-story-visual:hover img,
.about-care-visual:hover img { transform: scale(1.035); filter: saturate(1.05); }
.about-story-badge,
.about-care-tag {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(240,208,120,0.3);
  color: white;
  background: rgba(13,17,40,0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(13,17,40,0.26);
}
.about-story-badge { left: 24px; bottom: 24px; padding: 11px 16px; border-radius: 16px; }
.about-story-badge strong { font-family: var(--font-display); font-size: 1.45rem; color: var(--gold-light); line-height: 1; }
.about-story-badge span { max-width: 90px; font-size: 0.65rem; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.05em; }

.about-care-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff, var(--off-white)); }
.about-care-section::before { content: ''; position: absolute; width: 440px; height: 440px; right: -180px; top: 10%; border-radius: 50%; background: rgba(201,168,76,0.07); filter: blur(4px); }
.about-care-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); align-items: center; gap: clamp(38px, 6vw, 82px); }
.about-care-visual { aspect-ratio: 1.28; transform: rotate(-1.2deg); }
.about-care-visual img { object-position: center; }
.about-care-tag { right: 22px; bottom: 22px; padding: 10px 14px; border-radius: 999px; font-size: 0.7rem; font-weight: 800; }
.about-care-tag i { width: 9px; height: 9px; border-radius: 50%; background: #44c477; box-shadow: 0 0 0 5px rgba(68,196,119,0.14); }
.about-checks { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.about-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-xs);
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--text-dark);
  transition: transform 0.28s var(--ease-spring), border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-check:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.48); box-shadow: var(--shadow-sm); }
.about-check span { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 10px; color: var(--navy); background: var(--gold-pale); }

@media (max-width: 900px) {
  .nav-item-dd .nav-dropdown {
    position: static;
    display: grid !important;
    width: 100%;
    min-width: 0;
    max-height: 0;
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    border-width: 0;
    border-radius: 16px;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    filter: none;
    transform: none;
    transition: max-height 0.48s var(--ease-out), opacity 0.25s ease, padding 0.36s ease, margin 0.36s ease, visibility 0.36s ease;
  }
  .nav-item-dd:hover .nav-dropdown { max-height: 0; padding-top: 0; padding-bottom: 0; margin: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: none; }
  .nav-item-dd.dd-open .nav-dropdown {
    max-height: 680px;
    margin: 6px 0 12px;
    padding: 10px;
    border-width: 1px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-item-dd .nav-dropdown .dd-heading { display: flex; }
  .nav-dropdown a { grid-template-columns: 34px minmax(0, 1fr); padding: 8px; opacity: 1; transform: none; }
  .nav-dropdown .dd-all { grid-column: auto; }
  .about-care-grid { grid-template-columns: 1fr; }
  .about-care-visual { max-width: 680px; transform: none; }
}

@media (max-width: 640px) {
  .about-hero { padding: 48px 0 52px !important; }
  .about-hero-kicker { gap: 7px; }
  .about-hero-kicker span { padding: 7px 10px; font-size: 0.66rem; }
  .nav-dropdown .dd-heading { gap: 6px; font-size: 0.64rem; }
  .nav-dropdown .dd-heading > span,
  .nav-dropdown .dd-heading small { white-space: nowrap; }
  .nav-dropdown .dd-heading small { padding: 4px 6px; font-size: 0.58rem; }
  .about-story-visual, .about-care-visual { padding: 6px; border-radius: 22px; }
  .about-story-visual img, .about-care-visual img { border-radius: 16px; }
  .about-story-visual::before, .about-care-visual::before { inset: 6px; border-radius: 16px; }
  .about-story-visual { aspect-ratio: .9; }
  .about-story-visual img { object-position: 64% center; }
  .about-story-badge { left: 16px; bottom: 16px; }
  .about-care-visual { aspect-ratio: 1; }
  .about-checks { grid-template-columns: 1fr; }
}

/* ── PREMIUM FOOTER REFRESH ── */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(201,168,76,0.11), transparent 26%),
    radial-gradient(circle at 92% 88%, rgba(77,91,166,0.16), transparent 28%),
    linear-gradient(145deg, #080b1d, var(--navy-dark) 58%, #111833);
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.site-footer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
  box-shadow: 0 0 20px rgba(201,168,76,0.34);
}
.footer-main, .footer-bottom { position: relative; z-index: 1; }
.footer-main { padding: 66px 0 42px; }
.footer-grid { grid-template-columns: minmax(250px, 1.7fr) repeat(3, minmax(135px, 1fr)); gap: clamp(28px, 4vw, 54px); align-items: start; }
.footer-brand-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(240,208,120,0.16);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.footer-logo-img {
  width: 78px;
  height: 78px;
  display: block;
  margin: 0 0 18px;
  padding: 5px;
  border: 1px solid rgba(240,208,120,0.22);
  border-radius: 50%;
  object-fit: cover;
  filter: none;
  opacity: 1;
  background: rgba(3,5,16,0.5);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24), 0 0 24px rgba(201,168,76,0.08);
  transition: transform 0.35s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
}
.footer-logo-img:hover { transform: translateY(-3px) rotate(-1deg); border-color: rgba(240,208,120,0.48); box-shadow: 0 18px 36px rgba(0,0,0,0.3), 0 0 28px rgba(201,168,76,0.14); }
.footer-desc { max-width: 360px; margin-bottom: 17px; color: rgba(255,255,255,0.58); }
.footer-trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.footer-trust-row span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; color: rgba(255,255,255,0.68); background: rgba(255,255,255,0.035); font-size: 0.65rem; font-weight: 700; }
.footer-trust-row i { width: 6px; height: 6px; border-radius: 50%; background: #47d883; box-shadow: 0 0 0 4px rgba(71,216,131,0.11); }
.footer-social { border: 1px solid rgba(255,255,255,0.06); }
.footer-col { padding-top: 8px; }
.footer-col h5 { position: relative; margin-bottom: 20px; padding-bottom: 12px; border-bottom-color: rgba(255,255,255,0.08); }
.footer-col h5::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 32px; height: 2px; border-radius: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { position: relative; display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.56); }
.footer-col ul li a::before { content: '›'; color: var(--gold); opacity: 0.7; transition: transform var(--t-fast) ease; }
.footer-col ul li a:hover { padding-left: 0; color: white; }
.footer-col ul li a:hover::before { transform: translateX(3px); }
.footer-contact-item { align-items: center; min-width: 0; }
.footer-contact-item > span { width: 27px; height: 27px; flex: 0 0 27px; display: grid; place-items: center; border-radius: 8px; color: var(--gold-light); background: rgba(201,168,76,0.1); font-size: 0.74rem; }
.footer-contact-item a { overflow-wrap: anywhere; }
.footer-bottom { padding: 19px 0; border-top-color: rgba(255,255,255,0.08); background: rgba(0,0,0,0.12); }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(150px, 1fr)); }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  .footer-main { padding: 48px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-brand-panel { padding: 20px; border-radius: 21px; text-align: center; }
  .footer-logo-img { width: 68px; height: 68px; margin-left: auto; margin-right: auto; }
  .footer-desc { margin-left: auto; margin-right: auto; }
  .footer-trust-row, .footer-socials { justify-content: center; }
  .footer-col { padding: 18px 4px 0; }
  .footer-col h5 { margin-bottom: 13px; }
  .footer-bottom { padding-bottom: max(19px, env(safe-area-inset-bottom)); line-height: 1.6; }
  .float-wa, .float-call { width: 48px; height: 48px; right: max(14px, env(safe-area-inset-right)); }
  .float-wa { bottom: max(74px, calc(env(safe-area-inset-bottom) + 68px)); }
  .float-call { bottom: max(16px, env(safe-area-inset-bottom)); }
  .float-wa svg { width: 23px; height: 23px; }
  .float-call svg { width: 21px; height: 21px; }
  .float-wa-tooltip { display: none; }
  .back-to-top { left: max(14px, env(safe-area-inset-left)); bottom: max(16px, env(safe-area-inset-bottom)); width: 38px; height: 38px; }
}

/* ── SCROLL-DRAWN HEADING UNDERLINES ── */
.accent.underline-ready {
  padding-bottom: 0.16em;
  background-image: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 0.85s var(--ease-out), text-shadow 0.4s ease;
}
.accent.underline-ready.underline-in,
.h1:hover .accent.underline-ready,
.h2:hover .accent.underline-ready,
.h3:hover .accent.underline-ready {
  background-size: 100% 2px;
  text-shadow: 0 7px 22px rgba(201,168,76,0.14);
}

.about-hero .h1,
.contact-hero .h1,
.vehicles-hero .h1 {
  margin-bottom: 16px;
}

.about-hero .h1 .accent.underline-ready,
.contact-hero .h1 .accent.underline-ready,
.vehicles-hero .h1 .accent.underline-ready {
  position: relative;
  display: inline-block;
  padding-bottom: 0.09em;
  vertical-align: baseline;
  background-image: none;
}

.about-hero .h1 .accent.underline-ready::after,
.contact-hero .h1 .accent.underline-ready::after,
.vehicles-hero .h1 .accent.underline-ready::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 2px 8px rgba(201,168,76,0.2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s var(--ease-out);
}

.about-hero .h1 .accent.underline-ready.underline-in::after,
.about-hero .h1:hover .accent.underline-ready::after,
.contact-hero .h1 .accent.underline-ready.underline-in::after,
.contact-hero .h1:hover .accent.underline-ready::after,
.vehicles-hero .h1 .accent.underline-ready.underline-in::after,
.vehicles-hero .h1:hover .accent.underline-ready::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .testimonials-track { animation: none !important; transform: none !important; }
  .accent.underline-ready { transition: background-size 0.65s var(--ease-out), text-shadow 0.35s ease !important; }
  .submit-spinner { animation: submitSpin 0.9s linear infinite !important; }
  .testimonials-track-outer { overflow-x: auto; overflow-y: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%); }
  .testimonials-group[aria-hidden="true"] { display: flex; }
}
