:root {
  color-scheme: dark;
  --ink: #f9f3e8;
  --muted: #b8b0a1;
  --dark: #070807;
  --panel: rgba(18, 18, 15, 0.72);
  --panel-strong: rgba(21, 20, 17, 0.92);
  --gold: #f5c86a;
  --gold-deep: #b98021;
  --green: #39e58a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--ink);
  overflow-x: hidden;
}

::selection {
  color: #160f08;
  background: var(--gold);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 17% 20%, rgba(245, 200, 106, 0.16), transparent 32rem),
    radial-gradient(circle at 88% 5%, rgba(57, 229, 138, 0.12), transparent 28rem),
    linear-gradient(135deg, #080908 0%, #13110c 44%, #050505 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  opacity: 0.2;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 200, 106, 0.5), transparent 65%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1080px, calc(100% - 40px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 6px;
  margin-top: 18px;
  height: 64px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(var(--dark), var(--dark)) padding-box,
    linear-gradient(135deg, rgba(245, 200, 106, 0.45), rgba(245, 200, 106, 0.08) 40%, rgba(255, 255, 255, 0.06) 60%, rgba(245, 200, 106, 0.35)) border-box;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.3);
  transition: margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.5s ease,
              box-shadow 0.5s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(245, 200, 106, 0.07), transparent),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245, 200, 106, 0.05), transparent);
  pointer-events: none;
}

.site-header.scrolled {
  margin-top: 8px;
  height: 54px;
  width: min(960px, calc(100% - 40px));
  background:
    linear-gradient(rgba(7, 8, 7, 0.95), rgba(7, 8, 7, 0.95)) padding-box,
    linear-gradient(135deg, rgba(245, 200, 106, 0.55), rgba(245, 200, 106, 0.1) 40%, rgba(255, 255, 255, 0.08) 60%, rgba(245, 200, 106, 0.45)) border-box;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(245, 200, 106, 0.06);
}

/* ── Animated gold shimmer on border ── */
.header-shimmer {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.header-shimmer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -100%;
  width: 60%;
  height: calc(100% + 2px);
  background: linear-gradient(90deg, transparent, rgba(245, 200, 106, 0.3), rgba(255, 255, 255, 0.15), transparent);
  animation: navShimmer 4s ease-in-out infinite;
}

@keyframes navShimmer {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  50%  { left: 100%; opacity: 1; }
  55%  { opacity: 0; }
  100% { left: 100%; opacity: 0; }
}

/* ── Ambient glow beneath header ── */
.header-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 70%;
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245, 200, 106, 0.12), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
  transition: opacity 0.5s ease;
}

.site-header.scrolled .header-glow {
  opacity: 0.6;
}

/* ── WhatsApp button ── */
.nav-wa {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--green);
  background: rgba(57, 229, 138, 0.1);
  border: 1px solid rgba(57, 229, 138, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.nav-wa:hover {
  background: rgba(57, 229, 138, 0.18);
  border-color: rgba(57, 229, 138, 0.45);
  box-shadow: 0 0 20px rgba(57, 229, 138, 0.15);
  transform: scale(1.08);
}

.site-header.scrolled .nav-wa {
  width: 34px;
  height: 34px;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  position: relative;
  z-index: 1;
}

.nav-links:first-of-type {
  margin-left: 0.6rem;
}

.nav-links-right {
  margin-right: 0.6rem;
}

.nav-link {
  position: relative;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  color: rgba(249, 243, 232, 0.55);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 50%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 8px rgba(245, 200, 106, 0.4);
}

.site-header.scrolled .nav-link {
  font-size: 0.74rem;
  padding: 0.35rem 0.65rem;
}

/* ── Brand (center jewel) ── */
.brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0.8rem;
  min-width: max-content;
  text-align: center;
  transition: margin 0.5s ease;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245, 200, 106, 0.6);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(7, 8, 7, 0.9),
    0 0 30px rgba(245, 200, 106, 0.3),
    0 0 60px rgba(245, 200, 106, 0.1);
  margin-top: -8px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .brand-mark {
  width: 40px;
  height: 40px;
  margin-top: -4px;
  box-shadow:
    0 0 0 2px rgba(7, 8, 7, 0.9),
    0 0 20px rgba(245, 200, 106, 0.25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  overflow: hidden;
  max-height: 18px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.brand-text strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 200, 106, 0.8);
  white-space: nowrap;
}

.site-header.scrolled .brand-text {
  max-height: 0;
  opacity: 0;
}

