@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0d0d0b;
  --cream: #fafaf8;
  --sand: #f2ede4;
  --amber: #b8924a;
  --amber-light: #e8d5a8;
  --amber-dark: #8a6a30;
  --steel: #2c3e50;
  --muted: #7a7a72;
  --border: #e4e0d8;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: #111;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; margin: 0; padding: 0; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f5f5f2; }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Marquee ─────────────────────────────────────────── */
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Navbar ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img{width: 290px;}
.logo-badge { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.logo-badge .circle { position: absolute; inset: 0; border-radius: 50%; background: var(--ink); }
.logo-badge svg { position: absolute; inset: 0; margin: auto; }
.logo-eyebrow { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; line-height: 1; color: var(--muted); }
.logo-title { font-size: 18px; font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); font-family: var(--font-display); }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-links a { font-size: 15.5px; font-weight: 500; letter-spacing: 0.02em; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.navbar.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--amber); }

.nav-right { display: none; align-items: center; gap: 16px; }
.nav-phone { font-size: 15.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: white; }
.navbar.scrolled .nav-phone { color: var(--ink); }
.nav-phone span { color: var(--amber); }
.btn-amber {
  padding: 10px 20px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--amber);
  color: white;
  transition: transform 0.2s, filter 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-amber:hover { transform: scale(1.02); filter: brightness(1.05); }

.nav-toggle { display: block; padding: 8px; background: none; }
.nav-toggle span { display: block; height: 2px; background: white; margin-bottom: 6px; }
.navbar.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:first-child { width: 24px; }
.nav-toggle span:last-child { width: 16px; margin-bottom: 0; }

.mobile-menu {
  display: none;
  padding: 24px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 17px; font-weight: 500; padding: 8px 0; color: var(--ink); }
.mobile-menu .btn-amber { display: block; margin-top: 16px; text-align: center; padding: 12px; }

@media (min-width: 1024px) {
  .nav-links, .nav-right { display: flex; }
  .nav-toggle { display: none; }
}

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0.5; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,13,11,0.95) 0%, rgba(13,13,11,0.70) 50%, rgba(13,13,11,0.30) 100%); }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 256px; background: linear-gradient(to top, rgba(13,13,11,1) 0%, transparent 100%); }

.hero-content { position: relative; z-index: 10; flex: 1; display: flex; align-items: center; max-width: 1280px; margin: 0 auto; width: 100%; padding: 128px 24px 56px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; width: 100%; }
.hero-text { max-width: 640px; text-align: left; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow .line { width: 32px; height: 1px; background: var(--amber); }
.hero-eyebrow span { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--amber-light); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9.6vw, 7.2rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: white;
  margin: 0 0 32px;
}
.hero h1 em { font-style: normal; color: var(--amber); }

.hero p.lead { font-size: 19px; line-height: 1.7; margin: 0 0 40px; max-width: 420px; color: rgba(255,255,255,0.65); }

.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.trust-strip span { display: flex; align-items: center; gap: 8px; font-size: 15.5px; color: rgba(255,255,255,0.6); }
.trust-strip span i { color: var(--amber); font-size: 12px; font-style: normal; }

