/* ================================
   VIP SHUTTLE TRANSFER - LUXURY THEME
   Premium Automotive Editorial Design
   ================================ */

:root {
  /* Luxury Color Palette - Black + Gold Accents */
  --primary-black: #000000;
  --secondary-black: #1A1A1A;
  --deep-black: #0D0D0D;
  --accent-gold: #D4AF37;
  --accent-copper: #B87333;
  --champagne: #F7E7CE;

  /* Backgrounds */
  --bg-light: #1A1A1A;
  --bg-cream: #2A2A2A;
  --bg-dark: #000000;
  --bg-card: #1F1F1F;
  --bg-overlay: rgba(0, 0, 0, 0.95);

  /* Text Colors */
  --text-dark: #000000;
  --text-medium: #4A5568;
  --text-light: #FFFFFF;
  --text-muted: #718096;

  /* Luxury Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B87333 100%);
  --gradient-shine: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 115, 51, 0.05) 100%);

  /* Shadows - Premium & Soft */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing & Sizing */
  --border-radius: 5rem;
  --border-radius-lg: 5rem;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ================================
   BUTTONS - Premium Style
   ================================ */

.btn {
  background: var(--secondary-black);
  color: var(--text-light);
  padding: 1.4rem 3.2rem;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  transition: var(--transition);
  z-index: 0;
}

.btn span {
  position: relative;
  z-index: 1;
}

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

.btn:hover::before {
  left: 0;
}

.btn:active {
  transform: translateY(0);
}

.btn-prev {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-gold);
  box-shadow: none;
}

.btn-prev:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
  box-shadow: var(--shadow-gold);
}

.btn-next,
.btn-submit {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-color: transparent;
  font-weight: 700;
}

.btn-submit {
  background: var(--deep-black);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--accent-gold);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn-submit:hover::after {
  width: 300px;
  height: 300px;
}

/* ================================
   HEADER - Luxury Navigation
   ================================ */

.header {
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header__logo h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  position: relative;
}

.header__logo h1::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
}

.header__logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.2));
}

.header__language {
  display: flex;
  gap: 1rem;
}

.language-btn {
  background: transparent;
  border: 2px solid var(--accent-gold);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.language-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.language-btn.active {
  background: var(--gradient-gold);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* Navigation Links */
.header__nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  transition: var(--transition-fast);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

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

/* ================================
   HERO SECTION - Premium Landing
   ================================ */

.hero {
  background: var(--bg-dark);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}

/* Art Deco Pattern Background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}

/* Metallic Gradient Overlay */
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: 1;
  animation: floatSlow 20s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, -30px) rotate(5deg); }
}

/* Particles Container - Keep existing functionality */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.4;
}

#particles-js canvas {
  display: block;
  pointer-events: none;
}

.hero__content {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
  position: relative;
  padding: 2rem;
  z-index: 5;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: 6.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ================================
   FORM CONTAINER - Luxury Card
   ================================ */

.form-container {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(212, 175, 55, 0.1);
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Gold Accent Border */
.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
}

/* ================================
   FORM WIZARD - Premium Steps
   ================================ */

.form-wizard {
  position: relative;
  margin: 0 0 4rem 0;
}

.form-wizard__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
  position: relative;
  padding: 2rem 0;
}

/* Progress Line */
.form-wizard__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--champagne) 0%, var(--accent-gold) 100%);
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.3;
}

.form-wizard__step {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-medium);
  flex: 1;
  transition: var(--transition);
  cursor: pointer;
}

.form-wizard__step i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  background: var(--bg-cream);
  border: 2px solid var(--champagne);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  transition: var(--transition);
  font-size: 2.4rem;
  color: var(--text-medium);
  box-shadow: var(--shadow-soft);
}

.form-wizard__step.active i {
  background: var(--gradient-gold);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: scale(1.15);
  box-shadow: var(--shadow-gold);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), var(--shadow-gold);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), var(--shadow-gold);
  }
}

.form-wizard__step span {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
  transition: var(--transition);
}

.form-wizard__step.active span {
  color: var(--accent-gold);
  transform: scale(1.05);
}

/* ================================
   FORM STEPS - Content
   ================================ */

.form-step {
  display: none;
  animation: fadeInStep 0.6s ease-out;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.form-step h3 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1.6rem;
}

.form-step h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
}

/* ================================
   FORM GROUPS - Luxury Inputs
   ================================ */

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

.form-group label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.form-group label i,
.input-icon {
  margin-right: 1.2rem;
  font-size: 1.8rem;
  color: var(--accent-gold);
  width: 2.4rem;
  display: inline-flex;
  justify-content: center;
}

