/*
Theme Name: Blue Skies Limousine
Theme URI: https://blueskieslimo.com
Author: Blue Skies Limousine
Description: Custom theme for Blue Skies Limousine — San Diego & Orange County luxury transportation. Navy & gold "Blue Skies" horizon design system.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: blueskies-limo
*/

/* ==========================================================================
   Blue Skies Limousine — Shared Stylesheet
   San Diego & Orange County Luxury Transportation
   Palette: Deep Navy & Gold ("Blue Skies" horizon motif)
   ========================================================================== */

:root {
  /* Color system */
  --navy-950: #050f20;
  --navy-900: #0a1e3a;
  --navy-800: #0f2a4d;
  --navy-700: #163a63;
  --navy-600: #204a79;
  --gold-600: #a9821b;
  --gold-500: #c9a227;
  --gold-400: #d9b64a;
  --gold-300: #e8cd7a;
  --gold-200: #f2e2ae;
  --cream: #f8f4ea;
  --cream-dim: #efe8d8;
  --white: #ffffff;
  --ink: #1a2130;
  --muted: #5b6472;
  --muted-light: #9aa5b6;
  --line: rgba(201, 162, 39, 0.22);
  --line-soft: rgba(10, 30, 58, 0.09);

  /* Type */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / shape */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --shadow-soft: 0 20px 50px -25px rgba(5, 15, 32, 0.45);
  --shadow-card: 0 12px 30px -18px rgba(5, 15, 32, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; margin: 0 0 .5em; line-height: 1.15; color: var(--navy-900); }
p { margin: 0 0 1em; line-height: 1.75; color: var(--muted); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-300); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { font-size: 17px; margin: 0; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .4px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 24px -10px rgba(201, 162, 39, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(201, 162, 39, 0.65); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(248, 244, 234, 0.45);
  color: var(--cream);
}
.btn-outline-light:hover { border-color: var(--gold-300); color: var(--gold-300); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy-900);
  color: var(--cream);
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 15.5px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 30, 58, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .brand-logo { height: 44px; }
.brand-mark {
  width: 42px; height: 42px;
  border: 1.5px solid var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--cream);
  letter-spacing: .3px;
}
.brand-text .tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 244, 234, 0.82);
  letter-spacing: .2px;
  padding: 6px 0;
  position: relative;
  transition: color .18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--gold-400);
  transition: width .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--gold-300); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-300); font-weight: 700; font-size: 14.5px;
}
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(201,162,39,.4);
  border-radius: var(--radius-sm);
  background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 20px; height: 1.5px; background: var(--gold-300); display: block; }

@media (max-width: 960px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--navy-950); flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 0; padding: 20px 28px; transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid rgba(201,162,39,.12); font-size: 16px; }
  .nav-phone span.phone-label-full { display: inline; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 961px) {
  .nav-only-mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--cream);
  background: radial-gradient(ellipse at 20% -10%, rgba(217,182,74,.20), transparent 55%),
              linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 78%, var(--gold-600) 145%);
  overflow: hidden;
  padding: 128px 0 140px;
}
.hero.compact { padding: 84px 0 96px; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(232,205,122,.55) 0, transparent 60%),
    radial-gradient(1px 1px at 40% 15%, rgba(232,205,122,.4) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(232,205,122,.5) 0, transparent 60%),
    radial-gradient(1px 1px at 85% 10%, rgba(232,205,122,.4) 0, transparent 60%),
    radial-gradient(1px 1px at 60% 50%, rgba(232,205,122,.3) 0, transparent 60%);
  pointer-events: none;
}
.hero-horizon {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 220px;
  background: linear-gradient(180deg, transparent, rgba(5,15,32,.55) 90%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 740px; }
.hero-inner.centered { max-width: 820px; margin: 0 auto; text-align: center; }
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold-300); font-style: normal; }
.hero p.lead {
  color: rgba(248,244,234,.82);
  font-size: 19px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-inner:not(.centered) p.lead { margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-inner.centered .hero-actions { justify-content: center; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(201,162,39,.22);
}
.hero-inner.centered .hero-badges { justify-content: center; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(248,244,234,.75); font-weight: 600; letter-spacing: .2px; }
.hero-badge svg { width: 18px; height: 18px; color: var(--gold-400); }

.page-hero-crumb { font-size: 13px; color: rgba(248,244,234,.6); margin-bottom: 18px; letter-spacing: .3px; }
.page-hero-crumb a { color: var(--gold-300); font-weight: 600; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-900); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.trust-item { text-align: center; color: var(--cream); }
.trust-item .num { font-family: var(--font-display); font-size: 30px; color: var(--gold-300); font-weight: 700; }
.trust-item .lbl { font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(248,244,234,.68); margin-top: 4px; }
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold-300); }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15px; margin-bottom: 18px; }
.card-link { font-size: 13.5px; font-weight: 700; letter-spacing: .3px; color: var(--gold-600); display: inline-flex; align-items: center; gap: 6px; }
.card-link svg { width: 14px; height: 14px; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Alternating feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse .feature-visual { order: 2; }
@media (max-width: 860px) {
  .feature-row, .feature-row.reverse .feature-visual { grid-template-columns: 1fr; order: 0; }
  .feature-row { grid-template-columns: 1fr; }
}
.feature-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--navy-900), var(--navy-700) 55%, var(--gold-600));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}

