/* RentOGoa - Premium Self Drive Car Rental in Goa Stylesheet */
:root {
  --primary: #0f172a;
  --primary-dark: #020617;
  --primary-light: #1e293b;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-blue: #0284c7;
  --accent-blue-hover: #0369a1;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --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);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.logo-text span {
  color: var(--accent);
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
  letter-spacing: 0.5px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: #e2e8f0;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link .arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

/* Stable Desktop Dropdown Fix - No blinking, no gap */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  margin-top: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1050;
  max-height: 480px;
  overflow-y: auto;
}

.dropdown-menu.dropdown-right {
  left: auto;
  right: 0;
}

.dropdown-menu.mega-menu {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 12px;
}

.nav-item:hover > .dropdown-menu,
.nav-item.dropdown-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover > .nav-link .arrow,
.nav-item.dropdown-open > .nav-link .arrow {
  transform: rotate(180deg);
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  border-radius: 4px;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding-left: 20px;
}

.dropdown-link .tag {
  font-size: 0.7rem;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-header-call:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-header-book {
  background: var(--accent);
  color: #0f172a;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-header-book:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: #0f172a;
  overflow-y: auto;
  padding: 20px;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-nav-link .arrow {
  transition: transform 0.3s ease;
}

.mobile-nav-item.expanded .arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding: 6px 12px 14px 18px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.mobile-nav-item.expanded .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 8px 0;
  color: #94a3b8;
  font-size: 0.9375rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-submenu a:hover {
  color: var(--accent);
}

.mobile-contact-block {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  text-align: center;
}

.mobile-contact-block p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 60px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-slider-section {
  position: relative;
}

/* Background Slides Auto Cross-Fade */
.hero-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out;
  transform: scale(1);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.74) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Compact & Centered Hero */
.hero-compact {
  min-height: 400px;
  padding: 48px 0 54px;
}

.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-centered .hero-text-block {
  max-width: 100%;
  margin: 0 auto;
}

.hero-content-centered .hero-slides-wrapper {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content-centered .hero-title {
  font-size: 2.55rem;
  margin-bottom: 12px;
  text-align: center;
}

.hero-content-centered .hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-content-centered .hero-buttons {
  justify-content: center;
  margin-bottom: 20px;
}

.hero-highlights-centered {
  justify-content: center;
  padding-top: 14px;
}

.hero-text-block {
  max-width: 620px;
}

/* Hero Text Slides Wrapper */
.hero-slides-wrapper {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  pointer-events: none;
}

.hero-slide-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Slide Indicator Dots (Hidden per user request) */
.hero-dots {
  display: none !important;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-call {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.hero-highlight-item svg {
  color: var(--accent);
}

/* ==========================================================================
   Luxury VIP Booking Console & Locked/Ready WhatsApp Workflow Theme
   ========================================================================== */
.luxury-booking-section {
  position: relative;
  margin-top: -36px;
  margin-bottom: 34px;
  z-index: 20;
  padding: 0 16px;
}

.luxury-booking-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px 16px;
  box-shadow: 0 14px 40px -4px rgba(15, 23, 42, 0.14), 0 4px 14px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.luxury-booking-card:hover {
  box-shadow: 0 18px 46px -4px rgba(15, 23, 42, 0.18), 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Header & Real-Time Progress Tracker */
.luxury-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

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

.console-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}

.console-vip-badge svg {
  color: #f59e0b;
}

.console-step-indicator {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 800;
}

.step-dot.active {
  background: #0284c7;
  color: #ffffff;
}

.step-dot.wa {
  background: #22c55e;
  color: #ffffff;
}

.console-progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  transition: all 0.3s ease;
}

.console-progress-badge.ready {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
  animation: pulse-badge 2s infinite ease-in-out;
}

.console-progress-badge.ready .progress-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

/* 5-Column High-Performance Grid */
.luxury-console-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.3fr 1.3fr 1.35fr;
  gap: 12px;
  align-items: flex-start;
}

.console-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.console-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.label-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.label-text svg {
  color: #0284c7;
  flex-shrink: 0;
}

.field-valid-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.console-col.is-valid .field-valid-check {
  opacity: 1;
  transform: scale(1);
  background: #22c55e;
}

.console-input-wrap,
.console-phone-wrap {
  position: relative;
  width: 100%;
}

.console-select,
.console-input {
  width: 100%;
  height: 42px;
  padding: 6px 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.console-select {
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}

.console-select:focus,
.console-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.14);
}

/* Sub-group layout for Dates and Contact */
.console-dates-col,
.console-contact-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.console-date-subcol,
.console-contact-subcol {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.console-date-input {
  font-size: 0.78rem;
  padding: 6px 6px;
  text-align: center;
}

.console-phone-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

.console-phone-prefix {
  position: absolute;
  left: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #64748b;
  pointer-events: none;
}

.console-phone-input {
  padding-left: 36px;
  font-size: 0.84rem;
  letter-spacing: 0.5px;
}

/* Error highlighting on invalid fields */
.field-error-text {
  font-size: 0.7rem;
  color: #dc2626;
  font-weight: 600;
  display: none;
  margin-top: 2px;
}

.console-col.has-error .field-error-text,
.luxury-field.has-error .field-hint {
  display: block;
  color: #dc2626;
}

.console-col.has-error .console-input,
.console-col.has-error .console-select,
.luxury-field.has-error .luxury-input,
.luxury-field.has-error .luxury-select {
  border-color: #ef4444 !important;
  background-color: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Shake Animation when trying to click while locked */
.shake-anim {
  animation: shakeField 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shakeField {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

/* ==========================================================================
   Locked vs Ready WhatsApp Action Button
   ========================================================================== */
.console-btn-col {
  width: 100%;
}

.btn-booking-action {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Locked State (Initial / Incomplete) */
.btn-booking-action.btn-booking-locked {
  background: #e2e8f0;
  color: #475569;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px dashed #cbd5e1;
  cursor: not-allowed;
}

.btn-booking-action.btn-booking-locked:hover {
  background: #f1f5f9;
  border-color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
  cursor: pointer;
}

.btn-booking-action.btn-booking-locked .icon-whatsapp {
  display: none;
}

.btn-booking-action.btn-booking-locked .icon-lock {
  display: inline-block;
  color: #64748b;
}

.btn-booking-action.btn-booking-locked strong {
  color: #334155;
  font-size: 0.82rem;
}

.btn-booking-action.btn-booking-locked small {
  color: #64748b;
  font-size: 0.68rem;
}

/* Ready / Unlocked State (All fields complete & valid) */
.btn-booking-action.btn-booking-ready {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  border: none;
  cursor: pointer;
  animation: pulse-ready-btn 2.2s infinite ease-in-out;
}

@keyframes pulse-ready-btn {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.65), 0 0 0 3px rgba(37, 211, 102, 0.25);
  }
}

.btn-booking-action.btn-booking-ready:hover {
  background: linear-gradient(135deg, #22c55e 0%, #0f766e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.btn-booking-action.btn-booking-ready .icon-lock {
  display: none;
}

.btn-booking-action.btn-booking-ready .icon-whatsapp {
  display: inline-block;
  color: #ffffff;
}

.btn-booking-action.btn-booking-ready strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.btn-booking-action.btn-booking-ready small {
  color: #e6fffa;
  font-size: 0.68rem;
}

.btn-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
}

.btn-booking-action.btn-booking-locked .btn-action-icon {
  background: rgba(0, 0, 0, 0.05);
}

.btn-action-content {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.btn-action-content strong {
  font-weight: 800;
  white-space: nowrap;
}

.btn-action-content small {
  font-weight: 600;
  white-space: nowrap;
}

/* Status Helper note below button */
.booking-status-note {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.2;
}

.booking-status-note.ready {
  color: #059669;
  font-weight: 700;
}

/* Micro Bottom Trust Bar */
.luxury-console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.76rem;
  color: #475569;
  font-weight: 600;
}

.console-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.console-trust-item svg {
  flex-shrink: 0;
}

.console-call-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.console-call-direct a {
  color: #0f172a;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.console-call-direct a:hover {
  color: #0284c7;
}

/* ==========================================================================
   Sidebar Luxury Card Form Theme (Used on car & location pages)
   ========================================================================== */
.luxury-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}

.luxury-card-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.luxury-card-header h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 4px;
}

.luxury-card-header p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
}

.luxury-sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.luxury-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.luxury-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
}

