/* ============================================================
   PACIFIC ELITE RIDES — Global Stylesheet
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --black:       #080808;
  --black-soft:  #0f0f0f;
  --black-card:  #141414;
  --black-border:#1e1e1e;
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-dark:   #9A7830;
  --gold-subtle: rgba(201,168,76,0.08);
  --gold-line:   rgba(201,164,74,0.20);
  --gold-faint:  rgba(201,164,74,0.09);
  --gold-glow:   rgba(201,164,74,0.28);
  --white:       #F8F4EE;
  --white-soft:  #C8C2B8;
  --gray:        #5A5550;
  --success:     #4CAF80;
  --error:       #E05555;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --trans:     0.3s var(--ease);
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 48px rgba(201,168,76,0.12);
  --glow-gold:   0 0 24px rgba(201,168,76,0.35);

  --container: 1200px;
  --section-py: 96px;
}

/* ===== GLOBAL ===== */
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 768px)  { .container { padding: 0 24px; } }

/* ===== TYPOGRAPHY ===== */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.label::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
  flex-shrink: 0;
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; }
.heading-xl {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700; color: var(--white);
}
.heading-lg {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; color: var(--white);
}
.heading-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; color: var(--white);
}
.heading-sm {
  font-size: 1.1rem; font-weight: 600; color: var(--white);
}
.gold { color: var(--gold); font-style: italic; }
.body-lg { font-size: 1.05rem; color: var(--white-soft); line-height: 1.75; }
.body-sm { font-size: 0.875rem; color: var(--white-soft); line-height: 1.7; }
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 40px;
}
.divider-center { margin: 20px auto 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.4px;
  border-radius: var(--radius-sm); transition: var(--trans);
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 15px 32px;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 14px 28px;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-subtle);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--white-soft); padding: 12px 20px;
}
.btn-ghost:hover { color: var(--white); }
.btn-lg { font-size: 15px; padding: 18px 40px; }
.btn-sm { font-size: 13px; padding: 10px 20px; }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease),
              border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom-color: rgba(201,168,76,0.1);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px; white-space: nowrap;
}
.nav-logo-tag {
  font-size: 8.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gray);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--white-soft); position: relative;
  transition: color var(--trans);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 13px; font-weight: 600; color: var(--white-soft);
  transition: color var(--trans);
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile nav overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 600;
  color: var(--white); transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta { margin-top: 12px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.55) 45%, rgba(8,8,8,0.75) 100%),
    url('../hero-bg.jpg') center center / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,168,76,0.06), transparent);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  15%  { opacity: 0.5; }
  85%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-100vh) scale(0.8); }
}
.hero-gold-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  animation: pulse-line 4s ease-in-out infinite;
}
@keyframes pulse-line { 0%,100% { opacity: 0.2; } 50% { opacity: 0.8; } }

.hero-inner {
  position: relative; z-index: 2;
  padding: 140px 0 100px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.25);
  padding: 9px 18px; border-radius: 2px; margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero-h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}
.hero-sub {
  font-size: 1.1rem; color: var(--white-soft);
  line-height: 1.75; max-width: 520px; margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}
