/* ==========================================================================
   TAXI VIP — style.css
   Production CSS — single source of truth
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

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

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* Colors */
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9B7D35;
  --black: #0A0A0A;
  --black-light: #111111;
  --black-card: #161616;
  --black-alt: #0D0D0D;
  --white: #ffffff;
  --white-soft: #F5F3EE;
  --gray: #8A8680;
  --gray-dark: #4A4845;

  /* Gold alpha */
  --gold-a05: rgba(201, 168, 76, 0.05);
  --gold-a08: rgba(201, 168, 76, 0.08);
  --gold-a10: rgba(201, 168, 76, 0.1);
  --gold-a15: rgba(201, 168, 76, 0.15);
  --gold-a20: rgba(201, 168, 76, 0.2);
  --gold-a25: rgba(201, 168, 76, 0.25);
  --gold-a30: rgba(201, 168, 76, 0.3);
  --gold-a40: rgba(201, 168, 76, 0.4);
  --gold-a60: rgba(201, 168, 76, 0.6);

  /* White alpha */
  --white-a03: rgba(255, 255, 255, 0.03);
  --white-a05: rgba(255, 255, 255, 0.05);
  --white-a06: rgba(255, 255, 255, 0.06);
  --white-a08: rgba(255, 255, 255, 0.08);
  --white-a10: rgba(255, 255, 255, 0.1);
  --white-a30: rgba(255, 255, 255, 0.3);
  --white-a50: rgba(255, 255, 255, 0.5);
  --white-a70: rgba(255, 255, 255, 0.7);
  --white-a80: rgba(255, 255, 255, 0.8);
  --white-a85: rgba(255, 255, 255, 0.85);

  /* Fonts */
  --ff-heading: 'Cormorant Garamond', serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.3s ease;
  --t-medium: 0.4s ease;
  --t-slow: 0.6s ease;

  /* Layout */
  --container-max: 1320px;
  --container-pad: 2rem;
}

/* --------------------------------------------------------------------------
   GLOBAL BODY & TYPOGRAPHY
   -------------------------------------------------------------------------- */

body {
  background: var(--black);
  color: var(--white-soft);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   LAYOUT
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

section {
  padding: clamp(60px, 10vw, 140px) 0;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--white-a60, rgba(255,255,255,0.6));
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 100000;
  font-weight: 600;
  transition: top var(--t-fast);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

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

/* --------------------------------------------------------------------------
   PRELOADER
   -------------------------------------------------------------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.preloader-taxi {
  font-family: var(--ff-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  color: var(--gold);
}

.preloader-separator {
  width: 2px;
  height: 40px;
  background: var(--gold);
  opacity: 0.6;
}

.preloader-vip {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 4px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--gold-a20);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.1s linear;
}

/* Safety: auto-hide preloader after 3.5s even without JS */
@keyframes preloader-safety-hide {
  0%, 95% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

#preloader {
  animation: preloader-safety-hide 3.5s ease forwards;
}

/* --------------------------------------------------------------------------
   CUSTOM CURSOR (desktop only)
   -------------------------------------------------------------------------- */

.cursor-dot,
.cursor-outline {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    mix-blend-mode: difference;
  }

  .cursor-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-a40);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transition: width var(--t-fast), height var(--t-fast), border-color var(--t-fast);
  }

  .cursor-text {
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity var(--t-fast);
  }
}

/* --------------------------------------------------------------------------
   SCROLL PROGRESS
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   SMOOTH SCROLL WRAPPER
   -------------------------------------------------------------------------- */

#smooth-wrapper,
#smooth-content {
  width: 100%;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   REVEAL (visible by default, GSAP hides if loaded)
   -------------------------------------------------------------------------- */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-fade {
  opacity: 1 !important;
  transform: none !important;
}

body.gsap-ready .reveal,
body.gsap-ready .reveal-left,
body.gsap-ready .reveal-right,
body.gsap-ready .reveal-scale,
body.gsap-ready .reveal-fade {
  opacity: 0 !important;
  transform: translateY(40px) !important;
}

