@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --ink-muted: #1e1e1e;
  --gold: #d4a017;
  --gold-light: #e8bb3a;
  --gold-dim: rgba(212, 160, 23, 0.12);
  --cream: #fffff0;
  --muted: rgba(255, 255, 240, 0.4);
  --border: rgba(255, 255, 240, 0.08);
  --border-gold: rgba(212, 160, 23, 0.3);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
}

.promo-bar {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 201;
}
.promo-bar a { color: var(--ink); text-decoration: underline; opacity: 0.7; }
.promo-bar a:hover { opacity: 1; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border-gold);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-corner-tl {
  position: absolute; top: 5rem; left: 4rem;
  width: 60px; height: 60px;
  border-top: 1px solid var(--border-gold);
  border-left: 1px solid var(--border-gold);
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-corner-br {
  position: absolute; bottom: 5rem; right: 4rem;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  opacity: 0; animation: fadeIn 1s ease 1.4s forwards;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: var(--border-gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1s ease 0.4s forwards;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeIn 1s ease 0.8s forwards;
}
.hero-divider-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}
.hero-divider-line:last-child { background: linear-gradient(90deg, var(--border-gold), transparent); }
.hero-divider-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-sub {
  font-size: 0.8rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid var(--border-gold);
  color: var(--cream); text-decoration: none;
  padding: 1rem 2.5rem;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  transition: all 0.35s ease;
  opacity: 0; animation: fadeUp 1s ease 0.8s forwards;
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease; z-index: -1;
}
.hero-cta:hover { color: var(--ink); border-color: var(--gold); }
.hero-cta:hover::before { transform: translateX(0); }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.scroll-label {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--border-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

.selector-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border-gold);
}
.selector-header {
  padding: 5rem 4rem 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.selector-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.selector-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--cream); line-height: 1.1;
}
.selector-title em { font-style: italic; color: var(--gold); }
.selector-count { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }

.vehicles-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}
.vehicle-item {
  position: relative;
  padding: 4rem 2.5rem 3.5rem;
  border-right: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--ink-soft);
}
.vehicle-item:last-child { border-right: none; }
.vehicle-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(212,160,23,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.vehicle-item::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}
.vehicle-item:hover::before { opacity: 1; }
.vehicle-item:hover::after { transform: scaleX(1); }
.vehicle-item:hover { background: var(--ink-muted); }
.vehicle-item.disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }
.vehicle-num {
  font-size: 0.6rem; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 3rem; font-weight: 500; opacity: 0.6;
}
.vehicle-emoji {
  font-size: 2.2rem; margin-bottom: 1.8rem;
  transition: transform 0.4s ease; display: block;
}
.vehicle-item:hover .vehicle-emoji { transform: translateY(-4px) scale(1.1); }
.vehicle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--cream); margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.vehicle-item:hover .vehicle-name { color: var(--gold-light); }
.vehicle-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.vehicle-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  font-size: 0.85rem; color: var(--gold);
  opacity: 0; transform: translate(-6px, 6px);
  transition: all 0.35s ease;
}
.vehicle-item:hover .vehicle-arrow { opacity: 1; transform: translate(0,0); }
.coming-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  border: 1px solid var(--border-gold); color: var(--gold);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.about-section {
  padding: 8rem 4rem;
  background: var(--ink);
  border-top: 1px solid var(--border-gold);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; max-width: 1400px; margin: 0 auto; align-items: center;
}
.about-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 2rem;
}
.about-left h2 em { font-style: italic; color: var(--gold); }
.about-left p { font-size: 0.9rem; color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pillar { background: var(--ink-soft); padding: 2rem; transition: background 0.3s; }
.pillar:hover { background: var(--ink-muted); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

.service-hero {
  min-height: 55vh;
  background: var(--ink);
  display: flex; align-items: flex-end;
  padding: 9rem 4rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.service-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.service-hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.service-hero-content { position: relative; z-index: 1; max-width: 900px; }
.service-breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2.5rem;
}
.service-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.service-breadcrumb a:hover { color: var(--gold); }
.service-hero-eyebrow {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
}
.service-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300; color: var(--cream); line-height: 1;
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.service-hero-title em { font-style: italic; color: var(--gold); }
.service-hero-sub {
  font-size: 0.9rem; color: var(--muted); font-weight: 300;
  max-width: 500px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.service-promo-tag {
  display: inline-block; margin-top: 1.5rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1.1rem;
}

.quiz-section { padding: 6rem 4rem; background: var(--ink-soft); }
.quiz-container { max-width: 680px; margin: 0 auto; }
.quiz-header { margin-bottom: 3.5rem; }
.quiz-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--cream); margin-bottom: 0.6rem;
}
.quiz-header h2 em { font-style: italic; color: var(--gold); }
.quiz-header p { font-size: 0.85rem; color: var(--muted); font-weight: 300; }
.progress-track {
  height: 1px; background: var(--border); margin-bottom: 3.5rem; position: relative;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.progress-fill::after {
  content: ''; position: absolute; right: -3px; top: -3px;
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeUp 0.4s ease forwards; }
.step-counter {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; opacity: 0.8;
}
.step-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--cream);
  margin-bottom: 2rem; line-height: 1.2;
}
.options-list { display: flex; flex-direction: column; gap: 0.7rem; }
.option-btn {
  background: var(--ink); border: 1px solid var(--border);
  padding: 1.1rem 1.5rem; cursor: pointer;
  transition: all 0.25s ease; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--muted); font-weight: 300;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.option-btn::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transition: transform 0.25s ease;
}
.option-btn:hover { border-color: var(--border-gold); color: var(--cream); background: var(--ink-muted); }
.option-btn:hover::before { transform: scaleY(1); }
.option-btn.selected { border-color: var(--gold); background: var(--gold-dim); color: var(--cream); }
.option-btn.selected::before { transform: scaleY(1); }
.option-check {
  width: 18px; height: 18px; border: 1px solid var(--border); border-radius: 50%;
  flex-shrink: 0; transition: all 0.25s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold);
}
.option-btn.selected .option-check { border-color: var(--gold); background: var(--gold-dim); }
.quiz-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; }
.btn-back {
  background: none; border: none; color: var(--muted);
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  cursor: pointer; display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s; padding: 0; letter-spacing: 0.05em;
}
.btn-back:hover { color: var(--cream); }
.btn-next {
  background: transparent; color: var(--cream);
  border: 1px solid var(--border-gold);
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease;
  opacity: 0.3; pointer-events: none;
  position: relative; overflow: hidden;
}
.btn-next::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); transition: transform 0.3s ease; z-index: -1;
}
.btn-next.enabled { opacity: 1; pointer-events: auto; }
.btn-next.enabled:hover { color: var(--ink); border-color: var(--gold); }
.btn-next.enabled:hover::before { transform: translateX(0); }