.hero-trust {
  display: flex; gap: 36px; margin-top: 56px;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-trust-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: fadeUp 1s var(--ease) 1s both;
}
.scroll-hint span { font-size: 9px; letter-spacing: 2.5px; color: var(--gray); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: extend 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes extend {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  80%  { transform: scaleY(1); opacity: 0; }
  100% { transform: scaleY(0); opacity: 0; }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 56px; align-items: center;
  animation: ticker-move 28s linear infinite;
  width: max-content; white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white-soft); flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes ticker-move { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION BASE ===== */
.section { padding: var(--section-py) 0; }
.section-dark { background: var(--black-soft); }
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .divider { margin: 20px auto 0; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--black-card); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background var(--trans);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.service-card:hover { background: #181818; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 700;
  color: rgba(201,168,76,0.1); line-height: 1; margin-bottom: 20px;
  transition: color var(--trans);
}
.service-card:hover .service-num { color: rgba(201,168,76,0.2); }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-subtle); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.service-name { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; color: var(--white-soft); line-height: 1.75; margin-bottom: 24px; }
.service-price {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.5px; padding: 6px 14px;
  background: var(--gold-subtle); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold);
  margin-top: 20px; transition: gap var(--trans);
}
.service-link:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: calc(16.6% + 28px); right: calc(16.6% + 28px);
  height: 1px; background: linear-gradient(90deg, var(--gold-dark), transparent 50%, var(--gold-dark));
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.1);
}
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 0.875rem; color: var(--white-soft); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; background: var(--black-border);
  border: 1px solid var(--black-border); border-radius: var(--radius);
  overflow: hidden;
}
.pricing-card {
  background: var(--black-card); padding: 40px 32px;
  position: relative; transition: background var(--trans);
  display: flex; flex-direction: column;
}
.pricing-card .btn { margin-top: auto; }
.pricing-card.featured {
  background: #161410;
}
.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 4px 10px; border-radius: 20px;
}
.pricing-card:hover { background: #181818; }
.pricing-card.featured:hover { background: #1a1710; }
.price-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.price-amount {
  display: flex; align-items: flex-start; gap: 4px; margin-bottom: 8px;
}
.price-dollar { font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-top: 10px; }
.price-num { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.price-unit { font-size: 0.875rem; color: var(--gray); align-self: flex-end; margin-bottom: 8px; }
.price-desc { font-size: 0.875rem; color: var(--white-soft); margin-bottom: 28px; line-height: 1.6; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--white-soft);
}
.price-check { color: var(--gold); flex-shrink: 0; }

/* ===== FLEET ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fleet-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.fleet-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}
.fleet-img {
  aspect-ratio: 16/9; overflow: hidden; background: #0e0e0e;
  position: relative;
}
.fleet-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 50%);
}
.fleet-body { padding: 28px; }
.fleet-name { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.fleet-cap { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.fleet-tag {
  font-size: 11px; padding: 4px 10px; border-radius: 20px;
  background: var(--gold-subtle); border: 1px solid rgba(201,168,76,0.18);
  color: var(--white-soft);
}
.fleet-cta {
  display: block; text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--gold); padding: 10px;
  border: 1px solid rgba(201,168,76,0.25); border-radius: var(--radius-sm);
  transition: background var(--trans), border-color var(--trans);
}
.fleet-cta:hover { background: var(--gold-subtle); border-color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius); padding: 36px;
  transition: border-color var(--trans), transform var(--trans);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.stars { display: flex; gap: 3px; margin-bottom: 20px; color: var(--gold); font-size: 14px; }
.testimonial-quote {
  font-size: 0.9rem; color: var(--white-soft); line-height: 1.8;
  font-style: italic; margin-bottom: 28px; position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-head); font-size: 3.5rem; color: var(--gold);
  line-height: 0.6; vertical-align: -0.6rem; margin-right: 4px; opacity: 0.6;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-initials {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--black);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-detail { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--black-border);
}
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 1rem; font-weight: 500; color: var(--white);
  transition: color var(--trans); cursor: pointer;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: transform var(--trans), background var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-subtle); }
.faq-a {
  font-size: 0.9rem; color: var(--white-soft); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0; text-align: center;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(201,168,76,0.07), transparent),
    var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== BOOKING FORM ===== */
.form-wrap {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg); padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold);
}
.form-ctrl {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: var(--white); font-size: 14px;
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
}
.form-ctrl::placeholder { color: var(--gray); }
.form-ctrl:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-ctrl option { background: var(--black-card); color: var(--white); }
.addr-wrap { position: relative; }
.addr-wrap .form-ctrl { padding-left: 42px; }
.addr-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gold); pointer-events: none; }