body.gsap-ready .reveal-left {
  transform: translateX(-60px) !important;
}

body.gsap-ready .reveal-right {
  transform: translateX(60px) !important;
}

body.gsap-ready .reveal-scale {
  transform: scale(0.9) !important;
}

body.gsap-ready .reveal-fade {
  transform: none !important;
}

/* --------------------------------------------------------------------------
   HEADER / NAVBAR
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background-color 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gold-a10);
}

.navbar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  z-index: 1100;
}

.logo-svg {
  height: 36px;
  width: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-a80);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--t-fast);
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--t-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* CTA button in nav */
.btn-nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 0.8rem !important;
  transition: background var(--t-fast), transform 0.2s ease !important;
}

.btn-nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.btn-nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  text-align: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color var(--t-fast);
}

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

.mobile-menu-footer {
  margin-top: 3rem;
}

.mobile-phone {
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn-primary,
a.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: background var(--t-fast), transform 0.2s ease, box-shadow var(--t-fast);
  cursor: pointer;
  line-height: 1.4;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline,
a.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid var(--white-a30);
  transition: border-color var(--t-fast), color var(--t-fast), transform 0.2s ease;
  cursor: pointer;
  line-height: 1.4;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.75rem;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.magnetic-btn {
  will-change: transform;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.75) 100%);
}

.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-a08);
  border: 1px solid var(--gold-a30);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-a70);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

.scroll-text {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-family: var(--ff-body);
}

.scroll-arrow {
  animation: bounce-arrow 2s ease infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --------------------------------------------------------------------------
   VALUE PROPOSITION
   -------------------------------------------------------------------------- */

.value-section {
  background: var(--black-alt);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--gold-a10);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform var(--t-fast);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
}

.value-ghost {
  position: absolute;
  top: -15px;
  right: 15px;
  font-family: var(--ff-heading);
  font-size: 7rem;
  font-weight: 700;
  color: var(--gold-a05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.value-icon {
  margin-bottom: 1.5rem;
}

.value-icon i {
  font-size: 2.2rem;
  color: var(--gold);
}

.value-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.value-timeline-line {
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-a30), transparent);
  margin: 1rem 1.5rem;
  align-self: center;
  min-height: 60px;
}

/* --------------------------------------------------------------------------
   SERVICES (horizontal scroll)
   -------------------------------------------------------------------------- */

.services-section {
  background: var(--black);
}

.horizontal-scroll {
  position: relative;
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 350px;
  height: 420px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
}

.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-bg img {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 70%);
  transition: background 0.4s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.65) 70%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--white-a70);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: letter-spacing var(--t-fast);
}

.service-link:hover {
  letter-spacing: 2.5px;
}

.tilt-card {
  will-change: transform;
}

/* --------------------------------------------------------------------------
   STATS
   -------------------------------------------------------------------------- */

.stats-section {
  position: relative;
  background: var(--black-light);
  overflow: hidden;
}

.noise-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1.5rem;
}

.stat-prefix {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.stat-text {
  color: var(--gold);
}

.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--ff-body);
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   FLEET SLIDER
   -------------------------------------------------------------------------- */

.fleet-section {
  background: var(--black);
}

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

.fleet-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
  padding: 1rem 0;
}

.fleet-slide {
  flex: 0 0 380px;
  background: var(--black-card);
  border: 1px solid var(--gold-a10);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.fleet-slide:hover {
  border-color: var(--gold-a30);
  transform: translateY(-4px);
}

.fleet-slide-img {
  height: 240px;
  overflow: hidden;
}

.fleet-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-slide:hover .fleet-slide-img img {
  transform: scale(1.05);
}

.fleet-slide-info {
  padding: 1.5rem;
}

.fleet-category {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid var(--gold-a25);
  margin-bottom: 0.75rem;
}

.fleet-slide h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.fleet-specs {
  color: var(--gray);
  font-size: 0.85rem;
}

.fleet-specs i {
  color: var(--gold-a60);
  margin-right: 0.25rem;
}

.fleet-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.fleet-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold-a30);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background var(--t-fast), border-color var(--t-fast);
  font-size: 0.9rem;
}

