:root {
  --gold: #d7b56d;
  --gold-soft: #f3d892;
  --ink: #08090b;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(183, 131, 42, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(45, 35, 22, 0.09), transparent 30rem),
    linear-gradient(135deg, #f5ead8 0%, #fff8e9 42%, #e9d8ba 100%);
  color: #17130c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dark-mode {
  background:
    radial-gradient(circle at top left, rgba(215, 181, 109, 0.14), transparent 30rem),
    linear-gradient(135deg, #08090b 0%, #111319 52%, #08090b 100%);
  color: #f8f3e8;
}

.font-display {
  font-family: "Playfair Display", Georgia, serif;
}

.luxury-border {
  border: 1px solid rgba(142, 101, 32, 0.26);
}

.gold-gradient {
  background: linear-gradient(135deg, #f6e5ad 0%, #d7b56d 42%, #9c762d 100%);
}

.text-gold {
  color: #a87925;
}

.brand-logo {
  height: 4rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}

.bg-glass {
  background:
    linear-gradient(180deg, rgba(255, 251, 241, 0.94), rgba(246, 236, 219, 0.9));
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(69, 50, 20, 0.08);
}

.nav-link {
  color: rgba(36, 29, 18, 0.76);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #9a6817;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(251, 242, 222, 0.82)),
    rgba(255, 249, 236, 0.9);
  border: 1px solid rgba(142, 101, 32, 0.22);
  box-shadow: 0 28px 70px rgba(68, 49, 17, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.premium-card:hover {
  border-color: rgba(166, 119, 34, 0.52);
  transform: translateY(-5px);
}

.field {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(142, 101, 32, 0.3);
  background: rgba(255, 251, 242, 0.86);
  padding: 0.85rem 1rem;
  color: #17130c;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field:focus {
  border-color: rgba(166, 119, 34, 0.74);
  box-shadow: 0 0 0 4px rgba(166, 119, 34, 0.13);
}

.field::placeholder {
  color: rgba(23, 19, 12, 0.42);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #ffeaa8 0%, #d1a23e 48%, #8f5f13 100%);
  color: #0a0a0b;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 12px 26px rgba(143, 95, 19, 0.22);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(143, 95, 19, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(142, 101, 32, 0.32);
  color: #191107;
  padding: 0.9rem 1.25rem;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.btn-outline:hover {
  background: rgba(166, 119, 34, 0.1);
  border-color: rgba(142, 101, 32, 0.66);
  color: #8f5f13;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(215, 181, 109, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 181, 109, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

/* Hidden until manual dark/light toggle is re-enabled */
.theme-toggle {
  display: none;
  height: 2.5rem;
  align-items: center;
  gap: 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(142, 101, 32, 0.28);
  background: rgba(255, 251, 242, 0.82);
  padding: 0 0.75rem;
  color: #17130c;
  font-size: 0.875rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  border-color: rgba(142, 101, 32, 0.64);
  background: rgba(166, 119, 34, 0.12);
}

body.dark-mode .bg-glass {
  background: rgba(12, 14, 18, 0.78);
}

body.dark-mode .nav-link {
  color: rgba(248, 243, 232, 0.78);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: var(--gold-soft);
}

body.dark-mode .premium-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(14, 16, 21, 0.84);
  border-color: rgba(215, 181, 109, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

body.dark-mode .field {
  border-color: rgba(215, 181, 109, 0.26);
  background: rgba(8, 9, 11, 0.78);
  color: #fff8e8;
}

body.dark-mode .field::placeholder {
  color: rgba(248, 243, 232, 0.45);
}

body.dark-mode .btn-outline {
  color: #f8f3e8;
}

body.dark-mode .theme-toggle {
  border-color: rgba(215, 181, 109, 0.34);
  background: rgba(8, 9, 11, 0.64);
  color: #f8f3e8;
}

body:not(.dark-mode) .text-white,
body:not(.dark-mode) .text-white\/80,
body:not(.dark-mode) .text-white\/76,
body:not(.dark-mode) .text-white\/70,
body:not(.dark-mode) .text-white\/68,
body:not(.dark-mode) .text-white\/65,
body:not(.dark-mode) .text-white\/64,
body:not(.dark-mode) .text-white\/62,
body:not(.dark-mode) .text-white\/58,
body:not(.dark-mode) .text-white\/56,
body:not(.dark-mode) .text-white\/55,
body:not(.dark-mode) .text-white\/50,
body:not(.dark-mode) .text-white\/48 {
  color: #17130c;
}

body:not(.dark-mode) .text-white\/76,
body:not(.dark-mode) .text-white\/70,
body:not(.dark-mode) .text-white\/68,
body:not(.dark-mode) .text-white\/65,
body:not(.dark-mode) .text-white\/64,
body:not(.dark-mode) .text-white\/62,
body:not(.dark-mode) .text-white\/58,
body:not(.dark-mode) .text-white\/56,
body:not(.dark-mode) .text-white\/55,
body:not(.dark-mode) .text-white\/50,
body:not(.dark-mode) .text-white\/48 {
  opacity: 0.78;
}

body:not(.dark-mode) .text-champagne {
  color: #8f5f13;
}

/* Theme-aware body text (use instead of text-white/* on light sections) */
.text-theme-muted {
  color: rgba(23, 19, 12, 0.82);
}

.text-theme-accent {
  color: #8f5f13;
  font-weight: 700;
}

body.dark-mode .text-theme-muted {
  color: rgba(248, 243, 232, 0.88);
}

body.dark-mode .text-theme-accent {
  color: #e8c878;
}

body.dark-mode .text-white {
  color: #f8f3e8;
}

body.dark-mode .text-white\/80,
body.dark-mode .text-white\/76,
body.dark-mode .text-white\/70,
body.dark-mode .text-white\/68,
body.dark-mode .text-white\/65,
body.dark-mode .text-white\/64,
body.dark-mode .text-white\/62,
body.dark-mode .text-white\/58,
body.dark-mode .text-white\/56,
body.dark-mode .text-white\/55,
body.dark-mode .text-white\/50,
body.dark-mode .text-white\/48 {
  color: rgba(248, 243, 232, 0.88);
}

body.dark-mode .text-champagne {
  color: #e8c878;
}

body:not(.dark-mode) .bg-black\/35,
body:not(.dark-mode) .bg-black\/30,
body:not(.dark-mode) .bg-black\/25,
body:not(.dark-mode) .bg-night\/95,
body:not(.dark-mode) .bg-white\/\[0\.03\] {
  background-color: rgba(255, 248, 234, 0.74);
}

body:not(.dark-mode) .border-gold\/10,
body:not(.dark-mode) .border-gold\/15 {
  border-color: rgba(142, 101, 32, 0.2);
}

body:not(.dark-mode) .hero-grid + .absolute {
  opacity: 0.36;
  filter: saturate(0.88) contrast(1.08) sepia(0.12);
}

body:not(.dark-mode) .hero-grid {
  opacity: 0.55;
}

body:not(.dark-mode) .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(248, 238, 220, 0.88), rgba(248, 238, 220, 0.58) 48%, rgba(226, 207, 172, 0.72)),
    radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.42), transparent 27rem);
}

body:not(.dark-mode) .home-hero > .relative {
  z-index: 1;
}

body:not(.dark-mode) .gold-gradient {
  background: linear-gradient(135deg, #fff0b8 0%, #d2a044 48%, #8b5d16 100%);
}

.pricing-local {
  border-color: rgba(166, 119, 34, 0.38);
}

.pricing-package-note {
  color: rgba(23, 19, 12, 0.78);
  line-height: 1.55;
}

.pricing-package-note strong {
  color: #8b5d16;
  font-weight: 800;
}

body.dark-mode .pricing-package-note {
  color: rgba(248, 243, 232, 0.78);
}

body.dark-mode .pricing-package-note strong {
  color: var(--gold-soft);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 101, 32, 0.28);
  background: rgba(166, 119, 34, 0.1);
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6817;
  white-space: nowrap;
}

body.dark-mode .pricing-badge {
  border-color: rgba(215, 181, 109, 0.3);
  background: rgba(215, 181, 109, 0.1);
  color: var(--gold-soft);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(23, 19, 12, 0.78);
}

body.dark-mode .pricing-features li {
  color: rgba(248, 243, 232, 0.78);
}

.pricing-features i {
  margin-top: 0.15rem;
  flex-shrink: 0;
  color: #9a6817;
}

body.dark-mode .pricing-features i {
  color: var(--gold-soft);
}

.pricing-table {
  display: grid;
  gap: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(142, 101, 32, 0.2);
}

.pricing-table-head,
.pricing-rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
}

.pricing-table-head {
  background: rgba(166, 119, 34, 0.12);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a6817;
}

body.dark-mode .pricing-table-head {
  background: rgba(215, 181, 109, 0.1);
  color: var(--gold-soft);
}

.pricing-rate-row {
  border-top: 1px solid rgba(142, 101, 32, 0.14);
  font-size: 0.95rem;
}

.pricing-rate-row:nth-child(even) {
  background: rgba(255, 251, 242, 0.45);
}

body.dark-mode .pricing-rate-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-vehicle {
  font-weight: 600;
}

.pricing-rate {
  text-align: right;
  white-space: nowrap;
}

.pricing-rate strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: #9a6817;
}

body.dark-mode .pricing-rate strong {
  color: var(--gold-soft);
}

.pricing-rate span {
  margin-left: 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.72;
}

.pricing-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-table-3col .pricing-table-head,
.pricing-table-3col .pricing-rate-row {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) auto;
}

.pricing-limits {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.68;
}

.pricing-stack {
  display: grid;
  gap: 1.5rem;
}

.fleet-shine {
  position: relative;
  overflow: hidden;
}

.fleet-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 55%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.fleet-shine:hover::after {
  transform: translateX(120%);
}

.testimonials-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  min-width: 12rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.testimonials-rating-summary:hover {
  border-color: rgba(166, 119, 34, 0.52);
}

.testimonials-rating-summary:focus-visible {
  outline: 2px solid rgba(166, 119, 34, 0.85);
  outline-offset: 3px;
}

.testimonials-rating-tagline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #9a6817;
}