/* ── CTA button ── */
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0 18px;
  flex-shrink: 0;
  border-radius: 999px;
  border: none;
  color: #12100a;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffe8a0, var(--gold), #c78322);
  box-shadow:
    0 0 0 1px rgba(245, 200, 106, 0.3),
    0 8px 30px rgba(245, 200, 106, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(245, 200, 106, 0.5),
    0 12px 40px rgba(245, 200, 106, 0.3);
}

.nav-cta svg {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-label {
  position: relative;
  z-index: 1;
}

.cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.site-header.scrolled .nav-cta {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.72rem;
}

.hero-actions,
.hero-stats,
.contact-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.button.primary {
  color: #17100b;
  background: linear-gradient(135deg, #fff2b8, var(--gold), #c78322);
  box-shadow: 0 18px 50px rgba(245, 200, 106, 0.24);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.button.dark {
  color: #160f08;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 104px max(24px, calc((100vw - 1180px) / 2)) 54px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.37;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.96), rgba(7, 8, 7, 0.56) 42%, rgba(7, 8, 7, 0.86)),
    linear-gradient(0deg, var(--dark), transparent 45%);
}

.city-lights,
.road-lines {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 35%;
  opacity: 0.55;
  background-image: repeating-linear-gradient(90deg, transparent 0 92px, rgba(245, 200, 106, 0.48) 93px 96px, transparent 97px 190px);
  mask-image: linear-gradient(transparent, black 38%, transparent);
  animation: drift 16s linear infinite;
}

.road-lines {
  height: 20%;
  opacity: 0.42;
  background-image: repeating-linear-gradient(90deg, transparent 0 130px, rgba(255, 255, 255, 0.85) 131px 190px, transparent 191px 270px);
  transform: perspective(300px) rotateX(63deg);
  animation-duration: 2.8s;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(5.6rem, 11vw, 11.5rem);
  line-height: 0.82;
  text-shadow: 0 26px 80px rgba(0, 0, 0, 0.7);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(249, 243, 232, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats div {
  min-width: 138px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.6rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-car {
  perspective: 1200px;
}

.car-stage {
  position: relative;
  transform-style: preserve-3d;
  animation: floatCar 5.5s ease-in-out infinite;
}

.car-stage img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotateY(-13deg) rotateX(4deg);
}

.car-stage::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background: rgba(245, 200, 106, 0.22);
  filter: blur(52px);
}

.car-card {
  position: absolute;
  min-width: 170px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 10, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.car-card span,
.car-card strong {
  display: block;
}

.car-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.car-card strong {
  margin-top: 0.25rem;
  font-size: 1.08rem;
}

.card-one {
  top: 12%;
  left: -8%;
  transform: translateZ(90px);
}

.card-two {
  right: -4%;
  bottom: 14%;
  transform: translateZ(130px);
}

/* ── Diamond-cut hero split ── */
.diamond-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 106, 0.28);
  box-shadow:
    0 0 0 1px rgba(245, 200, 106, 0.08),
    0 30px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(245, 200, 106, 0.12);
  animation: floatCar 5.5s ease-in-out infinite;
}

.diamond-half {
  position: relative;
  overflow: hidden;
}

.diamond-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.diamond-half:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.diamond-left {
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.diamond-right {
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -28%;
}

.diamond-label {
  position: absolute;
  bottom: 1.2rem;
  z-index: 2;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.diamond-left .diamond-label {
  left: 0.8rem;
}

.diamond-right .diamond-label {
  right: 0.8rem;
}

.diamond-label strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.diamond-tag {
  display: inline-block;
  margin-bottom: 0.2rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  color: #17100b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff2b8, var(--gold));
}

.diamond-half::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(7, 8, 7, 0.75));
  pointer-events: none;
}

.diamond-divider {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.diamond-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(245, 200, 106, 0.7) 20%, rgba(245, 200, 106, 0.7) 80%, transparent);
}

.diamond-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #17100b;
  font-size: 0.72rem;
  background: linear-gradient(135deg, #fff2b8, var(--gold));
  box-shadow:
    0 0 24px rgba(245, 200, 106, 0.5),
    0 0 60px rgba(245, 200, 106, 0.2);
  animation: diamondPulse 2.4s ease-in-out infinite;
}

.diamond-badge {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
}

.diamond-badge span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.85rem;
  border: 1px solid rgba(245, 200, 106, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(7, 8, 7, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

@keyframes diamondPulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(245, 200, 106, 0.5),
      0 0 60px rgba(245, 200, 106, 0.2);
  }
  50% {
    box-shadow:
      0 0 32px rgba(245, 200, 106, 0.7),
      0 0 80px rgba(245, 200, 106, 0.35);
  }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0d0d0b;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  padding: 1.1rem 0;
  color: rgba(249, 243, 232, 0.82);
  font-weight: 800;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  position: relative;
}

.ticker-track span::after {
  position: absolute;
  top: 50%;
  right: -1.7rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

.section {
  padding: clamp(3.2rem, 6.5vw, 5.5rem) max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.8rem);
}

.section-heading h2 {
  max-width: 920px;
}

/* ── Services 3D car scene background ── */
.services {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #070807, #0a0b0a 40%, #080908);
}

.services-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  perspective: 800px;
  opacity: 0.6;
}

.services .section-heading,
.services .service-grid {
  position: relative;
  z-index: 1;
}

/* Road */
.scene-road {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  transform: perspective(600px) rotateX(42deg);
  transform-origin: bottom center;
  background: linear-gradient(180deg, #0e0f0e, #141514);
}

.road-surface {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 8%, rgba(255, 255, 255, 0.03) 8%, rgba(255, 255, 255, 0.03) 8.5%, transparent 8.5%, transparent 91.5%, rgba(255, 255, 255, 0.03) 91.5%, rgba(255, 255, 255, 0.03) 92%, transparent 92%);
}

.road-markings {
  position: absolute;
  top: 45%;
  left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(245, 200, 106, 0.5) 0px, rgba(245, 200, 106, 0.5) 60px, transparent 60px, transparent 120px);
  animation: roadScroll 2.2s linear infinite;
}