.fleet-arrow:hover {
  background: var(--gold-a10);
  border-color: var(--gold);
}

.fleet-prev,
.fleet-next {
  /* specificity helpers, same as .fleet-arrow */
}

.fleet-dots {
  display: flex;
  gap: 0.5rem;
}

.fleet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-a20);
  cursor: pointer;
  border: none;
  transition: background var(--t-fast);
}

.fleet-dot.active {
  background: var(--gold);
}

.fleet-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   DESTINATIONS
   -------------------------------------------------------------------------- */

.destinations-section {
  background: var(--black-alt);
}

.destinations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.destinations-map {
  position: relative;
  background: var(--black-card);
  border-radius: 12px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--gold-a10);
}

.map-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 48% 42%, var(--gold-a08) 0%, transparent 40%),
    linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}

.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
}

.map-dot::after {
  content: attr(data-city);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--white-a50);
  white-space: nowrap;
  font-family: var(--ff-body);
}

.map-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-a40);
  animation: pulse-map 2s ease infinite;
}

@keyframes pulse-map {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

.map-dot-bilbao {
  width: 14px;
  height: 14px;
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.destinations-list {
  display: flex;
  flex-direction: column;
}

.dest-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--white-a05);
  border-radius: 8px;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.dest-item:hover {
  border-color: var(--gold-a25);
  background: var(--gold-a05, rgba(201,168,76,0.03));
}

.dest-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  flex: 1;
}

.dest-time {
  color: var(--gray);
  font-size: 0.8rem;
  flex: 0 0 120px;
  text-align: center;
}

.dest-time i {
  color: var(--gold-a50, rgba(201,168,76,0.5));
  margin-right: 4px;
  font-size: 0.75rem;
}

.dest-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex: 0 0 100px;
  text-align: right;
}

.dest-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   BOOKING PROCESS / TIMELINE
   -------------------------------------------------------------------------- */

.process-section {
  background: var(--black);
}

.process-timeline {
  position: relative;
  margin-top: 3rem;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 4px;
  z-index: 0;
  overflow: visible;
}

.process-line line,
.process-line-draw {
  stroke: var(--gold-a30);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-a08);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--t-fast), transform var(--t-fast);
}

.process-icon i {
  font-size: 1.3rem;
  color: var(--gold);
}

.process-step:hover .process-icon {
  background: var(--gold-a15);
  transform: scale(1.08);
}

.process-step h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS
   -------------------------------------------------------------------------- */

.testimonials-section {
  background: var(--black-alt);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1rem 0;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background: var(--white-a03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white-a06);
  border-radius: 16px;
  padding: 2rem;
  margin: 0;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.testimonial-card:hover {
  border-color: var(--gold-a20);
  transform: translateY(-4px);
}

.glass-card {
  background: var(--white-a03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 3px;
}

.testimonial-card > p {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white-a85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card footer {
  font-family: var(--ff-body);
}

.testimonial-card footer strong {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-card footer span {
  color: var(--gray);
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------------------------- */

.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  color: var(--white-a50);
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--black);
  padding-top: 0;
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 2;
  text-decoration: none;
  display: block;
  transition: color var(--t-fast);
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li a {
  display: block;
}

.footer-brand p {
  margin-top: 1rem;
}

.footer-logo {
  display: inline-block;
}

.footer-logo svg {
  height: 34px;
  width: auto;
}

.footer-contact i {
  color: var(--gold);
  width: 1.25rem;
  margin-right: 0.5rem;
}

.footer-cta {
  margin-top: 1.5rem;
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid var(--white-a05);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--gray-dark);
  font-size: 0.8rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-dark);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--t-fast);
}

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

.wcag-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold-a20);
  border-radius: 4px;
  color: var(--gold-a60);
}

/* --------------------------------------------------------------------------
   WHATSAPP FLOAT
   -------------------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: transform var(--t-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* --------------------------------------------------------------------------
   BREADCRUMB (subpages)
   -------------------------------------------------------------------------- */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb-separator {
  color: var(--gray-dark);
}