.form-control {
  width: 100%;
  padding: 1.6rem 2rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius);
  background: var(--bg-cream);
  color: var(--text-light);
  transition: var(--transition-fast);
  font-size: 1.6rem;
  font-family: var(--font-body);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.7;
}

.form-control:focus {
  outline: none;
  background: var(--secondary-black);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.form-control.error {
  border-color: #E53E3E;
  animation: shake 0.4s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

textarea.form-control {
  resize: vertical;
  min-height: 12rem;
  line-height: 1.6;
}

/* ================================
   MAP CONTAINER - Keep Functionality!
   ================================ */

.map-container {
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-medium);
  height: 30rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition);
}

.map-container:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--accent-gold);
}

#static-map {
  width: 100%;
  height: 100%;
  background: var(--secondary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

#static-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distance-info {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-light);
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.distance-info i {
  color: var(--accent-gold);
}

/* ================================
   VEHICLE CARDS - Premium Design
   ================================ */

.vehicle-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  margin-bottom: 3rem;
}

.vehicle-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-soft);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(212, 175, 55, 0.5);
}

.vehicle-card.active {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3);
}

.vehicle-card.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  z-index: 10;
}

.vehicle-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: var(--secondary-black);
}

.vehicle-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover .vehicle-card__image img {
  transform: scale(1.08);
}

.vehicle-card__details {
  padding: 2.4rem;
  background: var(--bg-card);
}

.vehicle-card__details h4 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
  color: var(--text-light);
}

.vehicle-card__details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.vehicle-card__details ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.vehicle-card__details ul li i {
  color: var(--accent-gold);
  font-size: 1.6rem;
}

/* Luggage Selection */
.luggage-selection {
  background: var(--bg-cream);
  border-radius: var(--border-radius);
  padding: 2.4rem;
  margin-top: 2.4rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.luggage-selection h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.luggage-info {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
}

.luggage-counter {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.counter-btn {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-gold);
  border: none;
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
}

.counter-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.counter-input {
  width: 6rem;
  height: 4rem;
  background: var(--secondary-black);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
}

.luggage-fee-info {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

#extra-luggage-fee {
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
}

/* ================================
   DATE & TIME SELECTS
   ================================ */

.date-select-group,
.time-select-group {
  display: flex;
  gap: 1.2rem;
  width: 100%;
}

.select-container {
  position: relative;
  flex: 1;
}

.select-container::after {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--accent-gold);
  font-size: 1.6rem;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background: var(--bg-cream);
  padding-right: 4.5rem;
}

select.form-control option {
  background: var(--secondary-black);
  color: var(--text-light);
  padding: 1rem;
}

/* ================================
   LOCATION BUTTON
   ================================ */

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.location-btn,
.location-btn-improved {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-gold);
  border: none;
  color: var(--text-dark);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
  z-index: 5;
}

.location-btn:hover,
.location-btn-improved:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-gold);
}

/* ================================
   BUTTONS GROUP
   ================================ */

.buttons-group {
  display: flex;
  gap: 1.6rem;
  margin-top: 3rem;
}

/* ================================
   PRICE CONTAINER - Premium Display
   ================================ */

.price-container {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--champagne);
}

.price-container--hidden {
  display: none;
}

.price-box {
  background: var(--secondary-black);
  border-radius: var(--border-radius);
  padding: 3rem;
  color: var(--text-light);
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.price-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.price-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem 0;
}

.price-row.price-total {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-value {
  font-size: 4.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--accent-gold);
  position: relative;
  z-index: 2;
}

#price-amount {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   CUSTOMER REVIEWS - Premium Slider
   ================================ */

.customer-reviews {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 5rem;
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.customer-reviews h3 {
  font-family: var(--font-display);
  color: var(--text-light);
  font-size: 3.6rem;
  margin-bottom: 4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.reviews-slider {
  position: relative;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  cursor: grab;
  padding: 2rem 6rem;
}

.reviews-slider:active {
  cursor: grabbing;
}

.reviews-slide {
  position: absolute;
  width: calc(100% - 12rem);
  left: 6rem;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
  pointer-events: none;
}

.reviews-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  left: 0;
  width: 100%;
  pointer-events: auto;
}

.reviews-slide.prev {
  transform: translateX(-100%);
}

.reviews-slide.next {
  transform: translateX(100%);
}

.reviews-slide p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #7e8ba3;
  font-family: var(--font-display);
}

.reviews-slide span {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  font-family: var(--font-body);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 2rem;
  z-index: 10;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-gold);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}