/* Photo placeholder — stands in for a real photo until one is supplied.
   Swap by replacing this element with an <img> tag pointing at the real file. */
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: repeating-linear-gradient(135deg, rgba(217,182,74,.18) 0 16px, rgba(217,182,74,.04) 16px 32px);
  text-align: center;
  padding: 24px;
}
.photo-placeholder .ph-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(5,15,32,.35);
  border: 1px solid rgba(217,182,74,.4);
  display: flex; align-items: center; justify-content: center;
}
.feature-visual .photo-placeholder .ph-icon svg,
.fleet-media .photo-placeholder .ph-icon svg,
.hero .photo-placeholder .ph-icon svg {
  width: 24px; height: 24px; color: var(--gold-300);
}
.feature-visual img, .fleet-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-visual.split { display: flex; }
.feature-visual.split img { position: static; width: 50%; height: 100%; object-fit: cover; }
.feature-visual.split img:first-child { border-right: 3px solid var(--cream); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,15,32,.82) 0%, rgba(5,15,32,.55) 45%, rgba(5,15,32,.88) 100%);
}
.photo-placeholder .ph-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-300); opacity: .9; max-width: 240px; line-height: 1.6;
}
/* Corner variant — used inside the hero, where a centered label would sit behind the headline */
.photo-placeholder.corner {
  align-items: flex-end; justify-content: flex-end; padding: 0;
}
.photo-placeholder.corner .ph-tag {
  margin: 22px; padding: 9px 16px;
  background: rgba(5,15,32,.6);
  border: 1px solid rgba(217,182,74,.45);
  border-radius: 20px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-300);
}
.photo-placeholder.corner .ph-tag svg { width: 15px; height: 15px; color: var(--gold-300); }
.feature-visual svg { width: 42%; color: rgba(248,244,234,.9); }
.feature-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,.5), transparent 60%),
                     radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,.35), transparent 60%),
                     radial-gradient(1px 1px at 40% 80%, rgba(255,255,255,.3), transparent 60%);
}
.feature-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); }
.feature-list svg { width: 19px; height: 19px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

/* Fleet cards */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
}
.fleet-media {
  aspect-ratio: 16/9;
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800) 60%, var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.fleet-media svg { width: 34%; color: rgba(248,244,234,.92); }
.fleet-tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(5,15,32,.55);
  border: 1px solid rgba(201,162,39,.5);
  color: var(--gold-300);
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 20px;
}
.visual-badge {
  position: absolute; bottom: 16px; right: 16px;
  width: 92px; height: 92px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(5,15,32,.5);
  border: 3px solid var(--cream);
  z-index: 2;
}
@media (max-width: 560px) { .visual-badge { width: 68px; height: 68px; bottom: 12px; right: 12px; } }
.fleet-body { padding: 30px 30px 32px; }
.fleet-body h3 { font-size: 23px; margin-bottom: 6px; }
.fleet-meta { display: flex; gap: 18px; margin-bottom: 16px; }
.fleet-meta span { font-size: 12.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.fleet-meta svg { width: 15px; height: 15px; color: var(--gold-600); }
.fleet-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.fleet-amenities span { font-size: 12.5px; background: var(--cream); border: 1px solid var(--line); color: var(--navy-800); padding: 6px 12px; border-radius: 20px; font-weight: 600; }

/* Testimonials */
.testi-card { background: var(--navy-900); border-radius: var(--radius-lg); padding: 34px 30px; color: var(--cream); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; color: var(--gold-400); }
.testi-card p.quote { color: rgba(248,244,234,.88); font-size: 15px; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gold-400); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--gold-300); font-size: 15px; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--gold-300); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800) 60%, var(--gold-600));
  color: var(--cream);
  text-align: center;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 38px); }
