:root {
  --blue: #0c7fb0;
  --blue-dark: #075374;
  --blue-soft: #0e88bd;
  --blue-light: #e0f4fc;
  --blue-gradient: linear-gradient(135deg, #0e88bd 0%, #0c7fb0 50%, #075374 100%);
  --gray-light: #f5f5f5;
  --gray: #e3e6ea;
  --gray-medium: #d1d5db;
  --text-dark: #222;
  --text-soft: #555;
  --text-light: #9ca3af;
  --bg-dark: #161616;
  --accent-yellow: #ffc107;
  --success-green: #10b981;
  --error-red: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 10px 25px -5px rgba(12, 127, 176, 0.3);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-size: 13.5px; /* 90% of 15px */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* ====== GLOBAL LAYOUT ====== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 12.6px; /* 90% of 14px */
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  font-size: 27px; /* 90% of 30px */
  font-weight: 700;
  color: #000;
  margin-bottom: 28px;
}

/* ====== HEADER / NAVBAR ====== */
header {
  background: var(--blue-gradient);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

header:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  font-size: 13px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 16px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
}

nav li a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav li a:hover {
  border-bottom-color: #fff;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: #000;
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.nav-lang-flag {
  width: 16px;
  height: 10px;
  background: linear-gradient(90deg, #002395 0 33%, #fff 33% 66%, #ed2939 66% 100%);
}

.nav-lang-chevron {
  font-size: 10px;
}

.nav-lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 130px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
  display: none;
  z-index: 50;
}

.nav-lang-dropdown button {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 2px 0;
}

.nav-lang-dropdown button:hover {
  background: #f1f5f9;
  color: var(--blue-dark);
}

#langToggle.open .nav-lang-dropdown {
  display: block;
}

/* ====== HERO ====== */
.hero {
  min-height: 520px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)),
    url("../img/imagebackground.jpg")
    center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 130px solid var(--blue);
  border-left: 50vw solid transparent;
  border-right: 0 solid transparent;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 110px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 80px;
  background: rgba(12, 127, 176, 0.9);
  font-size: 13px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero-pill span {
  font-size: 16px;
}

.hero-title {
  font-size: 39.6px; /* 90% of 44px */
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* ====== ENHANCED FORM VALIDATION STYLES ====== */
.field-error,
.booking-field.field-error {
  animation: shake 0.5s ease-in-out;
}

.field-error input,
.field-error select,
.field-error textarea,
.booking-field.field-error input,
.booking-field.field-error textarea,
.booking-field.field-error select {
  border-color: var(--error-red) !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error-message {
  color: var(--error-red);
  font-size: 12px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: fadeInUp 0.3s ease-out;
  font-weight: 500;
}

.field-error-message i {
  font-size: 14px;
}

/* ====== BUTTON LOADING STATES ====== */
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary .fa-spinner,
.btn-secondary .fa-spinner {
  animation: spin 0.8s linear infinite;
}

.hero-subtitle {
  font-size: 21.6px; /* 90% of 24px */
  font-weight: 700;
  margin-bottom: 28px;
  color: #ffffff;
}

.hero-text {
  max-width: 850px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #e3e6ea;
  margin-bottom: 32px;
}

/* ====== BUTTONS ====== */
button {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.btn-primary,
a.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue-gradient);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  text-transform: none;
  font-size: 13.5px; /* 90% of 15px */
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
  text-decoration: none;
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #075374 0%, #0c7fb0 50%, #0e88bd 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(12, 127, 176, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 12px rgba(12, 127, 176, 0.3);
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 127, 176, 0.3), var(--shadow-blue);
}

/* Floating call / WhatsApp buttons */
.float-btn {
  position: fixed;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-xl);
  z-index: 200;
  cursor: pointer;
  font-size: 24px;
  transition: all var(--transition-base);
  animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.float-call {
  left: 22px;
  background: var(--blue-gradient);
}

.float-wa {
  right: 22px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}