.slider-dot {
  width: 1.2rem;
  height: 1.2rem;
  background: var(--champagne);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: var(--accent-copper);
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ================================
   SEO SECTION
   ================================ */

.seo-sitelinks {
  padding: 6rem 4rem;
  background: var(--bg-light);
}

.seo-sitelinks__header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.seo-sitelinks__header h2 {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
  font-weight: 600;
}

.seo-sitelinks__header p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.seo-sitelinks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.seo-sitelinks__card {
  background: var(--bg-card);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.seo-sitelinks__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-gold);
}

.seo-sitelinks__card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.seo-sitelinks__card p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  line-height: 1.6;
}

.seo-headlines {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.seo-headlines h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.seo-headlines__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin: 2.4rem 0;
}

.seo-headlines__list li {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.seo-headlines__list li:hover {
  background: var(--gradient-gold);
  color: var(--primary-black);
  border-color: var(--accent-gold);
}

.seo-descriptions p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1.7;
}

/* ================================
   FOOTER - Premium
   ================================ */

.footer {
  background: var(--primary-black);
  color: var(--text-light);
  padding: 4rem 0;
  margin-top: auto;
  position: relative;
  border-top: 2px solid var(--accent-gold);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  text-align: center;
}

.footer__info p {
  font-size: 1.5rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* ================================
   WHATSAPP BUTTON - Premium Style
   ================================ */

.whatsapp-button {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 6.4rem;
  height: 6.4rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  z-index: 99;
  cursor: pointer;
  transition: var(--transition);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-whatsapp 2s ease-in-out infinite;
  z-index: -1;
}

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

.whatsapp-button a {
  color: var(--text-light);
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ================================
   LOADER - Premium
   ================================ */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.loader.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 8rem;
  height: 8rem;
  animation: rotate 2s linear infinite;
}

.path {
  stroke: var(--accent-gold);
  stroke-linecap: round;
  stroke-width: 3;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

/* ================================
   ERROR MESSAGES
   ================================ */

.error-message {
  color: #E53E3E;
  font-size: 1.3rem;
  margin-top: 0.8rem;
  display: none;
  background: rgba(229, 62, 62, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  border-left: 3px solid #E53E3E;
}

.form-group.has-error .error-message {
  display: block;
}

.form-group.has-error .form-control {
  border-color: #E53E3E;
}

/* ================================
   WEATHER CONTAINER
   ================================ */

.weather-container {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--champagne);
  z-index: 10;
}

.weather-container h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

#weather-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.weather-icon {
  font-size: 2.4rem;
  color: var(--accent-gold);
}

.weather-details {
  color: var(--text-dark);
}

#weather-temp {
  font-size: 1.8rem;
  font-weight: 600;
}

#weather-desc {
  font-size: 1.3rem;
  color: var(--text-medium);
  text-transform: capitalize;
}

/* ================================
   RESPONSIVE - Mobile First
   ================================ */