.cta-band p { color: rgba(248,244,234,.82); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-tabs { display: flex; gap: 8px; margin-bottom: 26px; border-bottom: 1.5px solid var(--line-soft); }
.form-tab {
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 700; letter-spacing: .2px;
  color: var(--muted-light); background: none; border: none; cursor: pointer;
  padding: 12px 4px 14px; margin-bottom: -1.5px;
  border-bottom: 2.5px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.form-tab + .form-tab { margin-left: 22px; }
.form-tab:hover { color: var(--navy-800); }
.form-tab.active { color: var(--navy-900); border-bottom-color: var(--gold-500); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--navy-800); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line-soft);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,39,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted-light); margin-top: 14px; }

/* Info panel (contact page) */
.info-panel { background: var(--navy-900); border-radius: var(--radius-lg); padding: 40px 34px; color: var(--cream); }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(201,162,39,.16); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-400); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row .ic svg { width: 19px; height: 19px; color: var(--gold-300); }
.info-row .txt .h { font-weight: 700; font-size: 14.5px; margin-bottom: 3px; }
.info-row .txt .d { font-size: 13.5px; color: rgba(248,244,234,.72); line-height: 1.6; }
.info-row .txt a { color: var(--gold-300); font-weight: 600; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line-soft); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* Area list */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pills span, .area-pills a { font-size: 13.5px; font-weight: 600; color: var(--navy-800); background: var(--white); border: 1px solid var(--line); padding: 9px 16px; border-radius: 20px; text-decoration: none; display: inline-block; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.area-pills a:hover, .area-pills a:focus-visible { background: var(--navy-900); color: var(--gold-300); border-color: var(--navy-900); }

/* Value / stat strip on About */
.value-card { text-align: center; padding: 10px; }
.value-card .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--cream-dim); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-card .ic svg { width: 28px; height: 28px; color: var(--gold-600); }
.value-card h3 { font-size: 18px; }
.value-card p { font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(248,244,234,.78); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(201,162,39,.15); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text .name { color: var(--cream); }
.footer-brand p { color: rgba(248,244,234,.62); font-size: 14px; margin: 18px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(201,162,39,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .18s ease, background .18s ease; }
.footer-social a:hover { background: rgba(201,162,39,.12); border-color: var(--gold-400); }
.footer-social svg { width: 16px; height: 16px; color: var(--gold-300); }
.footer-col h4 { font-family: var(--font-body); color: var(--cream); font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col address { font-size: 14.5px; color: rgba(248,244,234,.68); font-style: normal; transition: color .18s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-col .hours-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(248,244,234,.68); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(248,244,234,.5); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: rgba(248,244,234,.5); }
.footer-legal a:hover { color: var(--gold-300); }

/* Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); border: 1px solid var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; color: var(--gold-300); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.divider-gold { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold-500), transparent); margin: 0 auto 22px; }
.badge-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.badge-strip span { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy-800); background: var(--white); border: 1px solid var(--line); padding: 10px 18px; border-radius: 22px; }

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .form-grid { gap: 20px; }
  .card, .fleet-body, .info-panel { padding: 26px 22px; }
}