/* Multi-stop */
.stops-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 10px; }
.stop-row { display: flex; gap: 8px; align-items: center; }
.stop-row .addr-wrap { flex: 1; }
.stop-del {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: rgba(224,85,85,0.1); border: 1px solid rgba(224,85,85,0.2);
  color: var(--error); display: flex; align-items: center; justify-content: center;
  transition: background var(--trans); cursor: pointer;
}
.stop-del:hover { background: rgba(224,85,85,0.2); }
.btn-add-stop {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--gold);
  padding: 9px 14px; border: 1px dashed rgba(201,168,76,0.3); border-radius: var(--radius-sm);
  transition: border-color var(--trans), background var(--trans); cursor: pointer;
}
.btn-add-stop:hover { border-color: var(--gold); background: var(--gold-subtle); }

/* Pay toggle */
.pay-toggle { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(201,168,76,0.18); border-radius: var(--radius-sm); overflow: hidden; }
.pay-opt {
  padding: 13px 16px; text-align: center; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--white-soft);
  transition: background var(--trans), color var(--trans);
}
.pay-opt:first-child { border-right: 1px solid rgba(201,168,76,0.18); }
.pay-opt.active { background: rgba(201,168,76,0.12); color: var(--gold); font-weight: 600; }
.pay-opt:not(.active):hover { background: rgba(255,255,255,0.03); }
#sq-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); border-radius: var(--radius-sm); padding: 14px; min-height: 48px; }

/* Submit */
.btn-submit {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
  position: relative; overflow: hidden;
}
.btn-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity var(--trans);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,168,76,0.4); }
.btn-submit:hover::after { opacity: 1; }
.btn-submit:disabled { opacity: 0.55; transform: none; cursor: not-allowed; }
.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.25); border-top-color: var(--black);
  animation: spin 0.7s linear infinite; display: none;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }
.form-note a { color: var(--gold); }
.toast {
  display: none; padding: 16px 20px; border-radius: var(--radius-sm); margin-top: 16px;
  font-size: 13px; font-weight: 500; text-align: center;
}
.toast.success { background: rgba(76,175,128,0.1); border: 1px solid rgba(76,175,128,0.3); color: #6fd8a4; }
.toast.error   { background: rgba(224,85,85,0.1);  border: 1px solid rgba(224,85,85,0.25); color: #f08080; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand-desc {
  font-size: 13px; color: var(--white-soft); line-height: 1.75;
  margin-top: 16px; max-width: 300px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.social-btn:hover { border-color: rgba(201,168,76,0.3); color: var(--gold); background: var(--gold-subtle); }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--white-soft); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--white-soft);
}
.footer-contact-row svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--gray); transition: color var(--trans); }
.footer-legal a:hover { color: var(--gold); }

/* Floating mobile CTA */
.float-book {
  display: none; position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 90; width: calc(100% - 40px); max-width: 360px;
}
.float-book a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-size: 14px; font-weight: 700; padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  transition: background var(--trans);
}
.float-book a:active { transform: scale(0.98); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  border-bottom: 1px solid var(--black-border);
  text-align: center;
}
.page-hero .heading-xl { margin-bottom: 16px; }
.page-hero .body-lg { max-width: 560px; margin: 0 auto; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* ===== LANGUAGE ===== */
.lang-es { display: none; }

/* ============================================================
   PAGE-SPECIFIC STYLES (services / about / booking pages)
   ============================================================ */

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(201,168,76,0.10) 0%, transparent 60%),
              var(--black);
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── SERVICE DETAIL SECTIONS ── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-reverse { direction: rtl; }
.service-detail-reverse > * { direction: ltr; }