.road-markings-2 {
  top: 55%;
  opacity: 0.3;
  animation-duration: 2.6s;
}

@keyframes roadScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-120px); }
}

/* Car silhouette */
.scene-car {
  position: absolute;
  bottom: 22%;
  left: -18%;
  width: 180px;
  height: 60px;
  animation: carDrive 10s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.scene-car-2 {
  bottom: 16%;
  left: auto;
  right: -18%;
  width: 140px;
  height: 48px;
  animation: carDriveReverse 14s ease-in-out infinite 3s;
  opacity: 0.5;
  transform: scaleX(-1);
}

.car-body {
  position: relative;
  width: 100%;
  height: 100%;
}

.car-base {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(180deg, #1a1a1a, #111);
  border-radius: 6px 6px 3px 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.car-roof {
  position: absolute;
  bottom: 50%;
  left: 22%;
  width: 48%;
  height: 50%;
  background: linear-gradient(180deg, #1e1e1e, #151515);
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: none;
}

.car-window {
  position: absolute;
  bottom: 52%;
  left: 25%;
  width: 42%;
  height: 38%;
  background: linear-gradient(180deg, rgba(245, 200, 106, 0.08), rgba(100, 180, 255, 0.06));
  border-radius: 6px 6px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.car-wheel {
  position: absolute;
  bottom: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #222, #0a0a0a);
  border: 2px solid #333;
  animation: wheelSpin 0.5s linear infinite;
}

.car-wheel-front {
  left: 14%;
}

.car-wheel-rear {
  right: 14%;
}

@keyframes wheelSpin {
  to { transform: rotate(360deg); }
}

.car-headlight {
  position: absolute;
  right: -2px;
  bottom: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff8d6;
  box-shadow:
    0 0 12px 4px rgba(245, 200, 106, 0.6),
    30px -2px 60px 20px rgba(245, 200, 106, 0.12),
    60px -4px 100px 30px rgba(245, 200, 106, 0.06);
}

.car-taillight {
  position: absolute;
  left: -1px;
  bottom: 20px;
  width: 6px;
  height: 5px;
  border-radius: 2px;
  background: #ff3333;
  box-shadow: 0 0 10px 3px rgba(255, 50, 50, 0.4);
}

.car-shadow {
  position: absolute;
  bottom: -4px;
  left: 10%;
  width: 80%;
  height: 10px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 70%);
  border-radius: 50%;
}

@keyframes carDrive {
  0%   { left: -20%; opacity: 0; }
  5%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

@keyframes carDriveReverse {
  0%   { right: -20%; opacity: 0; }
  5%   { opacity: 0.5; }
  85%  { opacity: 0.5; }
  100% { right: 110%; opacity: 0; }
}

/* Ambient glow */
.scene-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 60%;
  height: 30%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245, 200, 106, 0.06), transparent 60%);
  pointer-events: none;
}

/* Floating particles (city lights) */
.scene-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(245, 200, 106, 0.4);
  animation: particleFloat 6s ease-in-out infinite;
}

.scene-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 5s; }
.scene-particles span:nth-child(2) { top: 25%; left: 30%; animation-delay: 0.8s; animation-duration: 7s; }
.scene-particles span:nth-child(3) { top: 10%; left: 55%; animation-delay: 1.5s; animation-duration: 6s; }
.scene-particles span:nth-child(4) { top: 35%; left: 75%; animation-delay: 2.2s; animation-duration: 8s; }
.scene-particles span:nth-child(5) { top: 20%; left: 90%; animation-delay: 0.5s; animation-duration: 5.5s; }
.scene-particles span:nth-child(6) { top: 40%; left: 20%; animation-delay: 3s; animation-duration: 7.5s; }
.scene-particles span:nth-child(7) { top: 8%; left: 45%; animation-delay: 1s; animation-duration: 6.5s; }
.scene-particles span:nth-child(8) { top: 30%; left: 65%; animation-delay: 2.5s; animation-duration: 5.8s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 1; }
  50% { transform: translateY(-20px) scale(1.5); }
  80% { opacity: 1; }
}

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