.hero-form-card {
  position: relative;
  width: 100%;
  background: rgba(13,13,11,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.form-card-header { margin-bottom: 18px; }
.form-card-header h3 { font-family: var(--font-display); font-size: 26.5px; font-weight: 400; color: white; margin: 0 0 4px; }
.form-card-header p { font-size: 14.5px; margin: 0; color: rgba(255,255,255,0.5); }

.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-inner .field-full { grid-column: 1 / -1; }
.booking-inner input, .booking-inner select, .booking-inner textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 11px 12px;
  font-size: 15.5px;
  color: white;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.booking-inner textarea { resize: vertical; min-height: 46px; }
.booking-inner input::placeholder, .booking-inner textarea::placeholder { color: rgba(255,255,255,0.45); }
.booking-inner input:focus, .booking-inner select:focus, .booking-inner textarea:focus { border-color: var(--amber); }
.booking-inner select option { background: var(--ink); }
.booking-inner input.input-error, .booking-inner select.input-error, .booking-inner textarea.input-error { border-color: #e05a4e; }
.field-error { display: none; margin-top: 5px; font-size: 13px; line-height: 1.4; color: #ff8a7a; }
.field-error.show { display: block; }

.phone-group { display: flex; gap: 8px; }
.phone-group select { flex: 0 0 92px; padding-left: 8px; padding-right: 4px; }
.phone-group input { flex: 1; min-width: 0; }

.btn-quote {
  width: 100%;
  padding: 13px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--amber);
  color: white;
  transition: filter 0.2s, transform 0.1s;
  margin-top: 4px;
}
.btn-quote:hover { filter: brightness(1.1); }
.btn-quote:active { transform: scale(0.99); }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 480px; gap: 56px; align-items: start; }
  .hero-form-card { margin-top: 12px; }
}

/* ─── Marquee band ────────────────────────────────────── */
.marquee-band { padding: 20px 0; overflow: hidden; background: var(--amber); }
.marquee-band .marquee-track span { display: flex; align-items: center; gap: 20px; padding: 0 24px; font-size: 15.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; color: white; }
.marquee-band .marquee-track span i { opacity: 0.6; font-style: normal; }

/* ─── Section shared ──────────────────────────────────── */
section { padding: 96px 0; }
.section-tight { padding: 0; }
.eyebrow { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 12px; color: var(--amber); }
h2.display { font-family: var(--font-display); font-size: clamp(2.64rem, 6vw, 4.56rem); font-weight: 400; line-height: 1.1; color: var(--ink); margin: 0; }
h2.display em { font-style: italic; }
.section-header { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; margin-bottom: 56px; }
.section-header p.blurb { max-width: 320px; font-size: 17px; line-height: 1.7; color: var(--muted); margin: 0; }

@media (min-width: 1024px) {
  .section-header { flex-direction: row; align-items: flex-end; }
}

/* ─── Services ────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
.services-tabs { border-right: 1px solid var(--border); }
.service-tab {
  width: 100%;
  text-align: left;
  padding: 24px 28px;
  border: none;
  border-bottom: 1px solid var(--border);
  border-left: 4px solid transparent;
  background: white;
  transition: all 0.2s;
}
.service-tab.active { background: var(--ink); border-left-color: var(--amber); }
.service-tab-row { display: flex; align-items: flex-start; justify-content: space-between; }
.service-tab .num { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; color: var(--muted); }
.service-tab.active .num { color: var(--amber-light); }
.service-tab .title { font-size: 19px; font-weight: 600; font-family: var(--font-display); color: var(--ink); }
.service-tab.active .title { color: white; }
.service-tab .sub { font-size: 14.5px; margin-top: 2px; color: var(--muted); }
.service-tab.active .sub { color: var(--amber-light); }
.service-tab .arrow { font-size: 24px; margin-top: 4px; color: var(--border); }
.service-tab.active .arrow { color: var(--amber); }
.service-tab .body { margin-top: 12px; font-size: 15.5px; line-height: 1.7; color: rgba(255,255,255,0.65); display: none; }
.service-tab.active .body { display: block; }

.service-visual { position: relative; overflow: hidden; min-height: 380px; }
.service-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s; }
.service-visual img.active { opacity: 1; position: relative; }
.service-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%); pointer-events: none; }
.service-visual-label { position: absolute; bottom: 24px; left: 28px; }
.service-visual-label .t { font-size: 29px; font-family: var(--font-display); color: white; }
.service-visual-label .s { font-size: 14.5px; margin-top: 4px; color: var(--amber-light); }

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 2fr 3fr; }
}

/* ─── Fleet ───────────────────────────────────────────── */
.fleet { background: var(--sand); }
.fleet-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
.fleet-card { display: flex; flex-direction: column; position: relative; background: white; border-bottom: 1px solid var(--border); }
.fleet-card:last-child { border-bottom: none; }
.fleet-card.featured { background: var(--ink); }
.fleet-badge { position: absolute; top: 16px; right: 16px; z-index: 10; padding: 4px 10px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--amber); color: white; }
.fleet-media { position: relative; overflow: hidden; height: 220px; }
.fleet-media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-media::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
.fleet-card.featured .fleet-media::after { background: rgba(0,0,0,0.3); }
.fleet-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.fleet-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.fleet-class { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; color: var(--amber); }
.fleet-card.featured .fleet-class { color: var(--amber-light); }
.fleet-vehicle { font-size: 24px; font-family: var(--font-display); color: var(--ink); }
.fleet-card.featured .fleet-vehicle { color: white; }
.fleet-price { text-align: right; }
.fleet-price .from { font-size: 13px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--muted); }
.fleet-card.featured .fleet-price .from { color: rgba(255,255,255,0.45); }
.fleet-price .amount { font-size: 29px; font-weight: 600; color: var(--ink); }
.fleet-card.featured .fleet-price .amount { color: var(--amber); }
.fleet-meta { display: flex; gap: 16px; margin: 16px 0; padding-bottom: 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; color: var(--muted); }
.fleet-card.featured .fleet-meta { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.55); }
.fleet-perks { flex: 1; }
.fleet-perks li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-bottom: 8px; color: var(--muted); }
.fleet-card.featured .fleet-perks li { color: rgba(255,255,255,0.65); }
.fleet-perks li i { color: var(--amber); font-size: 11px; font-style: normal; }
.btn-fleet { margin-top: 24px; width: 100%; padding: 12px; font-size: 15.5px; font-weight: 600; letter-spacing: 0.02em; background: transparent; color: var(--ink); border: 1.5px solid var(--ink); transition: opacity 0.2s; }
.btn-fleet:hover { opacity: 0.9; }
.fleet-card.featured .btn-fleet { background: var(--amber); color: white; border-color: var(--amber); }