.service-detail-features { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.sdf-row { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.sdf-check { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

.service-detail-price {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--black-border);
}
.sdp-from { font-size: 13px; color: var(--white-soft); }
.sdp-amount { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,52px); color: var(--gold); }
.sdp-unit { font-size: 14px; color: var(--white-soft); }

.service-detail-img { position: relative; }
.service-detail-img img { width: 100%; border-radius: 4px; object-fit: cover; max-height: 480px; }

.service-detail-badge {
  position: absolute; bottom: 24px; left: -20px;
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 14px 18px; border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.sdb-icon { font-size: 22px; }
.sdb-label { font-size: 13px; font-weight: 600; color: var(--gold); }
.sdb-sub { font-size: 11px; color: var(--white-soft); margin-top: 2px; }

/* ── COVERAGE GRID ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.coverage-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 28px 24px;
  border-radius: 4px;
  text-align: center;
  transition: border-color .3s;
}
.coverage-item:hover { border-color: var(--gold); }
.coverage-icon { font-size: 28px; margin-bottom: 12px; }
.coverage-city { font-size: 16px; font-weight: 600; color: var(--white); }
.coverage-note { font-size: 12px; color: var(--white-soft); margin-top: 6px; line-height: 1.4; }

/* ── ABOUT PAGE ── */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: start;
}
.about-stats-col {
  display: flex; flex-direction: column; gap: 0;
  min-width: 160px;
}
.about-stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
  text-align: right;
}
.about-stat:first-child { padding-top: 0; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 40px; line-height: 1; }
.about-stat-label { font-size: 12px; color: var(--white-soft); margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 28px;
  border-radius: 4px;
  transition: border-color .3s;
}
.value-card:hover { border-color: var(--gold-dark); }
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--white-soft); line-height: 1.6; }

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-row { display: flex; gap: 14px; }
.why-check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--gold-subtle); border: 1px solid var(--gold-dark);
  color: var(--gold); font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-top: 2px;
}
.why-sub { font-size: 13px; color: var(--white-soft); margin-top: 4px; line-height: 1.5; }
.why-us-img-col { position: relative; }
.why-us-badge {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 14px 18px; border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.trust-badge {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 28px 20px;
  border-radius: 4px;
  text-align: center;
}
.trust-badge-icon { font-size: 32px; margin-bottom: 12px; }
.trust-badge-title { font-size: 15px; font-weight: 600; color: var(--gold); }
.trust-badge-sub { font-size: 12px; color: var(--white-soft); margin-top: 6px; }

/* ── BOOKING PAGE ── */
.booking-page {
  padding-top: 110px;
  padding-bottom: var(--section-py);
  min-height: 100vh;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.booking-form-header { margin-bottom: 32px; }

.form-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  margin-top: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}
.form-section-title:first-of-type { margin-top: 0; }

.stops-section { margin: 12px 0; }
.stop-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.stop-del {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: rgba(224,85,85,.12);
  color: var(--error);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.stop-del:hover { background: rgba(224,85,85,.24); }
.add-stop-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gold);
  border: 1px dashed var(--gold-dark);
  border-radius: 4px;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  transition: background .2s, border-color .2s;
  margin-top: 4px;
}
.add-stop-btn:hover { background: var(--gold-subtle); border-color: var(--gold); }

/* Pay toggle */
.pay-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.pay-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 14px 16px;
  text-align: left;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.pay-btn.active { border-color: var(--gold); background: var(--gold-subtle); }
.pay-btn:hover:not(.active) { border-color: var(--gold-dark); }
.pay-btn-icon { font-size: 20px; }
.pay-btn-title { font-size: 13px; font-weight: 600; color: var(--white); }
.pay-btn-sub { font-size: 11px; color: var(--white-soft); margin-top: 2px; }

/* Square card field */
.sq-card-label { font-size: 12px; color: var(--white-soft); margin-bottom: 8px; }
.sq-card-field {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 14px 16px;
  min-height: 50px;
}

/* Form note */
.form-note {
  font-size: 12px;
  color: var(--white-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* SIDEBAR */
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }
.sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 20px;
}
.sidebar-card-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sidebar-phone-link {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}
.sidebar-phone-link:hover { color: var(--gold); }
.sidebar-note { font-size: 12px; color: var(--white-soft); line-height: 1.5; }

.sidebar-price-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-price-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; padding-bottom: 10px;
  border-bottom: 1px solid var(--black-border);
}
.sidebar-price-row:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-price-amt { color: var(--gold); font-weight: 600; }