/* Card glow synced to car passing — 10s cycle matching carDrive */
.service-card {
  position: relative;
  min-height: 310px;
  padding: 1.35rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 80% 0%, rgba(245, 200, 106, 0.1), transparent 16rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, background 0.35s ease;
  animation: cardGlow1 10s ease-in-out infinite;
}

.service-card:nth-child(2) { animation-name: cardGlow2; }
.service-card:nth-child(3) { animation-name: cardGlow3; }
.service-card:nth-child(4) { animation-name: cardGlow4; }

/* Card 1: car passes ~15-35% of journey */
@keyframes cardGlow1 {
  0%, 10%, 40%, 100% {
    border-color: var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transform: scale(1);
    filter: brightness(1);
  }
  20%, 32% {
    border-color: var(--gold);
    box-shadow:
      0 0 20px rgba(245, 200, 106, 0.35),
      0 0 60px rgba(245, 200, 106, 0.15),
      0 0 100px rgba(245, 200, 106, 0.08),
      inset 0 0 40px rgba(245, 200, 106, 0.1);
    transform: scale(1.03);
    filter: brightness(1.15);
  }
}

/* Card 2: car passes ~30-50% */
@keyframes cardGlow2 {
  0%, 26%, 58%, 100% {
    border-color: var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transform: scale(1);
    filter: brightness(1);
  }
  36%, 50% {
    border-color: var(--gold);
    box-shadow:
      0 0 20px rgba(245, 200, 106, 0.35),
      0 0 60px rgba(245, 200, 106, 0.15),
      0 0 100px rgba(245, 200, 106, 0.08),
      inset 0 0 40px rgba(245, 200, 106, 0.1);
    transform: scale(1.03);
    filter: brightness(1.15);
  }
}

/* Card 3: car passes ~48-68% */
@keyframes cardGlow3 {
  0%, 44%, 74%, 100% {
    border-color: var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transform: scale(1);
    filter: brightness(1);
  }
  52%, 66% {
    border-color: var(--gold);
    box-shadow:
      0 0 20px rgba(245, 200, 106, 0.35),
      0 0 60px rgba(245, 200, 106, 0.15),
      0 0 100px rgba(245, 200, 106, 0.08),
      inset 0 0 40px rgba(245, 200, 106, 0.1);
    transform: scale(1.03);
    filter: brightness(1.15);
  }
}

/* Card 4: car passes ~65-85% */
@keyframes cardGlow4 {
  0%, 60%, 90%, 100% {
    border-color: var(--line);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transform: scale(1);
    filter: brightness(1);
  }
  70%, 82% {
    border-color: var(--gold);
    box-shadow:
      0 0 20px rgba(245, 200, 106, 0.35),
      0 0 60px rgba(245, 200, 106, 0.15),
      0 0 100px rgba(245, 200, 106, 0.08),
      inset 0 0 40px rgba(245, 200, 106, 0.1);
    transform: scale(1.03);
    filter: brightness(1.15);
  }
}

.service-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(245, 200, 106, 0.32), transparent 32%);
  transition: opacity 0.35s ease;
}