@media screen and (max-width: 767px) {
  html {
    font-size: 56.25%; /* 9px */
  }

  .header__container {
    padding: 1.6rem 2rem;
    flex-wrap: wrap;
  }

  .header__logo h1 {
    font-size: 2.4rem;
  }

  .header__logo-image {
    width: 48px;
    height: 48px;
  }

  .header__nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 1.2rem;
  }

  .nav-links {
    gap: 1.6rem;
  }

  .hero {
    padding: 12rem 1.6rem 4rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__subtitle {
    font-size: 1.6rem;
  }

  .form-container {
    padding: 3rem 1.6rem;
    margin: 0 1rem;
    width: calc(100% - 2rem);
  }

  .form-wizard {
    margin: 0 -1rem 3rem -1rem;
    padding: 0 1rem;
  }

  .form-wizard__steps {
    overflow-x: auto;
    overflow-y: visible;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 1.6rem 0.5rem 2.4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .form-wizard__steps::-webkit-scrollbar {
    display: none;
  }

  .form-wizard__step {
    min-width: 7rem;
    max-width: 7rem;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .form-wizard__step i {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .form-wizard__step span {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-wizard__step.active i {
    animation: none;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
  }

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

  .buttons-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .date-select-group,
  .time-select-group {
    flex-direction: column;
  }

  .customer-reviews {
    padding: 3rem 2rem;
    margin: 3rem 1rem;
    width: calc(100% - 2rem);
  }

  .customer-reviews h3 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }

  .reviews-slider {
    padding: 2rem 4rem;
    touch-action: pan-x;
  }

  .reviews-slide {
    width: calc(100% - 8rem);
    left: 4rem;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .reviews-slide p {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .reviews-slide span {
    font-size: 1.4rem;
  }

  .reviews-slide p {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .slider-nav {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.4rem;
    opacity: 0.9;
  }

  .slider-nav.prev {
    left: 0;
  }

  .slider-nav.next {
    right: 0;
  }

  .slider-controls {
    margin-top: 2.4rem;
  }

  .slider-dot {
    width: 1rem;
    height: 1rem;
  }

  .whatsapp-button {
    width: 5.6rem;
    height: 5.6rem;
    bottom: 2rem;
    right: 2rem;
  }

  .whatsapp-button a {
    font-size: 2.8rem;
  }
}

/* Tablet */
@media screen and (min-width: 768px) {
  .vehicle-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media screen and (min-width: 992px) {
  .vehicle-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-container {
    height: 35rem;
  }
}

@media screen and (min-width: 1200px) {
  .form-container {
    padding: 6rem;
  }
}

/* ================================
   ACCESSIBILITY & REDUCED MOTION
   ================================ */

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

  #particles-js {
    display: none;
  }
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
  .header,
  .whatsapp-button,
  .loader,
  #particles-js,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .form-container,
  .customer-reviews {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ================================
   OPTIMIZED INLINE STYLES FROM INDEX.HTML
   ================================ */

/* Styles for manual entry mode */
.form-control.manual-entry {
    border-color: rgba(6, 182, 212, 0.6);
    background-color: rgba(255, 255, 255, 0.12);
}

.manual-entry-notice {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styles for Places Autocomplete UI */
.pac-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
    padding: 5px 0;
    z-index: 9999;
}

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.pac-item:hover {
    background-color: rgba(6, 182, 212, 0.1);
}

.pac-item-selected,
.pac-item-selected:hover {
    background-color: rgba(6, 182, 212, 0.2);
}

.pac-icon {
    margin-right: 10px;
}

.pac-item-query {
    font-size: 14px;
    color: #1e293b;
}

.pac-matched {
    font-weight: 600;
    color: #0f172a;
}

.pac-placeholder {
    color: #94a3b8;
}

/* User location button */
.location-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(6, 182, 212, 0.8);
    cursor: pointer;
    font-size: 1.4rem;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.location-btn:hover {
    background-color: rgba(6, 182, 212, 0.1);
    color: rgba(6, 182, 212, 1);
}

/* Position relative for the input container */
.input-container {
    position: relative;
}

/* Improved location button for better visibility on mobile */
.location-btn-improved {
    background-color: rgba(6, 182, 212, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(6, 182, 212, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.location-btn-improved:hover {
    background-color: rgba(6, 182, 212, 0.4);
    color: #ffffff;
}

/* For mobile view */
@media screen and (max-width: 767px) {
    .location-btn-improved {
        width: 36px;
        height: 36px;
        right: 8px;
    }
}

/* Header with navigation links */
.header__nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(6, 182, 212, 0.2);
}

/* Mobile menu adjustments */
@media screen and (max-width: 768px) {
    .header__container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .header__logo {
        margin-right: auto;
    }

    .header__language {
        margin-left: auto;
    }

    .header__nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1.7rem;
        padding: 0.4rem 0.8rem;
    }
}

.luggage-selection {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.luggage-info {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.luggage-counter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.counter-controls {
    display: flex;
    align-items: center;
}

.counter-btn {
    width: 3.6rem;
    height: 3.6rem;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover {
    background: rgba(6, 182, 212, 0.4);
}

.counter-input {
    width: 4rem;
    height: 3.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0.8rem;
}

.luggage-fee-info {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
}

#extra-luggage-fee {
    font-weight: 500;
    color: rgba(6, 182, 212, 0.9);
    margin-bottom: 0.5rem;
}

.luggage-fee-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.price-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .luggage-counter {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Map container styles - Improved visibility */
.map-container {
    position: relative;
    width: 100%;
    height: 250px;
    min-height: 250px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#static-map {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: #1a293e;
}

/* Weather container positioning */
.weather-container {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(15, 23, 42, 0.8);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
}

/* Ensure distance info is visible */
.distance-info {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(15, 23, 42, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Error notification animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.map-error-notification {
    animation: slideIn 0.3s ease-out;
}

#emergency-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: white;
    font-family: 'Poppins', sans-serif;
}

#emergency-loader h2 {
    margin-bottom: 20px;
}

#emergency-loader p {
    margin-bottom: 30px;
    max-width: 80%;
    text-align: center;
}

#emergency-loader button {
    background-color: #06b6d4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