.luxury-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.luxury-select,
.luxury-input {
  width: 100%;
  height: 42px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.luxury-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.luxury-phone-prefix {
  position: absolute;
  left: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}

.luxury-phone-input {
  padding-left: 40px;
}

.field-hint {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.luxury-btn-wrap {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ==========================================
   Responsive Breakpoints for Luxury Console
   ========================================== */
@media (max-width: 1200px) {
  .luxury-console-grid {
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
  }
  .console-btn-col {
    grid-column: 1 / -1;
  }
  .btn-booking-action {
    height: 44px;
  }
}

@media (max-width: 860px) {
  .luxury-booking-section {
    margin-top: -22px;
    margin-bottom: 24px;
    padding: 0 12px;
  }
  .luxury-booking-card {
    padding: 14px 14px 12px;
  }
  .luxury-console-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .console-dates-col,
  .console-contact-col {
    grid-column: span 2;
  }
  .console-step-indicator {
    display: none;
  }
}

@media (max-width: 540px) {
  .luxury-console-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .console-dates-col,
  .console-contact-col {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
  }
  .console-title-group {
    width: 100%;
    justify-content: space-between;
  }
  .luxury-console-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .console-call-direct {
    margin-left: 0;
    margin-top: 4px;
  }
  .btn-booking-action {
    height: 46px;
  }
  .btn-action-content strong {
    font-size: 0.92rem;
  }
}

/* Booking Form Card (Compact & Modern) */
.booking-form-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
}

.booking-form-header {
  margin-bottom: 14px;
  text-align: center;
}

.booking-form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.booking-form-header p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.2px;
}

.form-control {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  font-size: 0.84rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  height: 54px;
  resize: vertical;
}

.btn-submit-booking {
  width: 100%;
  height: 42px;
  background: var(--accent);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-submit-booking:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-dark {
  background-color: var(--primary);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  background: rgba(2, 132, 199, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-dark .section-badge {
  color: var(--accent);
  background: rgba(245, 158, 11, 0.15);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: #94a3b8;
}

/* Vehicle Cards Grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.car-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.car-image-box {
  position: relative;
  width: 100%;
  height: 190px;
  background: #0f172a;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.car-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-image-box img {
  transform: scale(1.05);
}

.car-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.car-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.car-name a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.car-name a:hover {
  color: var(--accent);
}

.car-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.spec-item svg {
  color: var(--accent-blue);
  width: 15px;
  height: 15px;
}

.car-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
  line-height: 1.5;
}

.car-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-card-call {
  background: #0f172a;
  color: #ffffff;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #0f172a;
  transition: var(--transition);
  text-decoration: none;
}

.btn-card-call:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-card-call svg {
  color: var(--accent);
}

.btn-card-wa {
  background: var(--whatsapp);
  color: #ffffff;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
}

.btn-card-wa:hover {
  background: var(--whatsapp-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-card-details {
  background: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--border);
  padding: 8px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
}

.btn-card-details:hover {
  background: #e2e8f0;
}

/* Category Filter Tabs (Fleet Page) */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-icon.icon-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.feature-icon.icon-amber {
  background: rgba(245, 158, 11, 0.14);
  color: #d97706;
}

.feature-icon.icon-emerald {
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
}

.feature-icon.icon-red {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.feature-icon.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  color: #9333ea;
}

.feature-icon.icon-gold {
  background: rgba(234, 179, 8, 0.15);
  color: #ca8a04;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Location Cards Grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.location-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: block;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  color: #ffffff;
}

.location-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* Steps (How it works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.step-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.step-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Airport Section */
.airport-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.airport-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.airport-img {
  height: 220px;
  position: relative;
}

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

.airport-body {
  padding: 24px;
}

.airport-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.airport-address {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.airport-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
}

.review-trip {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  gap: 14px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-blue);
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.68;
  border-top: 1px dashed rgba(226, 232, 240, 0.8);
  margin-top: 2px;
  padding-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
  animation: faqFadeIn 0.25s ease-out;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.8) 100%),
              url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Footer */
.site-footer {
  background: #080c14;
  color: #94a3b8;
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Footer Top Features Trust Cards */
.footer-top-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 12px);
  transition: all 0.25s ease;
}

.footer-feature-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.footer-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.14);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.footer-feature-content h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
  line-height: 1.2;
}