.service-card:hover {
  border-color: rgba(245, 200, 106, 0.42);
  transform: translateY(-10px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.18),
    0 0 40px rgba(245, 200, 106, 0.15),
    inset 0 0 30px rgba(245, 200, 106, 0.06);
  animation-play-state: paused;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 2.8rem;
  border: 1px solid rgba(245, 200, 106, 0.38);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.service-card h3,
.seat-content h3 {
  text-wrap: balance;
}

.service-card p,
.fleet-copy p,
.contact-content p {
  color: var(--muted);
  line-height: 1.75;
}

.car-categories {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(245, 200, 106, 0.05) 55%, rgba(255, 255, 255, 0.02)),
    #080908;
}

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

.seat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.seat-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.16), transparent 55%);
  transform: translateX(-100%);
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.seat-card:hover {
  border-color: rgba(245, 200, 106, 0.48);
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.seat-card:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.featured-seat {
  background:
    linear-gradient(145deg, rgba(245, 200, 106, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
}

.wedding-seat {
  background:
    linear-gradient(145deg, rgba(255, 242, 184, 0.16), rgba(185, 32, 64, 0.12) 48%, rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
}

.group-seat {
  background:
    linear-gradient(145deg, rgba(57, 229, 138, 0.11), rgba(245, 200, 106, 0.09) 48%, rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.065);
}

.wedding-seat .seat-photo::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  content: "Luxury";
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #17100b;
  font-size: 0.82rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff2b8, var(--gold));
}

.seat-photo {
  position: relative;
  aspect-ratio: 16 / 11;
  height: auto;
  overflow: hidden;
  background: #090908;
}

.seat-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(7, 8, 7, 0.9));
}

.seat-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.seat-card:hover .seat-photo img {
  transform: scale(1.08);
}

/* ── Seat card photo slider ── */
.seat-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.seat-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seat-slider-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.4rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.seat-card:hover .seat-slider-nav {
  opacity: 1;
}

.seat-prev,
.seat-next {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  background: rgba(7, 8, 7, 0.6);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.seat-prev:hover,
.seat-next:hover {
  background: rgba(245, 200, 106, 0.25);
  transform: scale(1.1);
}

.seat-slider-dots {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.seat-card:hover .seat-slider-dots {
  opacity: 1;
}

.seat-slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.seat-slider-dots span.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 6px rgba(245, 200, 106, 0.5);
}

.seat-photo > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #17100b;
  font-weight: 900;
  background: linear-gradient(135deg, #fff2b8, var(--gold));
  box-shadow: 0 18px 42px rgba(245, 200, 106, 0.24);
}

.seat-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.seat-type {
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seat-content h3 {
  margin-bottom: 0.7rem;
}

.seat-content p:not(.seat-type) {
  color: var(--muted);
  line-height: 1.7;
}

.seat-tags {
  margin-top: auto;
  padding-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.seat-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(249, 243, 232, 0.86);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
}

.seat-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 200, 106, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.seat-note strong {
  color: var(--gold);
}

.seat-note span {
  color: var(--muted);
}

.seat-note a {
  color: #17100b;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 900;
  background: var(--gold);
}

.fleet {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3.2rem, 6.5vw, 5.5rem) max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 200, 106, 0.11), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(245, 200, 106, 0.055) 45%, transparent),
    #0a0a09;
}

.fleet-copy p {
  margin: 1rem 0 1.35rem;
  font-size: 1.05rem;
}

.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 1rem;
  transform-style: preserve-3d;
}