body.dark-mode .testimonials-rating-tagline {
  color: var(--gold-soft);
}

.testimonials-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #c9922a;
}

body.dark-mode .testimonials-stars {
  color: var(--gold-soft);
}

.testimonials-stars i {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .testimonials-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  min-height: 100%;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(166, 119, 34, 0.14);
  pointer-events: none;
}

body.dark-mode .testimonial-card::before {
  color: rgba(215, 181, 109, 0.12);
}

.testimonial-card-featured {
  border-color: rgba(166, 119, 34, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 248, 230, 0.98), rgba(251, 236, 198, 0.88)),
    rgba(255, 249, 236, 0.94);
}

body.dark-mode .testimonial-card-featured {
  background:
    linear-gradient(145deg, rgba(215, 181, 109, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(14, 16, 21, 0.9);
  border-color: rgba(215, 181, 109, 0.34);
}

.testimonial-trip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(142, 101, 32, 0.24);
  background: rgba(166, 119, 34, 0.08);
  padding: 0.28rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a6817;
}

body.dark-mode .testimonial-trip-badge {
  border-color: rgba(215, 181, 109, 0.28);
  background: rgba(215, 181, 109, 0.1);
  color: var(--gold-soft);
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(23, 19, 12, 0.82);
}

body.dark-mode .testimonial-quote {
  color: rgba(248, 243, 232, 0.82);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.testimonial-avatar {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffeaa8 0%, #d1a23e 52%, #8f5f13 100%);
  color: #0a0a0b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.testimonial-name {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
}

.testimonial-meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  opacity: 0.68;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(14px);
}

.section-reveal.is-visible .testimonial-card {
  animation: testimonial-rise 620ms ease forwards;
}

.section-reveal.is-visible .testimonial-card:nth-child(1) { animation-delay: 80ms; }
.section-reveal.is-visible .testimonial-card:nth-child(2) { animation-delay: 140ms; }
.section-reveal.is-visible .testimonial-card:nth-child(3) { animation-delay: 200ms; }
.section-reveal.is-visible .testimonial-card:nth-child(4) { animation-delay: 260ms; }
.section-reveal.is-visible .testimonial-card:nth-child(5) { animation-delay: 320ms; }
.section-reveal.is-visible .testimonial-card:nth-child(6) { animation-delay: 380ms; }

@keyframes testimonial-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(142, 101, 32, 0.28);
  background: rgba(166, 119, 34, 0.1);
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #5c3f0f;
}