@media (min-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-card { border-bottom: none; border-right: 1px solid var(--border); }
  .fleet-card:last-child { border-right: none; }
}

/* ─── Why us ──────────────────────────────────────────── */
.whyus { background: var(--cream); padding: 0; }
.stats-band { border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { padding: 48px 32px; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat .n { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.2rem); font-weight: 300; line-height: 1; margin-bottom: 8px; color: var(--ink); }
.stat .l { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; color: var(--muted); }

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: none; }
}

.whyus-split { padding: 96px 24px; }
.whyus-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
.mosaic { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mosaic .full { grid-column: span 2; overflow: hidden; height: 280px; }
.mosaic .half { overflow: hidden; height: 200px; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.mosaic img:hover { transform: scale(1.05); }
.mosaic-label { position: absolute; bottom: -16px; right: -16px; padding: 16px 20px; background: var(--amber); }
.mosaic-label .t1 { font-size: 14.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: white; }
.mosaic-label .t2 { font-size: 29px; font-weight: 300; font-family: var(--font-display); color: white; }

.reasons { margin-top: 24px; display: flex; flex-direction: column; gap: 24px; }
.reason { display: flex; gap: 16px; }
.reason .icon { font-size: 24px; margin-top: 2px; flex-shrink: 0; color: var(--amber); }
.reason .title { font-weight: 600; font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.reason .desc { font-size: 17px; line-height: 1.7; color: var(--muted); }

.btn-book-dark { display: inline-flex; align-items: center; gap: 12px; margin-top: 40px; padding: 14px 28px; font-size: 15.5px; font-weight: 600; letter-spacing: 0.02em; background: var(--ink); color: white; }
.btn-book-dark span { color: var(--amber); }

@media (min-width: 1024px) {
  .whyus-inner { grid-template-columns: 1fr 1fr; }
}

/* ─── Routes ──────────────────────────────────────────── */
.routes { background: var(--ink); }
.routes-inner { max-width: 1280px; margin: 0 auto; padding: 96px 24px; display: grid; grid-template-columns: 1fr; gap: 64px; }
.routes-intro p { font-size: 17px; line-height: 1.7; margin-bottom: 32px; color: rgba(255,255,255,0.5); }
.routes-intro h2 { color: white; margin-bottom: 24px; }
.routes-intro h2 em { color: var(--amber); }
.routes-media { overflow: hidden; height: 200px; }
.routes-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.5s; }
.routes-media img:hover { opacity: 0.9; }

.routes-table-head { margin-bottom: 16px; padding-bottom: 12px; display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.08); }
.routes-table-head .cols { display: flex; gap: 48px; }
.route-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; cursor: pointer; transition: padding-left 0.2s; border-bottom: 1px solid rgba(255,255,255,0.06); }
.route-row:hover { padding-left: 8px; }
.route-left { display: flex; align-items: center; gap: 12px; }
.route-idx { font-size: 13px; font-family: monospace; color: rgba(255,255,255,0.25); }
.route-name { font-weight: 500; font-size: 17px; color: white; transition: color 0.2s; }
.route-row:hover .route-name { color: var(--amber-light); }
.route-km { font-size: 13px; display: none; color: rgba(255,255,255,0.3); }
.route-right { display: flex; align-items: center; gap: 40px; }
.route-time { font-size: 14.5px; display: none; color: rgba(255,255,255,0.45); }
.route-price { font-weight: 600; font-size: 17px; color: var(--amber); }
.routes-cta { margin-top: 24px; }
.routes-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 15.5px; font-weight: 600; color: var(--amber); }