.gallery-card {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  transform: rotateX(3deg) rotateY(-5deg);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card:hover img {
  transform: scale(1.09);
}

.fleet-showcase {
  background:
    radial-gradient(circle at 82% 8%, rgba(245, 200, 106, 0.13), transparent 30rem),
    linear-gradient(180deg, #080908, #0d0c09 58%, #070807);
}

.gallery-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
  padding: clamp(0.75rem, 2vw, 1.2rem);
  border: 1px solid rgba(245, 200, 106, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 200, 106, 0.14), transparent 26rem),
    linear-gradient(135deg, rgba(245, 200, 106, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 7, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.gallery-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.1rem 0.35rem;
}

.gallery-copy span,
.gallery-copy strong {
  display: block;
}

.gallery-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-copy strong {
  max-width: 520px;
  color: rgba(249, 243, 232, 0.82);
  font-size: 1rem;
  line-height: 1.5;
  text-align: right;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gallery-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(249, 243, 232, 0.82);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.065);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gallery-tabs button span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 24px;
  padding: 0 0.4rem;
  border-radius: 999px;
  color: #17100b;
  font-size: 0.75rem;
  background: rgba(245, 200, 106, 0.9);
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
  border-color: rgba(245, 200, 106, 0.5);
  color: var(--ink);
  background: rgba(245, 200, 106, 0.13);
  transform: translateY(-2px);
}

/* ── Mobile category dropdown ── */
.gallery-tabs-mobile {
  display: none;
}

.gallery-select {
  width: 100%;
  min-height: 42px;
  padding: 0 2.2rem 0 0.85rem;
  border: 1px solid rgba(245, 200, 106, 0.25);
  border-radius: 999px;
  color: var(--gold);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(245, 200, 106, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5c86a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.85rem center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.gallery-select:focus {
  border-color: rgba(245, 200, 106, 0.5);
  outline: 2px solid rgba(245, 200, 106, 0.2);
  outline-offset: 2px;
}

.gallery-select option {
  background: #111;
  color: var(--ink);
  padding: 0.5rem;
}

.gallery-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 500px;
  max-height: 680px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 25% 15%, rgba(245, 200, 106, 0.12), transparent 28rem),
    #050505;
}

.gallery-main {
  position: absolute;
  inset: 0;
  margin: 0;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 200, 106, 0.1), transparent 28rem),
    #080807;
  cursor: zoom-in;
  transition: opacity 0.3s ease, transform 0.45s ease;
}

.gallery-main img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.gallery-main figcaption {
  position: absolute;
  right: auto;
  bottom: 1.1rem;
  left: 1.1rem;
  width: min(440px, calc(100% - 2.2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 8, 7, 0.72);
  backdrop-filter: blur(16px);
}

.gallery-main figcaption span,
.gallery-main figcaption strong {
  display: block;
}

.gallery-main figcaption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-main figcaption strong {
  margin-top: 0.32rem;
  font-size: 1.15rem;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(7, 8, 7, 0.7);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-nav:hover {
  background: rgba(245, 200, 106, 0.18);
  transform: translateY(-50%) scale(1.06);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.15rem 0;
}

.gallery-meta p {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-meta strong {
  display: block;
  font-size: 1.8rem;
}

.gallery-progress {
  flex: 1;
  height: 4px;
  max-width: 520px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #fff2b8);
  transition: width 0.35s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.45rem;
  scrollbar-width: thin;
}

.gallery-thumbs button {
  position: relative;
  flex: 0 0 118px;
  height: 78px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gallery-thumbs button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
}

.gallery-thumbs button.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 200, 106, 0.16);
  transform: translateY(-2px);
}

.gallery-thumbs button:not(.active) {
  opacity: 0.72;
}

.gallery-thumbs button:hover {
  opacity: 1;
}

.gallery-thumbs img {
  height: 100%;
  object-fit: cover;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(100%, 1180px);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.7);
}

.gallery-lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
}

.ride-board {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 0.85rem;
  padding: 0.85rem;
  margin: 0 max(24px, calc((100vw - 1180px) / 2));
  border: 1px solid rgba(245, 200, 106, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245, 200, 106, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 7, 0.88);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  transform: translateY(-18px);
}

.board-panel {
  position: relative;
  min-height: 136px;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.board-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.75;
  background: radial-gradient(circle at 18% 18%, rgba(245, 200, 106, 0.16), transparent 42%);
}

.board-panel > * {
  position: relative;
  z-index: 1;
}

.board-status {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.board-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(57, 229, 138, 0.26);
  border-radius: 50%;
  background: rgba(57, 229, 138, 0.08);
}

.board-panel p {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.board-panel strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.3;
}

.board-subtext {
  display: block;
  margin-top: 0.65rem;
  color: rgba(249, 243, 232, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.route-chips,
.board-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.route-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.78rem;
  border: 1px solid rgba(245, 200, 106, 0.2);
  border-radius: 999px;
  color: rgba(249, 243, 232, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(245, 200, 106, 0.08);
}

.board-action {
  background:
    linear-gradient(135deg, rgba(245, 200, 106, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.065);
}

.board-actions {
  margin-top: 1rem;
}

.board-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.board-actions a:first-child {
  color: #17100b;
  background: var(--gold);
}

.board-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.live-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(57, 229, 138, 0.6);
  animation: pulse 1.8s infinite;
}

.review-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 1rem;
}

.quote-card,
.live-review-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.stars,
.quote-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-shell.widget-only {
  grid-template-columns: 1fr;
}

.live-review-panel {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
}

.live-review-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(245, 200, 106, 0.18), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(57, 229, 138, 0.14), transparent 24rem);
}

.review-panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.35rem 0.9rem;
}