.service-area-chip i {
  width: 0.9rem;
  height: 0.9rem;
  color: #9a6817;
  flex-shrink: 0;
}

body.dark-mode .service-area-chip {
  border-color: rgba(215, 181, 109, 0.28);
  background: rgba(215, 181, 109, 0.1);
  color: rgba(248, 243, 232, 0.9);
}

body.dark-mode .service-area-chip i {
  color: var(--gold-soft);
}

.vehicle-img {
  height: 16rem;
  width: 100%;
  border-radius: 0.375rem;
  background: #111319;
  object-fit: cover;
  object-position: center;
}

body:not(.dark-mode) .vehicle-img {
  background: #f6efe1;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.25rem;
  z-index: 59;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 101, 32, 0.34);
  background: linear-gradient(135deg, #ffeaa8 0%, #d1a23e 48%, #8f5f13 100%);
  color: #0a0a0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(143, 95, 19, 0.28);
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.5rem) scale(0.92);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 14px 34px rgba(143, 95, 19, 0.36);
  filter: brightness(1.06);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(166, 119, 34, 0.85);
  outline-offset: 3px;
}

.back-to-top i {
  width: 1.15rem;
  height: 1.15rem;
}

body.dark-mode .back-to-top {
  border-color: rgba(215, 181, 109, 0.4);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 38px rgba(34, 197, 94, 0.36);
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 241, 0.92), rgba(245, 234, 216, 0.96));
  border-top: 1px solid rgba(142, 101, 32, 0.22);
  box-shadow: 0 -14px 34px rgba(68, 49, 17, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-cta-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 900;
}