@media (min-width: 640px) {
  .route-km, .route-time { display: inline; }
}
@media (min-width: 1024px) {
  .routes-inner { grid-template-columns: 2fr 3fr; }
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonials { background: var(--sand); }
.testimonials-stars { display: flex; gap: 8px; align-items: center; }
.testimonials-stars .star { color: var(--amber); font-size: 24px; }
.testimonials-stars .score { margin-left: 8px; font-size: 17px; font-weight: 600; color: var(--ink); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
.testimonial-card { padding: 32px; background: white; border-bottom: 1px solid var(--border); }
.testimonial-card:last-child { border-bottom: none; }
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 20px; }
.testimonial-card .stars span { color: var(--amber); }
.testimonial-card p.text { font-size: 17px; line-height: 1.7; font-style: italic; margin-bottom: 32px; color: var(--steel); }
.testimonial-footer { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14.5px; font-weight: 700; color: white; background: var(--ink); flex-shrink: 0; }
.testimonial-name { font-size: 17px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted); }

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { border-bottom: none; border-right: 1px solid var(--border); }
  .testimonial-card:last-child { border-right: none; }
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-inner { display: grid; grid-template-columns: 1fr; gap: 64px; }
.faq-intro p { font-size: 17px; line-height: 1.7; margin-bottom: 32px; color: var(--muted); }
.faq-intro h2 { margin-bottom: 24px; }
.faq-media { overflow: hidden; height: 220px; }
.faq-media img { width: 100%; height: 100%; object-fit: cover; }

.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.faq-q span.text { font-weight: 500; font-size: 17px; padding-right: 24px; color: var(--ink); }
.faq-toggle { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; border: 1.5px solid var(--border); transition: all 0.2s; color: var(--ink); }
.faq-item.open .faq-toggle { color: white; background: var(--amber); border-color: var(--amber); transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 17px; line-height: 1.7; padding-right: 40px; color: var(--muted); }
.faq-item.open .faq-a { display: block; }

@media (min-width: 1024px) {
  .faq-inner { grid-template-columns: 2fr 3fr; }
}