.footer-feature-content p {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.35;
}

/* Footer Google Maps Coverage Section */
.footer-map-section {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.footer-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-map-title-box {
  max-width: 680px;
}

.footer-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.footer-map-title-box h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.footer-map-title-box p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
}

.btn-footer-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-footer-map:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #0f172a;
  transform: translateY(-1px);
}

.footer-map-embed-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.footer-map-embed-wrapper iframe {
  display: block;
  width: 100%;
}

.footer-map-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.map-pill svg {
  color: #f59e0b;
}

.map-pill:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer-top-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-top-features {
    grid-template-columns: 1fr;
  }
  .footer-map-section {
    padding: 18px 14px;
  }
  .footer-map-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-footer-map {
    width: 100%;
    justify-content: center;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1.5fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: -0.2px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 1px;
}

.footer-about-text {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #cbd5e1;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.footer-contact-item a {
  color: #e2e8f0;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s ease;
}

.footer-map-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-trust-row {
    grid-template-columns: 1fr;
  }
}

/* Fixed Floating Quick Actions: AI Concierge & Call Now (Left Side - Entire Website) */
.fixed-floating-cta {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 9997;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  padding: 0;
}

.floating-btn svg {
  flex-shrink: 0;
}

.floating-label {
  display: none;
}

.floating-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.floating-call {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.floating-call:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.floating-ai {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
}

.floating-ai:hover {
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 50%, #db2777 100%);
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.5);
}