.sidebar-trust-items { display: flex; flex-direction: column; gap: 10px; }
.sidebar-trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.sidebar-trust-icon {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-dark);
  color: var(--gold); font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

.btn-xl {
  padding: 18px 32px;
  font-size: 15px;
  letter-spacing: .04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { gap: 28px; }
  .steps::before { display: none; }
  /* inner pages */
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-reverse { direction: ltr; }
  .service-detail-badge { left: 0; right: auto; bottom: 16px; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-stats-col { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .about-stat { flex: 1; min-width: 140px; text-align: center; border-bottom: none; border-right: 1px solid var(--black-border); padding: 20px; }
  .about-stat:last-child { border-right: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* ── Navbar ── */
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .hamburger  { display: flex; }
  /* Hide lang buttons + Book Now from navbar on mobile (they live in mobile-menu) */
  .nav-right > div   { display: none; }
  .nav-right > a.btn { display: none; }
  .navbar { padding: 16px 0; }

  /* ── Hero ── */
  .hero-inner  { padding: 110px 0 72px; }
  .hero-badge  { font-size: 10px; letter-spacing: 1.8px; padding: 8px 14px; }
  .hero-sub    { font-size: 1rem; }
  .hero-trust  { gap: 20px; flex-wrap: wrap; }
  .hero-trust-num { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* ── Float book ── */
  .float-book  { display: block; }
  body { padding-bottom: 72px; }

  /* ── Forms ── */
  .form-row    { grid-template-columns: 1fr; }
  .form-wrap   { padding: 28px 24px; }
  .pay-toggle  { grid-template-columns: 1fr; }
  .pay-opt:first-child { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.18); }

  /* ── Sections ── */
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; }
  .cta-actions  { flex-direction: column; }

  /* ── Fleet cards ── */
  .fleet-card-img { height: 200px; }

  /* ── Inner pages ── */
  .values-grid  { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: 1fr 1fr; }
  .coverage-grid{ grid-template-columns: 1fr; }
  .service-detail-badge { position: static; margin-top: 12px; }
  .about-stats-col { flex-direction: column; }
  .about-stat   { border-right: none; border-bottom: 1px solid var(--black-border); text-align: left; }
  .page-hero    { padding: 110px 0 48px; }
  .page-hero h1 { font-size: 2.4rem; }
}
/* ============================================================
   BOOKING WIZARD
   ============================================================ */
@keyframes wizSlide { from { transform: translateY(14px); } to { transform: none; } }
@keyframes wizFade  { from { opacity: 0; } to { opacity: 1; } }

.wiz-page {
  min-height: 100vh;
  background: radial-gradient(ellipse 100% 60% at 50% 0%, #1e190e 0%, #0d0c0a 60%);
  display: flex;
  justify-content: center;
  padding: 120px 18px 80px;
}
.wiz-outer { width: 100%; max-width: 720px; }

/* Brand bar */
.wiz-brand-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.wiz-logo { display: flex; flex-direction: column; text-decoration: none; }
.wiz-logo-name {
  font-family: var(--font-head); font-size: 21px; font-weight: 700;
  color: var(--gold); letter-spacing: .01em;
}
.wiz-logo-tag {
  font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(243,239,230,.45); margin-top: 2px;
}
.wiz-lang-btns { display: flex; gap: 6px; }
.wiz-lang-btn {
  padding: 6px 13px; border-radius: 7px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .05em; cursor: pointer; font-family: var(--font-body);
  background: transparent; color: rgba(243,239,230,.6);
  border: 1px solid var(--gold-line);
  transition: background .15s, color .15s, border-color .15s;
}
.wiz-lang-btn.active {
  background: var(--gold); color: #1a1408; border-color: var(--gold);
}

/* Card */
.wiz-card {
  background: #1c1912;
  border: 1px solid rgba(201,164,74,0.32);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
  overflow: hidden;
}
.wiz-header { padding: 34px 38px 0; }
.wiz-eyebrow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.wiz-eyebrow-label {
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.wiz-step-caption { font-size: 11px; letter-spacing: .04em; color: rgba(243,239,230,.5); }
.wiz-progress-track {
  height: 4px; border-radius: 3px; background: rgba(255,255,255,.06); overflow: hidden;
}
.wiz-progress-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  transition: width .45s cubic-bezier(.4,0,.2,1);
}

/* Step body */
.wiz-content { padding: 30px 38px 36px; }
.wiz-step { animation: wizSlide .4s ease; }
.wiz-title {
  font-family: var(--font-head); font-size: 29px; font-weight: 600;
  line-height: 1.16; margin: 0 0 6px; color: var(--white);
}
.wiz-sub { margin: 0 0 22px; font-size: 14px; color: rgba(243,239,230,.55); }

/* Service cards */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 12px;
}
.svc-card {
  display: flex; flex-direction: column; gap: 5px; text-align: left;
  padding: 16px; border-radius: 11px; cursor: pointer;
  background: rgba(255,255,255,.055); border: 1px solid rgba(201,164,74,0.25);
  font-family: var(--font-body); transition: all .18s;
}
.svc-card:hover { border-color: var(--gold); background: rgba(255,255,255,.09); }
.svc-card.selected { background: rgba(201,164,74,0.14); border-color: var(--gold); }
.svc-card-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.svc-card-name { font-family: var(--font-head); font-size: 17.5px; font-weight: 600; color: #f3efe6; }
.svc-card-check { color: var(--gold); font-size: 15px; }
.svc-card-desc { font-size: 12.5px; color: rgba(243,239,230,.5); line-height: 1.4; }

/* Wizard form controls */
.wiz-label {
  display: block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.wiz-input {
  width: 100%; padding: 14px 15px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,164,74,0.28);
  border-radius: 9px; color: #f3efe6;
  font-size: 16px; font-family: var(--font-body);
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.wiz-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-faint); }
.wiz-input.err { border-color: #d46a5a; box-shadow: 0 0 0 3px rgba(212,106,90,.13); }
.wiz-input.addr-pad { padding-left: 34px; }
.wiz-input option { background: #131210; color: #f3efe6; }
.wiz-input::placeholder { color: rgba(243,239,230,.30); }
input[type=date].wiz-input::-webkit-calendar-picker-indicator,
input[type=time].wiz-input::-webkit-calendar-picker-indicator {
  filter: invert(.65) sepia(1) saturate(2.5) hue-rotate(2deg); cursor: pointer; opacity:.85;
}
.wiz-select-wrap { position: relative; }
.wiz-select-wrap .wiz-input { appearance: none; -webkit-appearance: none; padding-right: 38px; cursor: pointer; }
.wiz-chev {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  pointer-events: none; color: var(--gold); font-size: 11px;
}
.wiz-err-msg { margin-top: 6px; font-size: 12px; color: #e08a7c; display: none; }
.wiz-field { margin-bottom: 18px; }
.wiz-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }

/* Address dot decoration */
.wiz-addr-wrap { position: relative; }
.wiz-dot {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%;
}
.wiz-dot.pickup { border: 2px solid var(--gold); background: transparent; }
.wiz-dot.stop   { background: rgba(201,164,74,.4); border: 2px solid var(--gold); }
.wiz-dot.dropoff{ background: var(--gold); }

/* Stops */
.wiz-stop-row { display: flex; gap: 8px; margin-bottom: 14px; align-items: flex-end; }
.wiz-stop-row > .wiz-addr-wrap { flex: 1; }
.wiz-stop-remove {
  flex: none; width: 46px; height: 50px; border-radius: 9px;
  background: transparent; border: 1px solid var(--gold-line);
  color: rgba(243,239,230,.55); cursor: pointer; font-size: 18px;
  transition: border-color .15s, color .15s; display: flex; align-items: center; justify-content: center;
}
.wiz-stop-remove:hover { border-color: #d46a5a; color: #d46a5a; }
.wiz-add-stop-btn {
  width: 100%; padding: 13px; margin-bottom: 18px;
  background: transparent; border: 1px dashed var(--gold-line);
  border-radius: 9px; color: var(--gold); font-size: 13.5px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 7px; font-family: var(--font-body);
  transition: border-color .15s, background .15s;
}
.wiz-add-stop-btn:hover { border-color: var(--gold); background: var(--gold-faint); }

/* Pay cards */
.wiz-pay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.wiz-pay-card {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
  padding: 18px; border-radius: 11px; cursor: pointer;
  background: rgba(255,255,255,.055); border: 1px solid rgba(201,164,74,0.25);
  font-family: var(--font-body); transition: all .18s;
}
.wiz-pay-card:hover { border-color: var(--gold); background: rgba(255,255,255,.09); }
.wiz-pay-card.selected { background: rgba(201,164,74,0.14); border-color: var(--gold); }
.wiz-pay-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.wiz-pay-title { font-family: var(--font-head); font-size: 18px; font-weight: 600; color: #f3efe6; }
.wiz-pay-check { color: var(--gold); }
.wiz-pay-sub { font-size: 12.5px; color: rgba(243,239,230,.5); line-height: 1.4; }
.wiz-sq-slot { margin-top: 16px; }
.wiz-sq-field {
  padding: 18px 16px; border: 1px dashed var(--gold-line); border-radius: 9px;
  color: rgba(243,239,230,.4); font-size: 13.5px; background: rgba(255,255,255,.015);
  min-height: 50px;
}

/* Review */
.wiz-review-groups { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.wiz-review-group {
  border: 1px solid var(--gold-line); border-radius: 12px;
  padding: 16px 18px; background: rgba(255,255,255,.015);
}
.wiz-review-group-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.wiz-review-group-title {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.wiz-edit-btn {
  background: transparent; border: none; color: var(--gold); font-size: 12px;
  font-weight: 500; cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; padding: 0; font-family: var(--font-body);
}
.wiz-review-rows { display: flex; flex-direction: column; gap: 7px; }
.wiz-review-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.wiz-review-key { font-size: 12.5px; color: rgba(243,239,230,.45); flex: none; }
.wiz-review-val { font-size: 14px; color: #f3efe6; text-align: right; }
.wiz-review-sidebar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin-bottom: 8px;
}
.wiz-info-card {
  border: 1px solid var(--gold-line); border-radius: 12px;
  padding: 16px 18px; background: rgba(255,255,255,.015);
}
.wiz-info-title {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}

/* Nav row */
.wiz-nav { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.wiz-back {
  padding: 14px 22px; background: transparent;
  border: 1px solid var(--gold-line); border-radius: 10px;
  color: rgba(243,239,230,.8); font-size: 14.5px; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.wiz-back:hover { border-color: var(--gold); color: #f3efe6; }
.wiz-primary {
  flex: 1; padding: 15px 28px; background: var(--gold); color: #1a1408;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 600;
  letter-spacing: .01em; cursor: pointer;
  box-shadow: 0 10px 28px var(--gold-glow);
  transition: filter .15s; font-family: var(--font-body);
}
.wiz-primary:hover { filter: brightness(1.06); }
.wiz-primary.loading { opacity: .65; pointer-events: none; }
.wiz-form-note { text-align: center; margin: 14px 0 0; font-size: 12px; color: rgba(243,239,230,.4); }

/* Success */
.wiz-success { padding: 60px 40px; text-align: center; animation: wizSlide .45s ease; }
.wiz-success-icon {
  width: 62px; height: 62px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px;
  color: var(--gold); font-size: 28px;
}

/* Responsive */
@media (max-width: 640px) {
  .wiz-header  { padding: 24px 22px 0; }
  .wiz-content { padding: 24px 22px 28px; }
  .svc-grid    { grid-template-columns: 1fr; }
  .wiz-grid-2  { grid-template-columns: 1fr; }
  .wiz-pay-grid{ grid-template-columns: 1fr; }
  .wiz-review-sidebar { grid-template-columns: 1fr; }
  .wiz-title   { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