/* ─── CTA Banner ──────────────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; background: var(--amber); }
.cta-inner { max-width: 1280px; margin: 0 auto; padding: 64px 24px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(2.16rem, 4.8vw, 3.6rem); font-weight: 400; color: white; line-height: 1.2; margin: 0; text-align: center; }
.cta-buttons { display: flex; flex-direction: column; gap: 16px; }
.btn-outline-white { padding: 16px 32px; font-size: 17px; font-weight: 600; letter-spacing: 0.02em; border: 2px solid white; color: white; transition: all 0.2s; text-align: center; }
.btn-outline-white:hover { background: white; color: var(--amber-dark); }
.btn-white { padding: 16px 32px; font-size: 17px; font-weight: 600; letter-spacing: 0.02em; background: white; color: var(--amber); transition: opacity 0.2s; text-align: center; }
.btn-white:hover { opacity: 0.9; }
.cta-decoration { position: absolute; right: -32px; bottom: -32px; font-size: 240px; font-weight: 300; line-height: 1; font-family: var(--font-display); color: rgba(255,255,255,0.08); pointer-events: none; user-select: none; }

@media (min-width: 1024px) {
  .cta-inner { flex-direction: row; text-align: left; }
  .cta-inner h2 { text-align: left; }
  .cta-buttons { flex-direction: row; }
}

/* ─── Footer ──────────────────────────────────────────── */
footer { background: #0a0a09; color: rgba(255,255,255,0.45); }
.footer-inner { padding: 64px 24px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-size: 29px; font-weight: 400; color: white; margin-bottom: 16px; font-family: var(--font-display); }
.footer-brand span { color: var(--amber); }
.footer-desc { font-size: 15.5px; line-height: 1.7; max-width: 320px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: white; }
.footer-links li { margin-bottom: 10px; font-size: 15.5px; }
.footer-links a:hover { color: white; }
.footer-links li.white { color: white; }
.footer-bottom { padding: 28px 0; display: flex; flex-direction: column; gap: 12px; justify-content: space-between; font-size: 14.5px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: white; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid .col-span-2 { grid-column: span 2; }
  .footer-bottom { flex-direction: row; align-items: center; }
}

.footer-bottom a { color: var(--amber); text-decoration: underline; }
.footer-bottom a:hover { color: var(--amber-light); }

/* ─── Cookie consent banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 15.5px; line-height: 1.6; max-width: 640px; }
.cookie-text a { color: var(--amber-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept, .btn-cookie-reject {
  padding: 10px 22px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.btn-cookie-accept { background: var(--amber); color: white; }
.btn-cookie-accept:hover { filter: brightness(1.1); }
.btn-cookie-reject { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-cookie-reject:hover { border-color: white; }

/* ─── Floating action buttons ─────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: bottom 0.3s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.whatsapp-float { left: 24px; background: #25d366; }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float:hover { transform: scale(1.08); }

.scroll-top-btn {
  right: 24px;
  background: var(--ink);
  color: white;
  font-size: 21.5px;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--amber); }

body.cookie-visible .whatsapp-float,
body.cookie-visible .scroll-top-btn { bottom: 104px; }

/* ─── Legal pages (Privacy / Terms) ───────────────────────── */
.page-hero { background: var(--ink); padding: 152px 24px 56px; }
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.64rem, 6vw, 4.2rem); font-weight: 400; color: white; margin: 8px 0 0; }

.legal-content { padding: 64px 0 96px; background: var(--cream); }
.legal-content .wrap { max-width: 860px; }
.legal-updated { font-size: 14.5px; color: var(--muted); margin-bottom: 32px; }
.legal-content h2 { font-family: var(--font-display); font-size: clamp(1.56rem, 3.6vw, 2.04rem); font-weight: 600; color: var(--ink); margin: 40px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-size: 17px; line-height: 1.8; color: var(--steel); margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding: 0; }
.legal-content li { font-size: 17px; line-height: 1.8; color: var(--steel); padding-left: 20px; position: relative; margin-bottom: 8px; }
.legal-content li::before { content: '◆'; position: absolute; left: 0; top: 6px; color: var(--amber); font-size: 11px; }
.legal-content a { color: var(--amber); text-decoration: underline; }
.legal-content strong { color: var(--ink); }