.review-panel-top div {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.review-panel-top strong {
  font-size: 1.05rem;
}

.review-panel-top a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-widget-mount {
  position: relative;
  z-index: 1;
  min-height: 300px;
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.review-widget-mount > iframe,
.review-widget-mount > div:not(.review-widget-fallback) {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.review-widget-mount [class^="elfsight-app"],
.review-widget-mount [class*=" elfsight-app"],
.review-widget-mount [class^="elfsight-app"] *,
.review-widget-mount [class*=" elfsight-app"] * {
  color: var(--ink);
}

.review-widget-mount h1,
.review-widget-mount h2,
.review-widget-mount h3,
.review-widget-mount h4,
.review-widget-mount [role="heading"],
.review-widget-mount [class*="Title"],
.review-widget-mount [class*="Header"],
.review-widget-mount [class*="title"],
.review-widget-mount [class*="header"] {
  color: var(--ink) !important;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5) !important;
}

.review-widget-mount [class^="elfsight-app"] div,
.review-widget-mount [class*=" elfsight-app"] div,
.review-widget-mount [class^="elfsight-app"] span,
.review-widget-mount [class*=" elfsight-app"] span {
  border-color: rgba(255, 255, 255, 0.12);
}

.review-widget-mount:has(> iframe) .review-widget-fallback,
.review-widget-mount:has(> [class^="elfsight-app"]) .review-widget-fallback,
.review-widget-mount:has(> [class*=" elfsight-app"]) .review-widget-fallback,
.review-widget-mount:has(> [class*="trustindex"]) .review-widget-fallback {
  display: none;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card {
  min-height: 250px;
  padding: 1.35rem;
}

.quote-card p {
  margin: 1.4rem 0;
  color: rgba(249, 243, 232, 0.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact {
  position: relative;
  padding: clamp(3.8rem, 7vw, 6.2rem) max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.96), rgba(7, 8, 7, 0.55)),
    url("assets/SUV/IMG-20251227-WA0000.jpg") center / cover;
  transform: scale(1.03);
}

.contact::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.1), rgba(7, 8, 7, 0.82));
}

.contact-content {
  max-width: 900px;
}

.contact-content h2 {
  margin-bottom: 1.2rem;
}

.contact-content > p {
  max-width: 640px;
  font-size: 1.08rem;
}

.contact-grid {
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.contact-card {
  min-width: min(100%, 260px);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(245, 200, 106, 0.5);
  transform: translateY(-5px);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}

/* ── FAQ Section ── */
.faq {
  background:
    radial-gradient(circle at 15% 80%, rgba(245, 200, 106, 0.08), transparent 28rem),
    linear-gradient(180deg, #080908, #0a0a09);
}

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

.faq-item {
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(245, 200, 106, 0.3);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  border: 1px solid rgba(245, 200, 106, 0.25);
  background: rgba(245, 200, 106, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(245, 200, 106, 0.15);
}

.faq-item summary h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item p a {
  color: var(--gold);
  font-weight: 700;
}

.site-footer {
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding: 1.1rem 0;
}

.footer-row p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(184, 176, 161, 0.55);
}

.footer-cta {
  grid-column: 1 / 3;
  justify-self: start;
}

.footer-copy {
  grid-column: 6 / 7;
  text-align: center;
  white-space: nowrap;
}

.footer-credit {
  grid-column: 7 / 13;
  text-align: right;
  justify-self: end;
  white-space: nowrap;
}

.footer-credit a {
  color: rgba(245, 200, 106, 0.5);
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  color: #12100a;
  background: linear-gradient(135deg, #ffe8a0, var(--gold));
  justify-self: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 200, 106, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.14);
  }
}

@keyframes drift {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -520px;
  }
}