/* --------------------------------------------------------------------------
   HERO COMPACT (inner pages)
   -------------------------------------------------------------------------- */

.hero-compact,
.hero--compact {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-compact .hero-content,
.hero--compact .hero-content {
  padding-top: 100px;
}

/* --------------------------------------------------------------------------
   TABLES (subpages)
   -------------------------------------------------------------------------- */

.destinations-table,
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.destinations-table th,
.pricing-table th {
  background: var(--black-card);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  text-align: left;
}

.destinations-table td,
.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--white-a05);
  color: var(--white-soft);
  font-size: 0.9rem;
}

.destinations-table tr:hover td,
.pricing-table tr:hover td {
  background: var(--gold-a05);
}

/* --------------------------------------------------------------------------
   FORMS (subpages)
   -------------------------------------------------------------------------- */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-a70);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--white-a10);
  border-radius: 6px;
  color: var(--white-soft);
  font-size: 0.95rem;
  transition: border-color var(--t-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   ACCORDION / FAQ (subpages)
   -------------------------------------------------------------------------- */

.accordion-item {
  border-bottom: 1px solid var(--white-a06);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white-soft);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-header i,
.accordion-header .accordion-icon {
  color: var(--gold);
  transition: transform var(--t-fast);
  font-size: 0.8rem;
}

.accordion-header.active i,
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 0 1.25rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   BOOKING WIZARD (reserva page)
   -------------------------------------------------------------------------- */

.wizard-progress {
  margin-bottom: 3rem;
}

.progress-bar {
  height: 3px;
  background: var(--gold-a15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
}

.step-indicator {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-weight: 500;
}

.step-indicator.active {
  color: var(--gold);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.vehicle-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.vehicle-option {
  background: var(--black-card);
  border: 2px solid var(--white-a08);
  border-radius: 8px;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color var(--t-fast);
  text-align: center;
}

.vehicle-option.selected,
.vehicle-option:hover {
  border-color: var(--gold);
}

.vehicle-option img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--black-card);
  border: 1px solid var(--white-a10);
  border-radius: 6px;
  padding: 0.5rem;
}

.stepper button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid var(--gold-a30);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease;
}

.stepper button:hover {
  background: var(--gold-a10);
}

.stepper-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  min-width: 2ch;
  text-align: center;
}

.booking-summary {
  background: var(--black-card);
  border: 1px solid var(--gold-a20);
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.booking-summary h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.summary-total {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 1.5rem 0;
}

.booking-confirmation {
  text-align: center;
  padding: 3rem;
}

.confirmation-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-a10);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   CONTACT CARDS (subpages)
   -------------------------------------------------------------------------- */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--gold-a15);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.contact-card:hover {
  border-color: var(--gold-a40);
  transform: translateY(-4px);
}

.contact-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card .contact-value {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card .contact-note {
  color: var(--gray);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE: TABLET (< 1200px)
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-slide {
    flex: 0 0 340px;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE: VALUE GRID (< 992px)
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-timeline-line {
    width: 40px;
    height: 2px;
    margin: 0 auto;
    min-height: auto;
    background: linear-gradient(90deg, transparent, var(--gold-a30), transparent);
  }

  .destinations-layout {
    grid-template-columns: 1fr;
  }

  .destinations-map {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   RESPONSIVE: MOBILE (< 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: clamp(40px, 8vw, 80px) 0;
  }

  .service-card {
    flex: 0 0 85vw;
    height: 350px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-slide {
    flex: 0 0 300px;
  }

  .fleet-slide-img {
    height: 180px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-line {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85vw;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .dest-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .dest-time {
    flex: 0 0 auto;
    text-align: left;
  }

  .dest-price {
    flex: 0 0 auto;
    text-align: right;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .destinations-table th:nth-child(3),
  .destinations-table td:nth-child(3),
  .destinations-table th:nth-child(6),
  .destinations-table td:nth-child(6) {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION
   -------------------------------------------------------------------------- */

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

  #preloader {
    display: none !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}