.floating-ai-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ai-live-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

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

/* ==================================================
   Modern WhatsApp Customer Support Chat Widget
   ================================================== */
.rentogoa-wa-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Welcome Message Popup (Floats Above Button) */
.wa-welcome-popup {
  position: absolute;
  bottom: calc(100% + 14px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 36px);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px 16px 16px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.22), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.07);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s;
  pointer-events: none;
}

.wa-welcome-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-welcome-popup.hidden {
  display: none !important;
}

/* Speech Bubble Tail pointing to WhatsApp button */
.wa-popup-tail {
  position: absolute;
  bottom: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: rotate(45deg);
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.wa-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.wa-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wa-popup-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(18, 140, 126, 0.3);
}

.wa-online-indicator {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.wa-popup-sender {
  display: flex;
  flex-direction: column;
}

.wa-popup-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wa-popup-sub {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
}

.wa-popup-body {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #334155;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #edf2f7;
}

/* WhatsApp Main Trigger Button */
.wa-chat-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  min-width: 64px;
  padding: 0 16px;
  border-radius: 32px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.44), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
  animation: wa-float-breath 4s ease-in-out infinite;
}

@keyframes wa-float-breath {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 28px rgba(18, 140, 126, 0.44), 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(18, 140, 126, 0.52), 0 4px 10px rgba(0, 0, 0, 0.16);
  }
}