.mobile-cta-call {
  background: linear-gradient(135deg, #ffeaa8 0%, #d1a23e 48%, #8f5f13 100%);
  color: #0a0a0b;
}

.mobile-cta-whatsapp {
  background: #22c55e;
  color: white;
}

body.dark-mode .mobile-cta-bar {
  background: rgba(8, 9, 11, 0.92);
  border-color: rgba(215, 181, 109, 0.2);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.34);
}

@media (max-width: 767px) {
  body {
    padding-bottom: 4.75rem;
  }

  .back-to-top {
    bottom: 5.5rem;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none;
  }
}

.fare-estimator-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .fare-estimator-layout {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
  }
}

.fare-result {
  border-radius: 0.75rem;
  border: 1px solid rgba(142, 101, 32, 0.28);
  background: linear-gradient(145deg, rgba(255, 234, 168, 0.14), rgba(0, 0, 0, 0.2));
  padding: 1.25rem 1.35rem;
}

.fare-result[hidden] {
  display: none;
}

.fare-result__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f5f13;
}

.fare-result__price {
  margin-top: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  color: #191107;
}

.fare-result__summary {
  margin-top: 0.65rem;
  font-weight: 700;
  color: #191107;
}

.fare-result__note {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(25, 17, 7, 0.62);
}

.fare-result--quote .fare-result__price {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.fare-result--error {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.06);
}

body.dark-mode .fare-result__price,
body.dark-mode .fare-result__summary {
  color: #f5efe3;
}

body.dark-mode .fare-result__note {
  color: rgba(245, 239, 227, 0.62);
}

body.dark-mode .fare-result__label {
  color: #d1a23e;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  transform: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
  color: #191107;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #8f5f13;
  border-bottom: 2px solid #8f5f13;
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(142, 101, 32, 0.18);
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(25, 17, 7, 0.78);
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: #191107;
  font-weight: 800;
}

.faq-steps {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
}

.faq-footer-note a:hover {
  text-decoration: underline;
}