.quiz-result {
  display: none; background: var(--ink);
  border: 1px solid var(--border-gold);
  padding: 4rem; text-align: center;
  animation: fadeUp 0.5s ease forwards;
  position: relative; overflow: hidden;
}
.quiz-result::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quiz-result.show { display: block; }
.result-eyebrow {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.result-promo-badge {
  background: var(--gold); color: var(--ink);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 1rem; margin-bottom: 0.8rem; display: none;
}
.result-original { display: none; font-size: 1rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.3rem; }
.result-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300; color: var(--cream);
  margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1;
}
.result-summary {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 2.5rem;
  line-height: 1.8; max-width: 400px; margin-left: auto; margin-right: auto; font-weight: 300;
}
.btn-book {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold); color: var(--ink); text-decoration: none;
  padding: 1.1rem 3rem; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s ease; margin-bottom: 1rem;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,160,23,0.25); }
.result-note { font-size: 0.72rem; color: var(--muted); margin-top: 1.5rem; font-style: italic; opacity: 0.6; }
.btn-restart {
  background: none; border: 1px solid var(--border);
  padding: 0.6rem 1.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; color: var(--muted); cursor: pointer;
  margin-top: 1rem; transition: all 0.2s; letter-spacing: 0.08em;
}
.btn-restart:hover { border-color: var(--border-gold); color: var(--cream); }

.thankyou-wrap {
  min-height: 100vh; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem; position: relative; overflow: hidden;
}
.thankyou-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.thankyou-card {
  position: relative; z-index: 1; text-align: center; max-width: 560px;
  background: var(--ink-soft); border: 1px solid var(--border-gold);
  padding: 4.5rem 4rem; animation: fadeUp 0.8s ease forwards;
}
.thankyou-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.thankyou-check {
  width: 56px; height: 56px; border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; font-size: 1.3rem; color: var(--gold);
}
.thankyou-eyebrow { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.thankyou-title { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--cream); margin-bottom: 1.2rem; line-height: 1.1; }
.thankyou-title em { font-style: italic; color: var(--gold); }
.thankyou-message { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; }
.thankyou-steps { display: flex; flex-direction: column; gap: 1px; background: var(--border); margin-bottom: 2.5rem; text-align: left; }
.thankyou-step { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.2rem 1.4rem; background: var(--ink); transition: background 0.2s; }
.thankyou-step:hover { background: var(--ink-muted); }
.step-num-badge { width: 22px; height: 22px; border: 1px solid var(--border-gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.thankyou-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.thankyou-step p strong { display: block; font-weight: 500; color: var(--cream); margin-bottom: 0.15rem; font-size: 0.85rem; }
.thankyou-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.social-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; border: 1px solid var(--border); text-decoration: none; font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; transition: all 0.25s ease; }
.social-link:hover { border-color: var(--border-gold); color: var(--gold); }
.thankyou-home { font-size: 0.75rem; color: var(--muted); text-decoration: none; letter-spacing: 0.1em; transition: color 0.2s; }
.thankyou-home:hover { color: var(--gold); }

footer {
  background: var(--ink-soft); border-top: 1px solid var(--border-gold);
  padding: 3rem 4rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--cream); font-weight: 300; }
.footer-logo span { color: var(--gold); }
.footer-info { font-size: 0.75rem; color: var(--muted); line-height: 1.9; font-weight: 300; }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: 0.7rem; color: var(--muted); text-decoration: none; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

@media (max-width: 900px) {
  nav, nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .selector-header { padding: 3rem 1.5rem 2rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .vehicles-track { grid-template-columns: repeat(2, 1fr); }
  .vehicle-item { border-right: none; border-bottom: 1px solid var(--border); }
  .vehicle-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .about-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .about-right { grid-template-columns: 1fr; }
  .service-hero { padding: 7rem 1.5rem 3.5rem; }
  .quiz-section { padding: 3.5rem 1.5rem; }
  .quiz-result { padding: 2.5rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .thankyou-card { padding: 3rem 1.5rem; }
  .hero-corner-tl, .hero-corner-br { display: none; }
}