.wa-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-trigger-label {
  display: inline-block;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
  color: #ffffff;
  transition: max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              margin-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Hover / Active Expansion State (Desktop & Mobile Tap) */
.wa-chat-trigger:hover,
.wa-chat-trigger:focus,
.wa-chat-trigger.expanded {
  padding: 0 22px 0 18px;
  background: linear-gradient(135deg, #2ae06c 0%, #159b8c 100%);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.55), 0 4px 12px rgba(0, 0, 0, 0.18);
}

.wa-chat-trigger:hover .wa-trigger-label,
.wa-chat-trigger:focus .wa-trigger-label,
.wa-chat-trigger.expanded .wa-trigger-label {
  max-width: 140px;
  opacity: 1;
  margin-left: 10px;
}

/* Notification Badge (Subtle top-right "1") */
.wa-notif-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.45);
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wa-notif-badge.hidden {
  display: none !important;
}

/* Hide floating actions when mobile drawer is open */
body.menu-open .rentogoa-wa-widget-container,
body.menu-open .fixed-floating-cta,
body.menu-open .ai-assistant-widget {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* RentOGoa AI Assistant Chatbot Widget */
.ai-assistant-widget {
  position: fixed;
  bottom: 84px;
  left: 24px;
  right: auto;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 530px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(99, 102, 241, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s;
  transform: translateY(20px) scale(0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ai-assistant-widget.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ai-widget-header {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ai-online-dot {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border: 2px solid #1e1b4b;
  border-radius: 50%;
}

.ai-header-profile h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.ai-status {
  font-size: 0.72rem;
  color: #c7d2fe;
  display: block;
}

.ai-action-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.ai-action-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.ai-widget-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
  scroll-behavior: smooth;
}

.ai-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}

.ai-msg-bot {
  align-self: flex-start;
}

.ai-msg-user {
  align-self: flex-end;
}

.ai-msg-bubble {
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  border-radius: 14px;
  word-break: break-word;
}

.ai-msg-bot .ai-msg-bubble {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.ai-msg-bot .ai-msg-bubble p {
  margin-bottom: 6px;
}

.ai-msg-bot .ai-msg-bubble p:last-child {
  margin-bottom: 0;
}

.ai-msg-bot .ai-msg-bubble ul, 
.ai-msg-bot .ai-msg-bubble ol {
  padding-left: 18px;
  margin: 6px 0;
}

.ai-msg-bot .ai-msg-bubble li {
  margin-bottom: 4px;
}

.ai-msg-user .ai-msg-bubble {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #ffffff;
  border-bottom-right-radius: 3px;
  box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
}

.ai-msg-time {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 3px;
  padding: 0 4px;
}

.ai-msg-user .ai-msg-time {
  text-align: right;
}

.ai-suggestion-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.ai-chip {
  background: #ffffff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
  padding: 7px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ai-chip:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateX(2px);
}

.ai-typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-bottom-left-radius: 3px;
  width: fit-content;
}

.ai-typing-dot {
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
  animation: ai-dot-bounce 1.4s infinite ease-in-out both;
}

.ai-typing-dot:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes ai-dot-bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.ai-widget-footer {
  padding: 10px 12px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.ai-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-input-field {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 0.86rem;
  outline: none;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.ai-input-field:focus {
  border-color: #6366f1;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.ai-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, opacity 0.15s;
  flex-shrink: 0;
}

.ai-send-btn:hover {
  transform: scale(1.05);
}

.ai-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ai-quick-wa-action {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
  padding-top: 6px;
  border-top: 1px dashed #e2e8f0;
}

.ai-wa-link {
  color: #16a34a;
  font-weight: 700;
  text-decoration: none;
}

.ai-wa-link:hover {
  text-decoration: underline;
}

/* Article/Page Layouts */
.page-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%),
              url('https://images.unsplash.com/photo-1544644181-1484b3fdfc62?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #94a3b8;
  margin-top: 14px;
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

/* Single Vehicle Details Page */
.vehicle-detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.vehicle-gallery-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.vehicle-main-img {
  width: 100%;
  height: 380px;
  background: #0f172a;
}

.vehicle-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.vehicle-specs-table th, .vehicle-specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
}

.vehicle-specs-table th {
  background: var(--bg-light);
  color: var(--text-muted);
  font-weight: 600;
  width: 40%;
}

.vehicle-specs-table td {
  color: var(--primary);
  font-weight: 700;
}

.vehicle-sidebar-form {
  position: sticky;
  top: 90px;
}

/* Single Location & Car Detail Sections */
.location-content-block, .vehicle-detail-main {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}

.location-content-block h2, .vehicle-detail-main h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 14px;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-light);
}

.location-content-block h2:first-of-type, .vehicle-detail-main h2:first-of-type {
  margin-top: 0;
}

.location-content-block h3, .vehicle-detail-main h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px;
}

.location-content-block p, .vehicle-detail-main p {
  margin-bottom: 16px;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.65;
}

.location-content-block ul, .vehicle-detail-main ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
  color: #475569;
}

.location-content-block li, .vehicle-detail-main li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Detail Section Box */
.detail-content-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px 26px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Info Callout Box */
.info-callout-box {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.info-callout-box.info-blue {
  background: rgba(2, 132, 199, 0.05);
  border-left-color: #0284c7;
}

.info-callout-box.info-green {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: #10b981;
}

.info-callout-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-callout-box p {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}

/* Route & Itinerary Cards */
.route-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}

.route-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.route-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.route-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.route-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.route-meta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.route-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Feature Matrix & Badges */
.feature-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.feature-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.feature-pill-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Distance Table */
.distance-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.distance-table th, .distance-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.distance-table th {
  background: #f1f5f9;
  font-weight: 700;
  color: var(--primary);
}

.distance-table td {
  color: #475569;
}

.distance-table tr:hover td {
  background: #f8fafc;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 16px;
}

.article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px;
}

.article-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

.article-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: disc;
  color: #334155;
}

.article-content li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Modal Popup for Booking Confirmation */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.show {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon-success {
  width: 64px;
  height: 64px;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .desktop-nav, .header-actions .btn-header-call, .header-actions .btn-header-book {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-nav-drawer {
    display: block;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vehicle-detail-layout {
    grid-template-columns: 1fr;
  }
  .airport-cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .rentogoa-wa-widget-container {
    bottom: 16px;
    right: 14px;
  }
  .wa-chat-trigger {
    height: 58px;
    min-width: 58px;
    border-radius: 29px;
    padding: 0 14px;
  }
  .wa-chat-trigger .wa-icon-wrap svg {
    width: 28px;
    height: 28px;
  }
  .wa-welcome-popup {
    bottom: calc(100% + 10px);
    right: 0;
    width: 300px;
    max-width: calc(100vw - 28px);
    padding: 14px;
  }
  .wa-popup-tail {
    right: 20px;
  }
  .fixed-floating-cta {
    bottom: 16px;
    left: 14px;
    right: auto;
    gap: 8px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .floating-label {
    display: none; /* Icon-only compact floating button on mobile */
  }
  .ai-assistant-widget {
    bottom: 76px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    height: calc(100vh - 140px);
    max-height: 520px;
    border-radius: 16px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .btn {
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
  }
}