body.dark-mode .faq-item summary {
  color: #f5efe3;
}

body.dark-mode .faq-item[open] summary {
  border-bottom-color: rgba(215, 181, 109, 0.2);
}

body.dark-mode .faq-item summary::after {
  border-color: var(--gold-soft);
}

body.dark-mode .faq-answer {
  color: rgba(245, 239, 227, 0.72);
}

body.dark-mode .faq-answer strong {
  color: #f5efe3;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gallery-filter {
  border-radius: 999px;
  border: 1px solid rgba(142, 101, 32, 0.28);
  background: rgba(255, 251, 242, 0.7);
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(23, 19, 12, 0.78);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  border-color: rgba(166, 119, 34, 0.55);
  background: rgba(215, 181, 109, 0.2);
  color: #7a5510;
}

body.dark-mode .gallery-filter {
  background: rgba(0, 0, 0, 0.28);
  color: rgba(248, 243, 232, 0.78);
}

body.dark-mode .gallery-filter:hover,
body.dark-mode .gallery-filter.is-active {
  background: rgba(215, 181, 109, 0.14);
  color: var(--gold-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.65rem;
  border: 1px solid rgba(142, 101, 32, 0.22);
  padding: 0;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(166, 119, 34, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(68, 49, 17, 0.22);
  outline: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 9, 11, 0.88) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
  text-align: left;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff8e9;
}

.gallery-item-vehicle {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  font-size: 0.92rem;
  opacity: 0.7;
}

.gallery-lightbox {
  margin: auto;
  max-width: min(92vw, 56rem);
  width: 100%;
  border: 1px solid rgba(215, 181, 109, 0.35);
  border-radius: 0.75rem;
  padding: 0;
  background: #0a0b0d;
  color: #f8f3e8;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox::backdrop {
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-inner {
  display: grid;
  gap: 0;
}

.gallery-lightbox-media {
  position: relative;
  background: #050607;
}

.gallery-lightbox-media img {
  display: block;
  width: 100%;
  max-height: min(72vh, 40rem);
  object-fit: contain;
}

.gallery-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(215, 181, 109, 0.18);
}

.gallery-lightbox-nav {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.gallery-lightbox-nav .gallery-lightbox-btn {
  background: rgba(10, 11, 13, 0.72);
  border-color: rgba(215, 181, 109, 0.45);
  backdrop-filter: blur(4px);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.55rem;
}

.gallery-lightbox-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(215, 181, 109, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  transition: background 160ms ease, border-color 160ms ease;
}

.gallery-lightbox-btn:hover:not(:disabled) {
  background: rgba(215, 181, 109, 0.14);
  border-color: rgba(215, 181, 109, 0.45);
}

.gallery-lightbox-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-lightbox-meta {
  padding: 1rem 1.1rem 1.15rem;
}

.gallery-lightbox-meta [data-gallery-lightbox-vehicle] {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-lightbox-meta [data-gallery-lightbox-caption] {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(248, 243, 232, 0.9);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.section-reveal.is-visible .gallery-item {
  animation: testimonial-rise 520ms ease forwards;
}

.section-reveal.is-visible .gallery-item:nth-child(1) { animation-delay: 40ms; }
.section-reveal.is-visible .gallery-item:nth-child(2) { animation-delay: 70ms; }
.section-reveal.is-visible .gallery-item:nth-child(3) { animation-delay: 100ms; }
.section-reveal.is-visible .gallery-item:nth-child(4) { animation-delay: 130ms; }
.section-reveal.is-visible .gallery-item:nth-child(5) { animation-delay: 160ms; }
.section-reveal.is-visible .gallery-item:nth-child(6) { animation-delay: 190ms; }
.section-reveal.is-visible .gallery-item:nth-child(7) { animation-delay: 220ms; }
.section-reveal.is-visible .gallery-item:nth-child(8) { animation-delay: 250ms; }

.section-reveal:not(.is-visible) .gallery-item {
  opacity: 0;
  transform: translateY(10px);
}

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

  .testimonial-card,
  .gallery-item {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .back-to-top {
    transition: none;
  }
}