/* ─── Nav services dropdown ───────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle .caret { font-size: 10px; transition: transform 0.2s; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 60;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown:hover .caret { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px !important;
  color: var(--ink) !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--sand); color: var(--amber) !important; }

.mobile-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-dropdown-toggle .caret { font-size: 11px; transition: transform 0.2s; }
.mobile-dropdown.open .mobile-dropdown-toggle .caret { transform: rotate(180deg); }
.mobile-dropdown-menu { display: none; padding-left: 16px; }
.mobile-dropdown.open .mobile-dropdown-menu { display: block; }
.mobile-dropdown-menu a { font-size: 15px !important; padding: 8px 0 !important; }

/* ─── Booking form: extra fields & status message ─────────── */
.form-message { font-size: 13px; line-height: 1.6; margin-top: 4px; display: none; padding: 12px 14px; }
.form-message:not(:empty) { display: block; }
.form-message.success { background: rgba(76,175,80,0.12); color: #8fd99a; border: 1px solid rgba(76,175,80,0.3); }
.form-message.error { background: rgba(224,90,78,0.12); color: #ff8a7a; border: 1px solid rgba(224,90,78,0.3); }

/* ─── Service detail pages ────────────────────────────────── */
.svc-section { padding: 88px 0; }
.svc-section.alt { background: var(--sand); }
.svc-section.dark { background: var(--ink); }
.svc-intro { max-width: 760px; }
.svc-intro p { font-size: 17px; line-height: 1.8; color: var(--muted); margin: 0 0 16px; }
.svc-section.dark .svc-intro p { color: rgba(255,255,255,0.6); }
.svc-intro p:last-child { margin-bottom: 0; }
.svc-closing { font-size: 17px; font-style: italic; color: var(--ink); margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }

.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 48px; }
.step { background: var(--cream); padding: 32px; }
.step .step-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--amber); line-height: 1; margin-bottom: 16px; }
.step .step-title { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.step .step-desc { font-size: 15.5px; line-height: 1.7; color: var(--muted); }

.included-list { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 14px 32px; }
.included-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--steel); }
.included-list li::before { content: '✓'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--amber); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

.why-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 32px; }
.why-item .why-num { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--amber); line-height: 1; margin-bottom: 12px; }
.why-item .why-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.svc-section.dark .why-item .why-title { color: white; }
.why-item .why-desc { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.svc-section.dark .why-item .why-desc { color: rgba(255,255,255,0.55); }

.svc-cards { margin-top: 40px; display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
.svc-card { padding: 28px; border-bottom: 1px solid var(--border); }
.svc-card:last-child { border-bottom: none; }
.svc-card .svc-card-title { font-size: 18px; font-weight: 600; font-family: var(--font-display); color: var(--ink); margin-bottom: 8px; }
.svc-card .svc-card-desc { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.svc-card .btn-fleet { margin-top: 0; }

.svc-vehicle-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); }
.svc-vehicle { display: flex; flex-direction: column; background: white; border-bottom: 1px solid var(--border); }
.svc-vehicle:last-child { border-bottom: none; }
.svc-vehicle-body { padding: 26px; }
.svc-vehicle-class { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--amber); margin-bottom: 4px; }
.svc-vehicle-name { font-size: 20px; font-family: var(--font-display); color: var(--ink); margin-bottom: 12px; }
.svc-vehicle-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }

@media (min-width: 700px) {
  .included-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .svc-vehicle-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 899px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .svc-vehicle-grid { border: 1px solid var(--border); }
  .svc-vehicle { border-bottom: none; border-right: 1px solid var(--border); }
  .svc-vehicle:last-child { border-right: none; }
}

/* ─── Thank you page ──────────────────────────────────────── */
.thankyou-hero { background: var(--ink); padding: 168px 24px 96px; min-height: 70vh; display: flex; align-items: center; }
.thankyou-card { max-width: 720px; margin: 0 auto; text-align: center; }
.thankyou-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--amber); color: white; font-size: 30px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.thankyou-card h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; color: white; margin: 8px 0 20px; }
.thankyou-lead { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }

.thankyou-steps { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 20px; text-align: left; }
.thankyou-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 24px; }
.thankyou-step .step-num { font-family: var(--font-display); color: var(--amber); font-size: 28px; line-height: 1; margin-bottom: 10px; }
.thankyou-step .step-title { color: white; font-weight: 600; font-size: 15.5px; margin-bottom: 6px; }
.thankyou-step .step-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.6; }

.thankyou-home { display: inline-block; margin-top: 32px; font-size: 13.5px; color: var(--amber-light); }
.thankyou-home:hover { color: var(--amber); }

@media (min-width: 700px) {
  .thankyou-steps { grid-template-columns: repeat(3, 1fr); }
}
