/* ==========================================================================
   S&T Transportation — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Palette */
  --ink: #0a0a0c;
  --ink-soft: #131317;
  --surface: #18181d;
  --surface-alt: #201f26;
  --cream: #f6f3ec;
  --cream-soft: #efeadf;
  --paper: #fbf9f4;
  --gold: #c6a25d;
  --gold-light: #e6cd9a;
  --gold-dim: #8a713f;
  --text-on-dark: #f4f1ea;
  --text-on-dark-muted: #a8a5a0;
  --text-on-light: #17161a;
  --text-on-light-muted: #5c5952;
  --border-dark: rgba(246, 243, 236, 0.1);
  --border-light: rgba(23, 22, 26, 0.1);
  --success: #4f9d6e;

  /* Type */
  --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.25);
  --shadow-gold: 0 8px 30px rgba(198,162,93,0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: #0a0a0c; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-on-light-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

@media (max-width: 640px) {
  .container { padding-inline: var(--sp-5); }
}

section { position: relative; }

.section-pad { padding-block: var(--sp-10); }
@media (max-width: 900px) { .section-pad { padding-block: var(--sp-8); } }

.bg-ink { background: var(--ink); color: var(--text-on-dark); }
.bg-ink p, .bg-ink .muted { color: var(--text-on-dark-muted); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }

/* ---------- Eyebrow / kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-8);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--sp-4); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1409;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(198,162,93,0.38); }

.btn-outline-dark {
  border-color: rgba(23,22,26,0.25);
  color: var(--text-on-light);
}
.btn-outline-dark:hover { border-color: var(--text-on-light); background: rgba(23,22,26,0.04); }

.btn-outline-light {
  border-color: rgba(246,243,236,0.35);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { border-color: var(--text-on-dark); background: rgba(246,243,236,0.08); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-on-light);
  padding-inline: 0.4rem;
  gap: var(--sp-2);
}
.btn-ghost svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 2.3rem; font-size: 0.98rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding-block: var(--sp-5);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); }

.site-header.is-scrolled {
  background: rgba(10,10,12,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-block: var(--sp-3);
  border-color: var(--border-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--text-on-dark);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-full { line-height: 1.1; }
.brand-full small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-desktop { display: flex; align-items: center; gap: var(--sp-7); }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-on-dark-muted);
  padding-block: 4px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--gold);
  transition: right 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-on-dark); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-4); }
.nav-phone {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.86rem; font-weight: 600; color: var(--text-on-dark);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-phone-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(198, 162, 93, 0.12);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-phone-btn svg { width: 18px; height: 18px; }
.nav-phone-btn:hover, .nav-phone-btn:active {
  background: var(--gold);
  color: #1a1409;
  transform: scale(1.06);
}

.btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(198, 162, 93, 0.12);
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  flex-shrink: 0;
}
.btn-icon-circle svg { width: 22px; height: 22px; }
.btn-icon-circle:hover, .btn-icon-circle:active {
  background: var(--gold);
  color: #1a1409;
  transform: scale(1.06);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--text-on-dark); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 190;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-8) var(--sp-6);
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-on-dark);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--border-dark);
}
.mobile-menu .btn { margin-top: var(--sp-6); }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-phone-btn { display: inline-flex; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding-top: 140px;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: grayscale(0.25) brightness(0.8);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.45) 35%, rgba(6,6,8,0.75) 75%, rgba(6,6,8,0.95) 100%),
    repeating-linear-gradient(115deg, rgba(198,162,93,0.05) 0px, rgba(198,162,93,0.05) 1px, transparent 1px, transparent 90px);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,162,93,0.16), transparent 65%);
  top: -20%; right: -15%;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--sp-10);
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-8);
  align-items: end;
}
.hero h1 { color: var(--text-on-dark); }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-lead { font-size: 1.1rem; max-width: 460px; margin-top: var(--sp-5); color: var(--text-on-dark-muted); }
.hero-actions { display: flex; gap: var(--sp-4); margin-top: var(--sp-7); flex-wrap: wrap; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  border-left: 1px solid var(--border-dark);
  padding-left: var(--sp-6);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; color: var(--text-on-dark-muted); margin-top: 4px; letter-spacing: 0.03em; }

.scroll-cue {
  position: absolute; bottom: var(--sp-6); left: var(--sp-6);
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-on-dark-muted);
  z-index: 1;
}
.scroll-cue .line { width: 40px; height: 1px; background: var(--border-dark); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ''; position: absolute; left: -40%; top: 0; bottom: 0; width: 40%;
  background: var(--gold);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue { 0% { left: -40%; } 50% { left: 60%; } 100% { left: 100%; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; border-left: none; border-top: 1px solid var(--border-dark); padding-left: 0; padding-top: var(--sp-5); }
  .hero-stat { min-width: 40%; }
  .scroll-cue { display: none; }
}

/* Non-home page hero (shorter) */
.page-hero {
  background: radial-gradient(ellipse at 80% 0%, #23202a 0%, var(--ink) 60%), var(--ink);
  color: var(--text-on-dark);
  padding: 170px 0 var(--sp-8);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(198,162,93,0.05) 0px, rgba(198,162,93,0.05) 1px, transparent 1px, transparent 90px);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: var(--sp-2); font-size: 0.82rem; color: var(--text-on-dark-muted); margin-top: var(--sp-4); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero h1 { max-width: 780px; }
.page-hero-lead { max-width: 620px; margin-top: var(--sp-4); font-size: 1.05rem; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding-block: var(--sp-6);
  overflow: hidden;
  background: var(--ink);
}
.marquee-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-on-dark-muted); text-align: center; margin-bottom: var(--sp-5); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-on-dark-muted);
  padding-inline: var(--sp-7);
  white-space: nowrap;
  opacity: 0.7;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color .4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: var(--sp-3); }