@keyframes floatCar {
  0%,
  100% {
    transform: translateY(0) rotateZ(-1deg);
  }
  50% {
    transform: translateY(-18px) rotateZ(1deg);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(-9px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(57, 229, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(57, 229, 138, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 28px);
    height: 56px;
    padding: 0 4px;
  }

  .site-header.scrolled {
    width: calc(100% - 28px);
  }

  .nav-links {
    display: none;
  }

  .brand {
    margin: 0 auto;
    flex-direction: row;
    gap: 0.5rem;
  }

  .brand-mark {
    margin-top: 0;
    width: 42px;
    height: 42px;
  }

  .brand-text {
    max-height: 20px;
  }

  .brand-text strong {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .site-header.scrolled .brand-text {
    max-height: 20px;
    opacity: 1;
  }

  .site-header.scrolled .brand-mark {
    width: 36px;
    height: 36px;
    margin-top: 0;
  }

  .hero,
  .fleet,
  .review-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-car {
    max-width: 520px;
    margin-inline: auto;
  }

  .diamond-split {
    aspect-ratio: 4 / 3;
  }

  .service-grid,
  .review-cards,
  .seat-selector,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-experience {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    min-height: 430px;
  }

  .gallery-thumbs button {
    flex-basis: 108px;
  }

  .ride-board {
    grid-template-columns: 1fr;
    transform: translateY(0);
  }

  .board-panel {
    min-height: auto;
  }

  .seat-note {
    grid-template-columns: 1fr;
  }

  .live-review-panel {
    padding: 0.8rem;
  }

  .review-panel-top {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .cursor-glow,
  .scroll-cue {
    display: none;
  }

  .site-header {
    width: calc(100% - 16px);
    margin-top: 8px;
    height: 50px;
  }

  .site-header.scrolled {
    height: 46px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.72rem;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .cta-label {
    display: none;
  }

  .nav-wa {
    width: 32px;
    height: 32px;
  }

  .nav-wa svg {
    width: 14px;
    height: 14px;
  }

  h1 {
    font-size: clamp(4.3rem, 23vw, 6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-stats,
  .hero-actions {
    align-items: stretch;
  }

  .hero-stats div,
  .button {
    width: 100%;
  }

  .car-card {
    position: static;
    margin-top: 0.75rem;
    transform: none;
  }

  .car-stage img {
    aspect-ratio: 16 / 11;
    transform: none;
  }

  .diamond-split {
    aspect-ratio: 1 / 1;
  }

  .diamond-label {
    padding: 0.45rem 0.7rem;
    bottom: 0.7rem;
  }

  .diamond-left .diamond-label {
    left: 0.5rem;
  }

  .diamond-right .diamond-label {
    right: 0.5rem;
  }

  .diamond-label strong {
    font-size: 0.78rem;
  }

  .diamond-tag {
    font-size: 0.6rem;
    padding: 0.1rem 0.45rem;
  }

  .diamond-icon {
    width: 28px;
    height: 28px;
    font-size: 0.58rem;
  }

  .diamond-badge span {
    font-size: 0.62rem;
    min-height: 26px;
    padding: 0 0.6rem;
  }

  .service-grid,
  .review-cards,
  .seat-selector,
  .fleet-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .gallery-copy {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .gallery-copy strong {
    font-size: 0.5rem;
    text-align: right;
    line-height: 1.3;
    max-width: 50%;
  }

  .gallery-tabs {
    display: none;
  }

  .gallery-tabs-mobile {
    display: flex;
  }

  .gallery-main figcaption {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    width: auto;
    padding: 0.75rem;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    left: 0.55rem;
  }

  .gallery-next {
    right: 0.55rem;
  }

  .gallery-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-seat {
    grid-column: auto;
  }

  .seat-photo {
    aspect-ratio: 16 / 10;
  }

  .seat-note a {
    width: 100%;
  }

  .seat-tags {
    flex-wrap: wrap;
  }

  .seat-tags span {
    justify-content: flex-start;
    padding-inline: 0.72rem;
    font-size: 0.8rem;
    text-align: left;
  }

  .service-card,
  .quote-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 2rem;
  }

  .gallery-card.tall {
    grid-row: span 1;
  }

  .review-panel-top {
    flex-direction: column;
  }

  .review-widget-mount {
    min-height: 360px;
    overflow-x: hidden;
  }

  .review-widget-mount iframe {
    min-width: 0;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    place-items: center;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-cta {
    grid-column: 1;
    justify-self: center;
  }

  .footer-copy {
    grid-column: 1;
    text-align: center;
  }

  .footer-credit {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 12px);
    margin-top: 6px;
    height: 46px;
  }

  .brand-text {
    display: none;
  }

  .brand {
    margin: 0 auto;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-cta {
    padding: 0 10px;
    min-height: 32px;
  }

  .nav-wa {
    width: 30px;
    height: 30px;
  }

  .section,
  .fleet,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ride-board {
    margin-left: 16px;
    margin-right: 16px;
  }

  .board-status {
    grid-template-columns: 1fr;
  }

  .board-actions a {
    flex: 1 1 130px;
  }

  .route-chips span {
    flex: 1 1 120px;
    justify-content: center;
  }

  .live-review-panel {
    padding: 0.55rem;
  }
}

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