/* ====== MODAL STYLES ====== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
  position: relative;
}

.modal-content-small {
  max-width: 400px;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 2px solid #f1f3f6;
}

.modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #9ca3af;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: #f3f4f6;
  color: var(--text-dark);
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px;
}

.price-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
}

.price-breakdown-item span:first-child {
  color: var(--text-soft);
}

.price-breakdown-item span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.price-breakdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 0;
}

.price-breakdown-total {
  font-size: 18px;
  font-weight: 700;
  padding-top: 16px;
  border-top: 2px solid #e5e7eb;
  margin-top: 8px;
}

.price-breakdown-total span:last-child {
  color: var(--blue-soft);
  font-size: 22px;
}

.breakdown-discount span:last-child {
  color: var(--success-green);
}

#qrCodeContainer {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  display: inline-block;
  margin: 20px 0;
}

.qr-instructions {
  color: var(--text-soft);
  font-size: 13px;
  margin: 16px 0;
}

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

body.dark-mode .modal-content {
  background: #2d2d2d;
  color: #e5e5e5;
}

body.dark-mode .modal-header {
  border-color: #404040;
}

body.dark-mode .modal-header h3 {
  color: #e5e5e5;
}

body.dark-mode .price-breakdown-divider {
  background: #404040;
}

body.dark-mode .price-breakdown-total {
  border-color: #404040;
}

.modal-content-large {
  max-width: 700px;
}

.modal-footer {
  padding-top: 20px;
  border-top: 2px solid #f1f3f6;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

/* ====== BOOKING HISTORY ====== */
.booking-history-list {
  max-height: 500px;
  overflow-y: auto;
}

.booking-history-item {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #ffffff;
  transition: all var(--transition-base);
  cursor: pointer;
}

.booking-history-item:hover {
  border-color: var(--blue-soft);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.booking-history-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.booking-history-item-date {
  font-weight: 700;
  color: var(--blue-soft);
  font-size: 14px;
}

.booking-history-item-price {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

.booking-history-item-route {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.booking-history-item-route i {
  color: var(--blue-soft);
  margin-right: 6px;
}

.booking-history-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
}

.booking-history-empty i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 16px;
}

.booking-history-empty p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.booking-history-empty span {
  font-size: 13px;
  color: var(--text-soft);
}

/* ====== SOCIAL SHARE ====== */
.social-share-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.social-share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: var(--text-dark);
  text-decoration: none;
  transition: all var(--transition-base);
  font-size: 14px;
  font-weight: 600;
}

.social-share-btn i {
  font-size: 24px;
}

.social-share-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.share-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.share-twitter:hover {
  background: #1da1f2;
  color: #ffffff;
  border-color: #1da1f2;
}

.share-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

.share-email:hover {
  background: var(--blue-gradient);
  color: #ffffff;
  border-color: var(--blue-soft);
}

.share-link-container {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.share-link-container input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  background: #f8fafc;
}

.share-link-container button {
  white-space: nowrap;
}


@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ====== STEP INDICATOR ====== */
.step-indicator-wrapper {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  top: auto;
  z-index: 1;
  box-shadow: none;
  backdrop-filter: none;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16.2px; /* 90% of 18px */
  transition: all var(--transition-slow);
  border: 3px solid #e5e7eb;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.step-item.active .step-number {
  background: var(--blue-gradient);
  color: #ffffff;
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-blue);
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(12, 127, 176, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(12, 127, 176, 0.5);
  }
}