.service-card p { font-size: 0.95rem; flex-grow: 1; }
.service-card .btn-ghost { margin-top: var(--sp-5); font-size: 0.85rem; font-weight: 700; }

.service-card.on-dark { background: var(--surface); border-color: var(--border-dark); }
.service-card.on-dark h3 { color: var(--text-on-dark); }
.service-card.on-dark .card-icon { background: var(--gold); color: var(--ink); }
.service-card.on-dark .btn-ghost { color: var(--gold); }

/* Service card with real photo header */
.service-card.photo-card { padding: 0; overflow: hidden; }
.service-card.photo-card .card-photo {
  height: 190px;
  position: relative;
  background: var(--ink);
  flex-shrink: 0;
}
.service-card.photo-card .card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.service-card.photo-card .card-photo img.focus-bottom {
  object-position: center 85%;
}
.service-card.photo-card:hover .card-photo img { transform: scale(1.06); }
.service-card.photo-card .card-icon {
  position: absolute;
  bottom: -27px; left: 24px;
  margin-bottom: 0;
  border: 3px solid var(--paper);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card.photo-card .card-body { padding: var(--sp-7) var(--sp-6) var(--sp-6); flex-grow: 1; display: flex; flex-direction: column; }
.service-card.photo-card .card-body p { flex-grow: 0; }
.service-card.photo-card .card-body .btn-ghost { margin-top: auto; padding-top: var(--sp-5); }

/* Fleet card */
.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  display: flex;
  flex-direction: column;
}
.fleet-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #232028, #14131a);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fleet-media svg { width: 46%; opacity: 0.9; color: var(--gold); transition: transform .6s var(--ease); }
.fleet-card:hover .fleet-media svg { transform: scale(1.08) translateY(-4px); }
.fleet-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.fleet-media img.focus-limo,
.media-frame img.focus-limo {
  object-position: center 60%;
}
.fleet-card:hover .fleet-media img { transform: scale(1.08); }
.fleet-media::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(198,162,93,0.18), transparent 60%);
  pointer-events: none;
}
.fleet-tag {
  position: absolute; top: var(--sp-4); left: var(--sp-4);
  background: rgba(10,10,12,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-dark);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  z-index: 1;
}
.fleet-body { padding: var(--sp-6); flex-grow: 1; display: flex; flex-direction: column; }
.fleet-body h3 { color: var(--text-on-dark); }
.fleet-meta { display: flex; gap: var(--sp-5); margin: var(--sp-4) 0; font-size: 0.82rem; color: var(--text-on-dark-muted); }
.fleet-meta span { display: flex; align-items: center; gap: 6px; }
.fleet-meta svg { width: 15px; height: 15px; color: var(--gold); }
.fleet-body p { flex-grow: 1; font-size: 0.92rem; }
.fleet-list { margin-top: var(--sp-4); display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-list li {
  font-size: 0.75rem;
  border: 1px solid var(--border-dark);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  color: var(--text-on-dark-muted);
}
.fleet-card .btn { margin-top: var(--sp-6); align-self: flex-start; }

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
}
.bg-ink .stats-band { border-top-color: var(--border-dark); }
.stats-band .stat { padding: var(--sp-8) var(--sp-6); border-left: 1px solid var(--border-light); text-align: center; }
.bg-ink .stats-band .stat { border-left-color: var(--border-dark); }
.stats-band .stat:first-child { border-left: none; }
.stats-band .num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); }
.stats-band .label { font-size: 0.82rem; color: var(--text-on-light-muted); margin-top: var(--sp-2); letter-spacing: 0.03em; }
.bg-ink .stats-band .label { color: var(--text-on-dark-muted); }
@media (max-width: 900px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat:nth-child(3) { border-left: none; }
  .stats-band .stat { border-top: 1px solid var(--border-light); }
  .bg-ink .stats-band .stat { border-top-color: var(--border-dark); }
  .stats-band .stat:nth-child(1), .stats-band .stat:nth-child(2) { border-top: none; }
}

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); counter-reset: step; }
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: var(--sp-6); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.process-step h4 { margin-bottom: var(--sp-2); }
.process-step p { font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-slider { position: relative; max-width: 760px; margin-inline: auto; text-align: center; }
.testi-slide { display: none; }
.testi-slide.is-active { display: block; animation: fadeUp .6s var(--ease); }
.testi-quote { width: 40px; height: 40px; color: var(--gold); margin-inline: auto; margin-bottom: var(--sp-5); }
.testi-slide p.quote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--text-on-dark); font-style: italic; line-height: 1.5; }
.testi-name { margin-top: var(--sp-6); font-weight: 700; color: var(--text-on-dark); }
.testi-role { font-size: 0.85rem; color: var(--gold); margin-top: 2px; }
.testi-stars { display: flex; justify-content: center; gap: 4px; margin-top: var(--sp-5); }
.testi-stars svg { width: 16px; height: 16px; color: var(--gold); }
.testi-nav { display: flex; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-7); }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-dark); border: none; transition: background .3s, transform .3s; }
.testi-dot.is-active { background: var(--gold); transform: scale(1.3); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* Testimonial cards (grid layout, testimonials.html) */
.review-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.review-card .testi-stars { justify-content: flex-start; margin-top: 0; margin-bottom: var(--sp-4); }
.review-card p.quote { font-style: italic; color: var(--text-on-light); font-size: 1rem; }
.review-foot { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-5); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.review-foot .name { font-weight: 700; font-size: 0.92rem; }
.review-foot .src { font-size: 0.78rem; color: var(--text-on-light-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #201b12 100%);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-9) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(198,162,93,0.25), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 700px; margin-inline: auto; }
.cta-band p { max-width: 560px; margin: var(--sp-4) auto 0; color: var(--text-on-dark-muted); }
.cta-actions { display: flex; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-7); flex-wrap: wrap; }
@media (max-width: 640px) { .cta-band { padding: var(--sp-8) var(--sp-5); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark); padding-top: var(--sp-9); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--sp-7);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border-dark);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { max-width: 300px; margin-top: var(--sp-4); font-size: 0.92rem; }
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s;
  color: var(--text-on-dark-muted);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-5); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a, .footer-col li { font-size: 0.92rem; color: var(--text-on-dark-muted); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .contact-line svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--sp-5);
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer-bottom .legal-links { display: flex; gap: var(--sp-5); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; }
.field input, .field select, .field textarea {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--paper);
  font-size: 0.95rem;
  transition: border-color .3s, box-shadow .3s;
}
.bg-ink .field input, .bg-ink .field select, .bg-ink .field textarea {
  background: var(--surface);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,162,93,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 0.78rem; color: var(--text-on-light-muted); }

/* Vehicle picker (quote form) */
.vehicle-picker { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-3); }
@media (max-width: 900px) { .vehicle-picker { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .vehicle-picker { grid-template-columns: repeat(2, 1fr); } }
.vehicle-option { position: relative; }
.vehicle-option input { position: absolute; opacity: 0; }
.vehicle-option label {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: var(--sp-4) var(--sp-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  height: 100%;
}
.vehicle-option label svg { width: 30px; height: 30px; color: var(--text-on-light-muted); transition: color .3s; }
.vehicle-option input:checked + label { border-color: var(--gold); background: rgba(198,162,93,0.08); }
.vehicle-option input:checked + label svg { color: var(--gold); }
.vehicle-option input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.form-steps { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-8); flex-wrap: wrap; }
.form-step-dot {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.82rem; font-weight: 700; color: var(--text-on-light-muted);
}
.form-step-dot .circle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}
.form-step-dot.is-active { color: var(--text-on-light); }
.form-step-dot.is-active .circle { border-color: var(--gold); background: var(--gold); color: #1a1409; }
.form-step-connector { width: 32px; height: 1px; background: var(--border-light); }

.form-panel { display: none; }
.form-panel.is-active { display: block; animation: fadeUp .5s var(--ease); }
.form-actions { display: flex; justify-content: space-between; margin-top: var(--sp-7); gap: var(--sp-4); }

.success-panel { text-align: center; padding: var(--sp-8) 0; display: none; }
.success-panel.is-active { display: block; animation: fadeUp .5s var(--ease); }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(79,157,110,0.12); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.success-icon svg { width: 32px; height: 32px; }

/* ---------- FAQ Accordion ---------- */
.accordion { border-top: 1px solid var(--border-light); }
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  background: none; border: none; text-align: left;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--text-on-light);
}
.accordion-trigger svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; transition: transform .35s var(--ease); }
.accordion-item.is-open .accordion-trigger svg { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.accordion-panel-inner { padding-bottom: var(--sp-5); font-size: 0.95rem; color: var(--text-on-light-muted); max-width: 700px; }

/* ---------- Blog ---------- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex; flex-direction: column; height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ink), #201b12);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-media svg { width: 34%; color: var(--gold); opacity: 0.85; }
.blog-cat { position: absolute; top: var(--sp-4); left: var(--sp-4); background: var(--gold); color: #1a1409; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); }
.blog-body { padding: var(--sp-6); flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.78rem; color: var(--text-on-light-muted); margin-bottom: var(--sp-3); display: flex; gap: var(--sp-3); align-items: center; }
.blog-body h3 { flex-grow: 0; margin-bottom: var(--sp-3); }
.blog-body p { font-size: 0.92rem; flex-grow: 1; }
.blog-body .btn-ghost { margin-top: var(--sp-5); font-size: 0.85rem; font-weight: 700; }

.prose { max-width: 720px; margin-inline: auto; font-size: 1.05rem; }
.prose h2 { margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p { margin-bottom: var(--sp-5); color: var(--text-on-light-muted); }
.prose ul { margin: 0 0 var(--sp-5); padding-left: 1.3rem; list-style: disc; color: var(--text-on-light-muted); }
.prose li { margin-bottom: var(--sp-2); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  margin: var(--sp-6) 0;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--ink);
  border-top: 1px solid var(--border-dark);
  padding: 10px 14px;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}
.mobile-cta-bar .mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}
.mobile-cta-bar .mobile-cta-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.mobile-cta-bar .mobile-cta-quote {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 0.88rem;
  white-space: nowrap;
}
@media (max-width: 720px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 74px; } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border-light); width: 100%; }
.text-gold { color: var(--gold); }
.eyebrow-line { display: flex; align-items: center; gap: var(--sp-6); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-9); align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: var(--sp-7); } }
.media-frame {
  aspect-ratio: 4/5;
  max-height: 540px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--surface), var(--ink));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.media-frame svg { width: 42%; color: var(--gold); opacity: 0.9; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 15%, rgba(198,162,93,0.2), transparent 60%); pointer-events: none; }
.media-badge {
  position: absolute; bottom: var(--sp-5); left: var(--sp-5); right: var(--sp-5);
  background: rgba(10,10,12,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-4);
  color: var(--text-on-dark);
}
.media-badge .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); }
.media-badge .txt { font-size: 0.78rem; color: var(--text-on-dark-muted); }

.skip-link {
  position: absolute;
  top: -100px;
  left: -100px;
  opacity: 0;
  pointer-events: none;
  background: var(--gold);
  color: #1a1409;
  padding: 12px 20px;
  z-index: 999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: auto;
}

::selection { background: var(--gold); color: #1a1409; }

/* ---------- Google Maps Places Autocomplete ---------- */
.pac-container {
  background-color: #18181d !important;
  border: 1px solid rgba(198, 162, 93, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  margin-top: 6px !important;
  padding: 6px 0 !important;
  z-index: 99999 !important;
}
.pac-item {
  padding: 10px 16px !important;
  font-size: 0.9rem !important;
  color: #a8a5a0 !important;
  border-top: 1px solid rgba(246, 243, 236, 0.06) !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease !important;
}
.pac-item:first-child {
  border-top: none !important;
}
.pac-item:hover, .pac-item-selected {
  background-color: rgba(198, 162, 93, 0.15) !important;
}
.pac-item-query {
  font-size: 0.95rem !important;
  color: #f4f1ea !important;
  font-weight: 600 !important;
  margin-right: 6px !important;
}
.pac-icon {
  filter: invert(75%) sepia(35%) saturate(600%) hue-rotate(5deg) !important;
}
.pac-matched {
  color: #c6a25d !important;
  font-weight: 700 !important;
}

/* Floating WhatsApp Button - Premium Animated */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  padding: 12px 22px 12px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38), 0 4px 14px rgba(0, 0, 0, 0.35);
  text-decoration: none !important;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.25);
  user-select: none;
}

/* Glowing Pulse Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50px;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: wa-pulse 2.4s cubic-bezier(0.25, 0, 0, 1) infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(0.96);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55), 0 8px 22px rgba(0, 0, 0, 0.4);
  color: #ffffff !important;
  background: linear-gradient(135deg, #28e16d 0%, #149c8c 100%);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.whatsapp-float-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  background-color: #00FF66;
  border: 2px solid #128C7E;
  border-radius: 50%;
  box-shadow: 0 0 6px #00FF66;
  animation: wa-online-pulse 2s infinite alternate;
}

@keyframes wa-online-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

@media (max-width: 720px) {
  .whatsapp-float {
    bottom: 86px;
    right: 18px;
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-float::before {
    border-radius: 50%;
  }
  .whatsapp-float span:not(.whatsapp-badge) {
    display: none;
  }
}


.brand-img {
  height: 32px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
@media (max-width: 640px) {
  .brand-img {
    height: 26px;
    max-width: 150px;
  }
}