.step-item.completed .step-number {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.step-item.completed .step-number::after {
  content: "✓";
  font-size: 20px;
}

.step-label {
  font-size: 11.7px; /* 90% of 13px */
  font-weight: 500;
  color: #6b7280;
  text-align: center;
  transition: all 0.3s ease;
}

.step-item.active .step-label {
  color: var(--blue-dark);
  font-weight: 600;
}

.step-item.completed .step-label {
  color: #10b981;
}

.step-connector {
  flex: 1;
  height: 3px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-top: -24px;
  position: relative;
  transition: all 0.4s ease;
}

.step-connector.completed {
  background: #10b981;
}

/* ====== BOOKING STEPS ====== */
.booking-step {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  min-height: 500px;
}

.booking-step.step-hidden {
  display: none;
}

.booking-step.step-active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

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

/* ====== RESERVATION ====== */
.reservation {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  padding: 60px 0 80px;
  min-height: auto;
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .reservation-grid {
    gap: 48px;
  }
}

.tab-header {
  display: flex;
}

.tab-header button {
  flex: 1;
  height: 56px;
  border: none;
  background: var(--blue-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-transform: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  overflow: hidden;
}

.tab-header button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tab-header button:hover::before {
  left: 100%;
}

.tab-header button:nth-child(2) {
  background: #f3f4f6;
  color: var(--text-dark);
}

.tab-header button:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tab-header button:nth-child(2):hover {
  background: #e5e7eb;
  color: var(--blue-dark);
}

.card {
  border: 1px solid #e5e7eb;
  border-top: none;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}

.card-section {
  padding: 20px 28px;
  border-bottom: 1px solid #f1f3f6;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-soft);
  transition: background-color 0.2s ease;
}

.card-section:hover {
  background-color: #fafbfc;
}

.card-section:first-of-type {
  padding-top: 24px;
}

.card-section:last-child {
  padding-bottom: 24px;
  border-bottom: none;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a8f99;
  margin-bottom: 5px;
}

.input-row {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
}

.input-row .field {
  flex: 1;
  min-width: 0;
}

.field {
  flex: 1;
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  margin-top: 6px;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
}

.address-suggestion-item {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease;
}

.address-suggestion-item i {
  color: var(--blue-soft);
}

.address-suggestion-item:hover {
  background: #f3f4f6;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-size: 12.6px; /* 90% of 14px */
  font-family: inherit;
  color: #111827;
  outline: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(14, 136, 189, 0.12), var(--shadow-md);
  background: #ffffff;
  transform: translateY(-2px);
}

.field input::placeholder {
  color: #9ca3af;
}

.field input:hover,
.field select:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.field input:focus,
.field select:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(14, 136, 189, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  transform: translateY(-1px);
}

.field.field-error input,
.field.field-error select {
  border-color: #e11d48;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.15);
}

.add-stop {
  border-radius: 8px;
  border: 2px solid var(--blue-soft);
  background: #ffffff;
  color: var(--blue-soft);
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-stop:hover {
  background: var(--blue-soft);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(12, 127, 176, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.transfer-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.transfer-type strong {
  color: #000;
}

.map-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.map-area {
  flex: 1;
  background: #f1f5f9;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.map-area iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

#interactiveMap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  z-index: 1;
  background: #e5e5e5;
}

/* Ensure Leaflet map container has proper styling */
.leaflet-container {
  background: #e5e5e5;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  height: 100%;
  width: 100%;
}

/* Leaflet map custom styles */
.leaflet-container {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-marker-pickup {
  background-color: #10b981;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.custom-marker-dropoff {
  background-color: #ef4444;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-stats {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px;
  background: #ffffff;
  font-size: 13px;
  color: var(--text-soft);
  border-top: 1px solid #f1f3f6;
  gap: 20px;
}

.map-stat {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.map-stat:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.map-stat label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  font-weight: 600;
  position: relative;
}

.map-stat label i {
  font-size: 12px;
  color: var(--blue-soft);
}

.map-stat strong {
  display: block;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
}

.estimated-arrival {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 10px;
  background: #e0f4fc;
  border-radius: 6px;
  font-size: 11px;
  color: var(--blue-dark);
  animation: fadeInUp 0.3s ease-out;
}

.estimated-arrival i {
  color: var(--blue-soft);
  font-size: 12px;
}

.estimated-arrival strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0;
}

/* ====== ABOUT / COMPANY ====== */
.about {
  padding: 80px 0 40px;
  background: #fff;
  color: var(--text-dark);
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.about-payments img,
.payment-bar {
  height: 32px;
  width: auto;
  display: block;
}

.about-top .btn-primary {
  background: var(--blue);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-images-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 16px;
}

.about-images-main img:first-child {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
  object-fit: cover;
}

.about-images-main img:last-child {
  align-self: flex-end;
  justify-self: flex-end;
  width: 75%;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.65);
  transform: translateY(10px);
}

.about-content small {
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 32px;
  margin: 10px 0 18px;
}

.about-content p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-content ul {
  margin: 16px 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.about-content ul li {
  margin-bottom: 6px;
  list-style: disc;
}

.about-subheading {
  font-weight: 700;
  margin: 26px 0 6px;
}

/* ====== SERVICES STRIP ====== */
.services {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.service-card h3 {
  font-size: 22px;
  margin: 18px 0 10px;
  color: var(--blue-soft);
}

.service-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ====== DESTINATIONS ====== */
.destinations {
  padding: 80px 0;
  background: #111;
  color: #fff;
}

.destinations .section-title {
  color: var(--blue-soft);
}

.destinations .section-heading {
  color: #fff;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 30px;
}

.dest-card {
  background: #fff;
  color: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.dest-card-body {
  padding: 18px 18px 22px;
}

.dest-card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--blue-soft);
}

.dest-card-body p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  border-color: var(--blue-soft);
}

/* ====== CTA STRIP ====== */
.cta {
  background: #111;
  color: #fff;
  padding: 80px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: stretch;
}

.cta-left {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-left h2 {
  font-size: 34px;
  margin-bottom: 24px;
}

.cta-left p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #ddd;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.cta-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

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

/* ====== FAQ ====== */
.faq {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 3px;
  background: #fff;
  border: 1px solid #dde2e8;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  background: #f9fbff;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: #eef4ff;
}

.accordion-header .accordion-icon {
  font-size: 16px;
  color: var(--blue-soft);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.accordion-item.active .accordion-body {
  max-height: 220px;
  padding-bottom: 16px;
  padding-top: 0;
}

/* ====== CONTACT ====== */
.contact {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.contact-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.contact-form h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.contact-form p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.contact-field {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-icon {
  position: absolute;
  left: 12px;
  color: #9ba3af;
  font-size: 14px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 13px 12px 32px;
  border-radius: 4px;
  border: 1px solid #d1d5dc;
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 46px;
  background: #f9fafb;
}

.contact-field textarea {
  min-height: 120px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 2px rgba(14, 136, 189, 0.1);
}

.contact-submit {
  margin-top: 8px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.contact-extra {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-soft);
}

.contact-extra strong {
  color: #000;
}

/* ====== TRAJETS LIST ====== */
.trajets {
  padding: 80px 0;
  background: #fff;
  color: var(--text-dark);
}

.trajets h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 38px;
}

.trajets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  font-size: 14px;
}

.trajets-col ul li {
  margin-bottom: 8px;
}

.trajet-icon {
  margin-right: 6px;
  color: var(--blue-soft);
}

/* ====== FOOTER ====== */
footer {
  position: relative;
  background: #020617 url("../img/footer_bg_1-1-1-1.jpg") center/cover no-repeat;
  color: #fff;
  padding-top: 60px;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.95));
  z-index: 0;
}

.footer-banner {
  background: #1d1d1d;
  padding: 18px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer-banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-main {
  padding: 40px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  font-size: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-about p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-hours {
  color: #ccc;
  font-size: 13px;
  margin-top: 8px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact p {
  color: #ccc;
  margin-bottom: 6px;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding: 16px 0;
  font-size: 12px;
  color: #999;
  text-align: center;
}

/* ====== VEHICLES / FLEET ====== */
.vehicles {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  color: var(--text-dark);
  min-height: auto;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .vehicles-grid {
    gap: 48px;
  }
}

.summary-card {
  border: 1px solid #e5e7eb;
  background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
  padding: 32px 28px;
  font-size: 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 160px;
  transition: all var(--transition-base);
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  border-top: 4px solid var(--blue-soft);
}

.summary-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.summary-title {
  font-size: 14.4px; /* 90% of 16px */
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f3f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #f1f3f6;
  font-size: 14px;
  transition: all 0.2s ease;
}

.summary-row:hover {
  background-color: #fafbfc;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 6px;
}

.summary-label {
  color: #6b7280;
  font-weight: 500;
  font-size: 11.7px; /* 90% of 13px */
  flex: 1;
}

.summary-value {
  color: #111827;
  font-weight: 600;
  text-align: right;
  font-size: 14px;
  word-break: break-word;
  max-width: 60%;
  margin-left: 12px;
}

.summary-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
  margin: 16px 0;
  border: none;
}

.summary-total {
  font-size: 18px;
  font-weight: 700;
  padding: 16px 0 8px;
  border-top: 2px solid #e5e7eb;
  margin-top: 12px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  margin-left: -8px;
  margin-right: -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 8px 8px 0 0;
}

.summary-total .summary-label {
  font-size: 13.5px; /* 90% of 15px */
  color: #111827;
  font-weight: 700;
}

.summary-total .summary-value {
  font-size: 18px; /* 90% of 20px */
  color: var(--blue-soft);
  font-weight: 800;
}

.vehicles-main {
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.vehicles-filter {
  background: #f8fafc;
  border-bottom: 2px solid #e5e7eb;
  padding: 20px 24px;
}

.vehicles-filter-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #9aa4b2;
}

.vehicles-filter-row {
  display: flex;
  gap: 20px;
}

.filter-field {
  flex: 1;
}

.filter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa4b2;
  margin-bottom: 4px;
}

.filter-field select {
  width: 100%;
  padding: 9px 12px;
  border-radius: 3px;
  border: 1px solid #dde2e8;
  background: #fff;
  font-size: 13px;
}

.vehicles-list {
  padding: 18px 22px 10px;
}

.vehicle-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 140px 150px;
  align-items: center;
  padding: 28px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  margin-bottom: 20px;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.vehicle-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 136, 189, 0.05), transparent);
  transition: left 0.5s;
}

.vehicle-row:hover::before {
  left: 100%;
}

.vehicle-row:hover {
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px) scale(1.01);
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.vehicle-row:last-child {
  margin-bottom: 0;
}

.vehicle-image img {
  max-width: 180px;
}

.vehicle-name {
  font-size: 12.6px; /* 90% of 14px */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.vehicle-price {
  font-size: 22px;
  color: var(--blue-soft);
  font-weight: 600;
}

.vehicle-meta {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  color: #b7c0cc;
}

.vehicle-meta i {
  margin-right: 4px;
}

.vehicle-action {
  text-align: right;
}

.vehicle-select-btn {
  min-width: 120px;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid #e4e7ec;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.vehicle-select-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(14, 136, 189, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.vehicle-select-btn:hover::before {
  width: 300px;
  height: 300px;
}

.vehicle-select-btn:hover {
  background: #f9fafb;
  border-color: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.vehicle-select-btn--primary {
  background: var(--blue-gradient);
  color: #ffffff;
  border-color: var(--blue-soft);
  box-shadow: var(--shadow-blue);
}

.vehicle-select-btn--primary:hover {
  background: linear-gradient(135deg, #075374 0%, #0c7fb0 50%, #0e88bd 100%);
  border-color: var(--blue-dark);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(12, 127, 176, 0.4);
  transform: translateY(-2px) scale(1.05);
}

.map-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 28px;
  background: #ffffff;
  border-top: 1px solid #f1f3f6;
}

.map-actions .btn-primary {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 15px;
  min-height: 52px;
  justify-content: center;
  font-weight: 600;
}

/* ====== BOOKING / CONTACT & PAYMENT ====== */
.booking {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  min-height: auto;
}

.booking-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .booking-grid {
    gap: 48px;
  }
}

.step-hidden {
  display: none !important;
}

.booking-main {
  border: 2px solid #e5e7eb;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.booking-main:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.booking-contact {
  padding: 36px 32px;
  border-bottom: 1px solid #f1f3f6;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
}

.booking-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 2px solid #e5e7eb;
  padding: 18px 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  font-weight: 700;
  border-radius: 12px 12px 0 0;
}

.booking-contact-grid {
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
}

.booking-field input,
.booking-field textarea,
.booking-field select {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: #111827;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.booking-field input:hover,
.booking-field textarea:hover,
.booking-field select:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.booking-field input:focus,
.booking-field textarea:focus,
.booking-field select:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(14, 136, 189, 0.12), var(--shadow-md);
  outline: none;
  transform: translateY(-2px);
  background: #ffffff;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-phone {
  display: flex;
}

.booking-phone-prefix {
  padding: 10px 12px;
  border: 1px solid #dde2e8;
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: #f8fafc;
  font-size: 13px;
  color: #6b7280;
}

.booking-phone input {
  border-radius: 0 3px 3px 0;
}

.booking-billing {
  padding: 0 22px 18px;
  font-size: 13px;
  color: #6b7280;
}

.booking-billing input {
  margin-right: 8px;
}

.booking-payment {
  padding: 32px 28px;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
}

.booking-payment-title {
  text-align: center;
  font-size: 13.5px; /* 90% of 15px */
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f3f6;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.payment-card {
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  padding: 24px 32px;
  background: linear-gradient(to right, #ffffff 0%, #fafbfc 100%);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: all 0.3s ease;
}

.payment-card:hover {
  border-color: var(--blue-soft);
  background: linear-gradient(to right, #f0f9ff 0%, #ffffff 100%);
  transform: translateX(6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.payment-card:hover::before {
  background: var(--blue-gradient);
  width: 5px;
}

.payment-card--active {
  border-color: var(--blue-soft);
  background: linear-gradient(to right, #e0f4fc 0%, #f0f9ff 50%, #ffffff 100%);
  box-shadow: var(--shadow-blue);
  transform: translateX(6px) scale(1.02);
  animation: paymentSelect 0.4s ease-out;
}

@keyframes paymentSelect {
  0% {
    transform: translateX(0) scale(1);
  }
  50% {
    transform: translateX(8px) scale(1.05);
  }
  100% {
    transform: translateX(6px) scale(1.02);
  }
}

.payment-card--active::before {
  background: var(--blue-soft);
  width: 4px;
}

.payment-card--active .payment-icon {
  color: var(--blue-soft);
  transform: scale(1.1);
}

.payment-card--active .payment-label {
  color: var(--blue-dark);
  font-weight: 700;
}

.payment-icon {
  font-size: 28px;
  color: #6b7280;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 10px;
  flex-shrink: 0;
}

.payment-card:hover .payment-icon {
  color: var(--blue-soft);
  background: #e0f2fe;
}

.payment-label {
  flex: 1;
  text-align: left;
  transition: all 0.3s ease;
}

.payment-card::after {
  content: '✓';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
}

.payment-card--active::after {
  opacity: 1;
}

.payment-logos {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #f1f3f6;
  margin-top: 8px;
}

.payment-logos img {
  display: block;
  margin: 0 auto;
  max-width: 280px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-logos:hover img {
  opacity: 1;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 8px;
  padding: 14px 28px;
  border: 2px solid #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  min-height: 48px;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ====== FINAL SUMMARY ====== */
.summary-final {
  padding: 60px 0 80px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  min-height: auto;
}

.summary-final-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1.3fr) 320px;
  gap: 30px;
  align-items: flex-start;
}

.summary-panel {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary-panel:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.summary-panel-header {
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 2px solid #f1f3f6;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-edit {
  border-radius: 6px;
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.summary-edit:hover {
  background: #f9fafb;
  border-color: var(--blue-soft);
  color: var(--blue-dark);
}

.summary-panel-body {
  padding: 18px 28px;
  border-bottom: 1px solid #f1f3f6;
  transition: all 0.2s ease;
}

.summary-panel-body:hover {
  background: #fafbfc;
  padding-left: 32px;
  padding-right: 32px;
}

.summary-panel-body:last-child {
  border-bottom: none;
}

.summary-panel-body.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.summary-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa4b2;
  margin-bottom: 3px;
}

.summary-value {
  font-size: 13px;
}

.summary-panel-footer {
  padding: 24px 28px;
  border-top: 2px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  color: var(--blue-dark);
  border-radius: 0 0 16px 16px;
}

.summary-vehicle-image img {
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
}

.summary-final-actions {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 2px solid #f1f3f6;
  flex-wrap: wrap;
}

.summary-final-actions .btn-secondary {
  flex: 0 0 auto;
}

.action-buttons-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-action {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}

.btn-action:hover {
  background: var(--blue-gradient);
  color: #ffffff;
  border-color: var(--blue-soft);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn-price-breakdown {
  background: none;
  border: none;
  color: var(--blue-soft);
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
  font-size: 14px;
  transition: all var(--transition-base);
  opacity: 0.7;
}

.btn-price-breakdown:hover {
  opacity: 1;
  transform: scale(1.1);
  color: var(--blue-dark);
}

.map-stat label {
  position: relative;
}

.summary-final-actions .btn-primary {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .vehicles-grid,
  .booking-grid,
  .summary-final-grid {
    grid-template-columns: 1fr;
  }
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: left;
  }

  .vehicle-action {
    text-align: left;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  nav ul {
    display: none;
  }

  .reservation-grid,
  .about-grid,
  .services-grid,
  .dest-grid,
  .cta-inner,
  .contact-grid,
  .trajets-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-images-main img:last-child {
    position: static;
    margin-top: 20px;
    width: 80%;
  }

  .footer-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== ACCESSIBILITY IMPROVEMENTS ====== */
*:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 3px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue-soft);
  outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue-soft);
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

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

/* ====== MOBILE ENHANCEMENTS ====== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-inner {
    padding-top: 130px;
  }

  /* Step Indicator Responsive */
  .step-indicator-wrapper {
    padding: 24px 0;
    top: 60px;
  }

  .step-indicator {
    gap: 8px;
    padding: 0 16px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-label {
    font-size: 11px;
    display: none;
  }

  .step-connector {
    margin-top: -20px;
    height: 2px;
  }

  .summary-card {
    position: static;
    margin-bottom: 24px;
  }

  .vehicles-grid,
  .booking-grid,
  .summary-final-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ====== TOAST NOTIFICATIONS ====== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.toast {
  background: linear-gradient(to right, #ffffff 0%, #fafbfc 100%);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 300px;
  border-left: 4px solid var(--blue-soft);
  transition: all var(--transition-base);
}

.toast:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.toast.success {
  border-left-color: #10b981;
}

.toast.error {
  border-left-color: #ef4444;
}

.toast.warning {
  border-left-color: #f59e0b;
}

.toast.info {
  border-left-color: var(--blue-soft);
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  color: #10b981;
}

.toast.error .toast-icon {
  color: #ef4444;
}

.toast.warning .toast-icon {
  color: #f59e0b;
}

.toast.info .toast-icon {
  color: var(--blue-soft);
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.toast-message {
  font-size: 13px;
  color: var(--text-soft);
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--text-dark);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ====== LOADING OVERLAY ====== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.loading-overlay.active {
  display: flex;
}

.loading-spinner {
  text-align: center;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid #e5e7eb;
  border-top-color: var(--blue-soft);
  border-right-color: var(--blue-soft);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
}

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

.loading-spinner p {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
}

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

/* ====== PROGRESS BAR ====== */
.step-progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.step-progress-fill {
  height: 100%;
  background: var(--blue-gradient);
  border-radius: 3px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 25%;
  position: relative;
  overflow: hidden;
}

.step-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

.step-progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}

.step-progress-text span:last-child {
  color: var(--blue-soft);
  font-weight: 600;
}

/* ====== LOCATION INPUT ENHANCEMENTS ====== */
.location-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.location-input-wrapper input {
  flex: 1;
  min-width: 0;
}

.btn-favorite-location,
.btn-current-location {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-soft);
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-favorite-location:hover,
.btn-current-location:hover {
  background: var(--blue-soft);
  color: #fff;
  border-color: var(--blue-soft);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(12, 127, 176, 0.25);
}

.btn-favorite-location:hover,
.btn-current-location:hover {
  background: var(--blue-soft);
  color: #fff;
  border-color: var(--blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(12, 127, 176, 0.2);
}

.btn-favorite-location.active {
  background: #fbbf24;
  color: #fff;
  border-color: #fbbf24;
}

.favorite-locations {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.favorite-location-tag {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.favorite-location-tag:hover {
  background: var(--blue-soft);
  color: #fff;
  border-color: var(--blue-soft);
}

.favorite-location-tag .fa-times {
  font-size: 10px;
  opacity: 0.6;
}

.favorite-location-tag:hover .fa-times {
  opacity: 1;
}

/* ====== SPECIAL REQUESTS SELECT ====== */
.special-requests-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.special-requests-select:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.special-requests-select:focus {
  outline: none;
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(14, 136, 189, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* ====== PROMO CODE SECTION ====== */
.promo-code-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.promo-code-section label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.promo-code-section label i {
  color: var(--blue-soft);
}

.promo-code-input-group {
  display: flex;
  gap: 8px;
}

.promo-code-input-group input {
  flex: 1;
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.promo-code-input-group input:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.promo-code-input-group input:focus {
  outline: none;
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 4px rgba(14, 136, 189, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.btn-promo-apply {
  padding: 14px 28px;
  background: var(--blue-soft);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12, 127, 176, 0.2);
}

.btn-promo-apply:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 127, 176, 0.35);
}

.btn-promo-apply:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(12, 127, 176, 0.25);
}

.promo-code-message {
  margin-top: 8px;
  font-size: 13px;
  min-height: 20px;
}

.promo-code-message.success {
  color: #10b981;
}

.promo-code-message.error {
  color: #ef4444;
}

/* ====== ENHANCED FORM VALIDATION ====== */
.field-error-message {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field.field-error .field-error-message {
  display: flex;
}

.field.field-error,
.booking-field.field-error {
  animation: shake 0.5s ease-in-out;
}

.field.field-error input,
.field.field-error select,
.field.field-error textarea,
.booking-field.field-error input,
.booking-field.field-error textarea,
.booking-field.field-error select {
  border-color: var(--error-red) !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field.field-error input:focus,
.field.field-error select:focus,
.field.field-error textarea:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ====== SMOOTH ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

.booking-step.step-active {
  animation: fadeInUp 0.4s ease-out;
}

/* ====== LOADING STATES ====== */
.input-loading {
  position: relative;
}

.input-loading::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top-color: var(--blue-soft);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  z-index: 10;
  pointer-events: none;
}

/* Ensure input loading doesn't resize the form */
.location-input-wrapper.input-loading,
.field.input-loading {
  min-height: auto;
  height: auto;
}

.map-stat.loading strong {
  color: #9ca3af;
  animation: pulse 1.5s ease-in-out infinite;
}

.map-stat.loading strong::after {
  content: "...";
  animation: pulse 1.5s ease-in-out infinite;
}

/* ====== ENHANCED UI/UX IMPROVEMENTS ====== */

/* Enhanced Input Focus States */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="email"],
input[type="tel"],
select,
textarea {
  transition: all var(--transition-base);
  position: relative;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 127, 176, 0.15), 0 0 0 3px rgba(12, 127, 176, 0.1) !important;
}

/* Ripple Effect for Buttons */
.btn-primary,
.btn-secondary,
.vehicle-select-btn,
.social-share-btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn-primary::after,
.btn-secondary::after,
.vehicle-select-btn::after,
.social-share-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after,
.btn-secondary:active::after,
.vehicle-select-btn:active::after,
.social-share-btn:active::after {
  width: 300px;
  height: 300px;
}

/* Enhanced Button Hover States */
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(12, 127, 176, 0.4);
}

/* Ripple Effect Styles */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleAnimation 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnimation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #f3f4f6;
}

/* Smooth Card Animations */
.card,
.vehicle-row,
.dest-card,
.summary-card {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.card:hover,
.vehicle-row:hover,
.dest-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Enhanced Vehicle Selection Animation */
.vehicle-select-btn {
  transition: all var(--transition-base);
  position: relative;
}

.vehicle-select-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(12, 127, 176, 0.3);
}

.vehicle-select-btn:active {
  transform: translateY(0) scale(1);
}

.vehicle-select-btn--primary {
  animation: selectPulse 2s ease-in-out infinite;
}

@keyframes selectPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(12, 127, 176, 0.3);
  }
  50% {
    box-shadow: 0 6px 20px rgba(12, 127, 176, 0.5);
  }
}

/* Scroll-triggered Fade-in Animations */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Form Validation Visual Feedback */
.field-error input,
.field-error select,
.field-error textarea {
  animation: shakeError 0.5s ease-in-out;
  border-left: 4px solid var(--error-red) !important;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.field-success input,
.field-success select,
.field-success textarea {
  border-left: 4px solid var(--success-green) !important;
  background-color: #f0fdf4 !important;
}

/* Success Checkmark Animation */
.field-success::after {
  content: '✓';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--success-green);
  font-size: 18px;
  font-weight: bold;
  animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

/* Enhanced Loading Spinner */
.loading-spinner {
  position: relative;
}

.spinner {
  position: relative;
}

.spinner::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: rgba(12, 127, 176, 0.2);
  animation: spin 1s linear infinite;
}

/* Smooth Page Transitions */
body {
  transition: opacity 0.3s ease-in-out;
}

body.page-loading {
  opacity: 0.7;
}

/* Enhanced Modal Animations */
.modal-overlay {
  animation: fadeInOverlay 0.3s ease-out;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(4px);
  }
}

.modal-content {
  animation: slideUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Enhanced Toast Notifications */
.toast {
  animation: slideInRightToast 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes slideInRightToast {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast.success {
  border-left: 4px solid var(--success-green);
}

.toast.error {
  border-left: 4px solid var(--error-red);
}

.toast.info {
  border-left: 4px solid var(--blue-soft);
}

/* Enhanced Step Indicator Animations */
.step-item {
  transition: all var(--transition-base);
}

.step-item.active .step-number {
  animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(12, 127, 176, 0.3);
  }
  50% {
    box-shadow: 0 6px 24px rgba(12, 127, 176, 0.5);
  }
}

.step-connector {
  position: relative;
  overflow: hidden;
}

.step-connector.completed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #10b981, #34d399);
  animation: connectorFlow 2s ease-in-out infinite;
}

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

/* Enhanced Map Container */
#map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--transition-base);
}

#map:hover {
  box-shadow: var(--shadow-xl);
}

/* Enhanced Summary Cards */
.summary-panel {
  transition: all var(--transition-base);
}

.summary-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Payment Cards */
.payment-card {
  transition: all var(--transition-base);
  cursor: pointer;
}

.payment-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.payment-card--active {
  animation: paymentSelect 0.3s ease-out;
}

@keyframes paymentSelect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.02);
  }
}

/* Enhanced Floating Buttons */
.float-btn {
  transition: all var(--transition-base);
  will-change: transform;
}

.float-btn:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.float-btn:active {
  transform: scale(1.05) translateY(-2px);
}

/* Enhanced Hero Section */
.hero-title,
.hero-subtitle {
  animation: fadeInUpHero 1s ease-out;
}

.hero-subtitle {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.hero-text {
  animation: fadeInUpHero 1s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.hero-pill {
  animation: fadeInUpHero 1s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

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

/* Enhanced Navigation */
nav li a {
  position: relative;
  transition: all var(--transition-base);
}

nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width var(--transition-base);
}

nav li a:hover::after {
  width: 100%;
}

/* Enhanced Accordion */
.accordion-item {
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.accordion-header {
  transition: all var(--transition-base);
}

.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, #eef4ff 0%, #f0f9ff 100%);
}

.accordion-icon {
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Enhanced Contact Form */
.contact-field input:focus,
.contact-field textarea:focus {
  transform: translateY(-1px);
  border-color: var(--blue-soft);
  box-shadow: 0 4px 12px rgba(12, 127, 176, 0.15);
}

/* Smooth Scroll Behavior Enhancement */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Enhanced Image Loading */
img {
  transition: opacity var(--transition-base);
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Enhanced Focus Visible for Accessibility */
*:focus-visible {
  outline: 3px solid rgba(12, 127, 176, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
  
  .card:hover,
  .vehicle-row:hover,
  .dest-card:hover {
    transform: none;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Enhanced Loading States */
.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Smooth Transitions for All Interactive Elements */
a, button, input, select, textarea {
  transition: all var(--transition-base);
}

/* Enhanced Visual Hierarchy */
.section-heading {
  position: relative;
  padding-bottom: 20px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--blue-gradient);
  border-radius: 2px;
}

/* Enhanced Progress Bar Animation */
.step-progress-fill {
  position: relative;
  overflow: hidden;
}

.step-progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s infinite;
}

@keyframes progressShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}