/* ==================================================== */
/* WANDERIN PREMIUM TRANSFER · FINAL, PERFECT, COMPACT  */
/* ==================================================== */
/* 2026 – Clean, dense, every pixel intentional         */
/* Tailored to wanderin.ge exact HTML structure         */
/* ==================================================== */

/* ------------------------------------------------------------------ */
/* 1. DESIGN TOKENS – compact, efficient, generous yet dense         */
/* ------------------------------------------------------------------ */
:root {
  /* Primary – brand green */
  --primary-50: #e6f7eb;
  --primary-100: #b3e6c8;
  --primary-200: #80d4a5;
  --primary-300: #4dc382;
  --primary-400: #1ab15f;
  --primary-500: #00b140;
  --primary-600: #009935;
  --primary-700: #00802a;
  --primary-800: #006620;
  --primary-900: #004d15;

  /* Secondary – calm blue */
  --secondary-500: #0ea5e9;

  /* Neutral – absolute black to light grey */
  --neutral-50: #fafafa;
  --neutral-600: #525252;

  /* Semantic – dark mode first */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(0, 0, 0, 0.85);
  --bg-glass-heavy: rgba(10, 10, 10, 0.98);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-tertiary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.45);

  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.15);
  --border-heavy: rgba(255, 255, 255, 0.2);

  /* Shadows – subtle depth */
  --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Border radius – precise */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Typography – system-first */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', var(--font-sans);

  /* Transitions – smooth */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* COMPACT SPACING SCALE – more content, less whitespace */
  --space-1: 0.2rem;   /* 3.2px */
  --space-2: 0.375rem; /* 6px */
  --space-3: 0.625rem; /* 10px */
  --space-4: 0.875rem; /* 14px */
  --space-5: 1rem;     /* 16px */
  --space-6: 1.25rem;  /* 20px */
  --space-8: 1.5rem;   /* 24px */
  --space-10: 2rem;    /* 32px */
  --space-12: 2.5rem;  /* 40px */
  --space-16: 3rem;    /* 48px */
  --space-20: 4rem;    /* 64px */
  --space-24: 5rem;    /* 80px */

  /* Z‑index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-max: 9999;
}

/* ------------------------------------------------------------------ */
/* 2. RESET & BASE – pristine, overflow‑free                         */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px; /* slightly smaller base, more on screen */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  text-align:center;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.5;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  text-align:center;
}

/* Subtle ambient background – never pushes content */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 177, 64, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10, 94, 42, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography – crisp, compact */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  -webkit-background-clip: text;
  background-clip: text;
  color: black;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), transparent);
  border-radius: var(--radius-full);
}

h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  max-width: 70ch;
}

a {
  color: var(--primary-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--primary-300); }

strong, b { font-weight: 600; color: var(--text-primary); }
small { font-size: 0.85em; color: var(--text-tertiary); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

ul, ol {
  margin-bottom: var(--space-3);
  padding-left: var(--space-5);
}
li {
  margin-bottom: var(--space-1);
  color: var(--text-secondary);
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
button { cursor: pointer; background: none; border: none; outline: none; }

/* ------------------------------------------------------------------ */
/* 3. LAYOUT – containers with zero overflow risk                    */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 640px) { .container { padding: 0 var(--space-4); } }
@media (min-width: 1024px) { .container { padding: 0 var(--space-6); } }

/* Force no overflow on all major wrappers */
main,
header,
footer,
section,
article,
div[class*="container"],
div[class*="wrapper"] {
  max-width: 100%;
}

/* ------------------------------------------------------------------ */
/* 4. HEADER & NAVIGATION – fixed, compact                           */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-fixed);
  transition: transform var(--transition-slow), background var(--transition-slow);
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled { background: var(--bg-glass-heavy); box-shadow: var(--shadow-lg); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--text-primary);
  object-fit: cover;
}
.logo div h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  text-align:start;
}
.logo .muted {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

/* Language switcher */
.language-switcher { position: relative; }
.language-switcher-btn {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.language-switcher-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}
.language-switcher-btn[aria-expanded="true"] {
  background: var(--bg-card-hover);
  border-color: var(--primary-500);
}
.language-flag { font-size: 1.1rem; }
.language-code { font-size: 0.8rem; }
.language-dropdown {
  position: absolute;
  top: calc(100% + var(--space-1));
  right: 0;
  min-width: 160px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
}
.language-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}
.language-option:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}
.language-check {
  color: var(--primary-500);
  opacity: 0;
}
.language-option.active .language-check,
.language-option .language-check { opacity: 1; }

/* ------------------------------------------------------------------ */
/* 5. BREADCRUMB – visible, clean, compact                           */
/* ------------------------------------------------------------------ */
.geo-breadcrumb {
  margin: 72px auto 12px;
  padding: 0 var(--space-3);
  max-width: 1280px;
  width: 100%;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-tertiary);
  font-size: 0.8rem;
}
.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin-left: 6px;
  color: var(--border-medium);
}
.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb-link:hover {
  color: var(--primary-400);
}
.breadcrumb-item.current {
  color: var(--text-primary);
  font-weight: 500;
}
.breadcrumb-item svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: currentColor;
}
.route-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ------------------------------------------------------------------ */
/* 6. PREMIUM HERO – powerful first impression, compact              */
/* ------------------------------------------------------------------ */
.premium-hero {
  position: relative;
  background-image: url("https://wanderin.ge/en/transfers/images/wanderinbenzw2022.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-8) var(--space-4);
  margin: var(--space-4) auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 177, 64, 0.2);
  box-shadow: 0 10px 30px rgba(0, 177, 64, 0.08), inset 0 1px 0 rgba(255,255,255,0.05);
  max-width: min(1200px, 95vw);
  overflow: hidden;
  text-align: center;
}

/* მუქი ნახევრადგამჭირვალე გადაფარვა */
.premium-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* შეგიძლიათ შეცვალოთ სიმკვრივე */
  z-index: 1;
  pointer-events: none;
  border-radius: inherit; /* კუთხეების გამეორება */
}

/* ყველა შიგთავსი უნდა იყოს გადაფარვის ზემოთ */
.hero-container,
.hero-content,
.hero-image,
.hero-cta {
  position: relative;
  z-index: 2;
}

/* ტექსტის ფერების გადაკეთება ღია ტონებში */
.hero-content h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-top: 3rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* ჩრდილი – კონტრასტისთვის */
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: white;
  background: rgba(0, 0, 0, 0.7); /* ნახევრადგამჭირვალე შავი */
  font-weight: 900;
  margin-bottom: 0.25rem;
  padding: 0.25rem 0.75rem; /* ფონი არ ეკვრის პირდაპირ ტექსტს */
  border-radius: var(--radius-full);
  display: inline-block;
}

.hero-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-description {
  color: white;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* ნახევრადგამჭირვალე ფონი */
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(2px); /* ბუნდოვანი ეფექტი – სურვილისამებრ */
}

.route-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.75); /* ოდნავ გამჭირვალე */
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  justify-content: center;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white; /* ღია ფერი */
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}
.hero-features li svg {
  fill: var(--primary-500);
}

.pricing-display {
  margin: 1rem 0;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 177, 64, 0.25); /* მწვანე ნახევრადგამჭირვალე */
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  display: inline-block;
  backdrop-filter: blur(2px);
}
.price-from {
  color: rgba(255, 255, 255, 0.9);
}
.price-amount {
  color: white;
}
.price-currency {
  color: white;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  margin-left: 3.6rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  width: fit-content;
}
.stars {
  color: #ffc107;
}
.hero-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00b140 0%, #0a5e2a 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  box-shadow: 0 6px 14px rgba(0, 177, 64, 0.25);
  min-width: 200px;
}
.hero-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 177, 64, 0.3);
  border-color: rgba(255,255,255,0.2);
}
.hero-cta .cta-button svg {
  width: 18px;
  height: 18px;
  fill: white;
}
.hero-image img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; gap: 24px; }
  .hero-content { text-align: center; }
  .hero-features ul { justify-content: center; }
  .pricing-display { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
}

/* ------------------------------------------------------------------ */
/* 7. BUTTONS – consistent, compact                                   */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: white;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}
.cta-button { composes: btn-primary; border-radius: var(--radius-full); }
.cta-button small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.9;
  margin-top: 2px;
}

/* ------------------------------------------------------------------ */
/* 8. TRANSFER DETAILS (QA) – compact, clear                         */
/* ------------------------------------------------------------------ */
.transfer-details {
  max-width: 900px;
  margin: var(--space-8) auto;
  padding: 0 var(--space-3);
}
.transfer-details h2 {
  font-size: 1.3rem;
  margin-bottom: var(--space-4);
}
.qa-route-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.qa-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  transition: all var(--transition-fast);
}
.qa-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}
.qa-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.qa-item p {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.route-info[style*="display:none"] { display: none !important; }

/* ------------------------------------------------------------------ */
/* 9. CARS GRID, FILTER, PAGINATION – premium cards, compact         */
/* ------------------------------------------------------------------ */
.cars-section { margin: var(--space-12) 0; }
.section-title {
  text-align: center;
  margin-bottom: var(--space-6);
  font-size: 1.5rem;
}
.passenger-filter {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.passenger-btn {
  padding: var(--space-2) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.passenger-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}
.passenger-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-color: var(--primary-500);
  color: white;
  box-shadow: var(--shadow-sm);
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.car-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.car-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-500);
}
.car-card.hidden { display: none; }
.car-media {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.car-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.car-media:hover img { transform: scale(1.05); }
.car-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
}
.car-header { margin-bottom: var(--space-2); }
.car-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}
.car-year {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: normal;
}
.car-meta {
  display: flex;
  gap: var(--space-3);
  color: var(--text-tertiary);
  font-size: 0.8rem;
}
.car-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}
.car-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-500);
}
.car-route {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.car-route strong { color: var(--text-primary); }
.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  list-style: none;
  padding: 0;
}
.car-features .feature-tag {
  padding: 0.2rem 0.6rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.car-footer { margin-top: auto; }
.car-price { margin-bottom: var(--space-2); }
.car-actions {
  display: flex;
  gap: var(--space-2);
}
.car-actions .btn {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  font-size: 1.4rem;
}
.pagination-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.pagination {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.pagination button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.pagination button:hover:not([disabled]) {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}
.pagination button.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-color: var(--primary-500);
  color: white;
}
.pagination button[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ------------------------------------------------------------------ */
/* 10. PHOTO MODAL – clean overlay                                   */
/* ------------------------------------------------------------------ */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  padding: var(--space-4);
}
.photo-modal.show { display: flex; animation: fadeIn 0.2s ease; }
.photo-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.photo-modal-content img {
  width: 100%;
  height: auto;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.photo-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.photo-modal-close:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
}
#modalCaption {
  color: var(--text-secondary);
  margin-top: 8px;
  text-align: center;
  font-size: 0.85rem;
}

/* ------------------------------------------------------------------ */
/* 11. COMPACT FAQ (accordion)                                       */
/* ------------------------------------------------------------------ */
.seo-faq-compact {
  max-width: 900px;
  margin: var(--space-10) auto;
  padding: 0 var(--space-3);
}
.faq-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}
.faq-grid {
  display: grid;
  gap: 10px;
}
.faq-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
}
.faq-question { margin: 0; }
.faq-toggle {
  width: 100%;
  padding: 0.9rem 1.2rem;
  text-align: left;
  background: var(--bg-card);
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
  cursor: pointer;
}
.faq-toggle:hover { background: var(--bg-card-hover); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--transition-fast);
  color: var(--primary-500);
}
.faq-toggle[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-base);
  background: var(--bg-tertiary);
}
.faq-toggle[aria-expanded="true"] + .faq-answer {
  padding: 1.2rem;
  max-height: 400px;
}
.faq-content {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}
.faq-content a { color: var(--primary-400); text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* 12. RELATED ROUTES – compact grid                                 */
/* ------------------------------------------------------------------ */
.related-routes {
  max-width: 900px;
  margin: var(--space-10) auto;
  padding: var(--space-5);
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}
.routes-header { text-align: center; margin-bottom: var(--space-4); }
.routes-header h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  margin-top: 0;
}
.routes-subtitle {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: var(--space-4);
}
.route-link {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.route-link:hover {
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card-hover);
}
.route-link.current {
  border-color: var(--primary-500);
  background: rgba(0,177,64,0.1);
}
.route-from, .route-to { font-weight: 600; color: var(--text-primary); }
.route-arrow { margin: 0 6px; color: var(--text-tertiary); }
.current-badge {
  margin-left: auto;
  padding: 2px 6px;
  background: var(--primary-500);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
}
.related-routes-subsection {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-4);
}
.related-routes-subsection h3 {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.related-link {
  padding: 0.3rem 0.8rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}
.related-link:hover {
  border-color: var(--primary-500);
  color: var(--primary-400);
}

/* ------------------------------------------------------------------ */
/* 13. UNIFIED ROUTE SUMMARY – dense, clear                          */
/* ------------------------------------------------------------------ */
.unified-route-summary {
  max-width: 1000px;
  margin: var(--space-12) auto;
  padding: 0 var(--space-3);
}
.unified-route-summary h1 {
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
}
.route-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
.route-stat {
  text-align: center;
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}
.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-500);
  margin-bottom: var(--space-1);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin: var(--space-4) 0;
}
.feature-item {
  padding: var(--space-3);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}
.feature-item strong {
  color: var(--primary-400);
  margin-bottom: var(--space-1);
  display: block;
  font-size: 0.9rem;
}
.feature-item div { font-size: 0.85rem; color: var(--text-secondary); }

/* ------------------------------------------------------------------ */
/* 14. SINGLE VEHICLE PAGE – compact adaption                        */
/* ------------------------------------------------------------------ */
.single-vehicle-transfer-page {
  --hero-padding: var(--space-8) var(--space-4);
}
.transfer-hero { padding: var(--hero-padding); }
.hero-price {
  background: rgba(0,177,64,0.1);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-4);
}
.price-note { font-size: 0.8rem; margin-top: 6px; }
.benefits-section,
.vehicle-details,
.route-info-section,
.services-section,
.audience-section,
.trust-section {
  padding: var(--space-10) var(--space-4);
}
.benefits-grid,
.audience-content,
.trust-grid {
  gap: var(--space-4);
}
.benefit-card,
.audience-card,
.trust-card {
  padding: var(--space-5) var(--space-4);
}
.benefit-icon,
.trust-icon { font-size: 2rem; margin-bottom: var(--space-3); }
.benefit-card h3,
.audience-card h3,
.trust-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.benefit-card p,
.audience-card p,
.trust-card p { font-size: 0.85rem; }
.vehicle-header { margin-bottom: var(--space-6); }
.vehicle-type {
  font-size: 1rem;
  padding: 2px 10px;
}
.vehicle-meta { gap: var(--space-3); margin-top: var(--space-3); }
.meta-item {
  padding: 4px 12px;
  font-size: 0.85rem;
}
.vehicle-content { gap: 40px; }
.vehicle-description p { font-size: 0.95rem; margin-bottom: var(--space-4); }
.vehicle-features h4 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.vehicle-features li { font-size: 0.85rem; padding: 4px 0 4px 22px; }
.vehicle-gallery { gap: 10px; }
.gallery-item img { height: 160px; }
.route-card { padding: var(--space-5); gap: 20px; }
.route-icon {
  width: 60px;
  height: 60px;
  font-size: 2rem;
}
.route-content h3 { font-size: 1.4rem; margin-bottom: var(--space-3); }
.route-metrics { gap: 20px; }
.metric-value { font-size: 1.1rem; }
.services-grid { gap: 12px; }
.service-item { padding: 10px; }
.service-icon { font-size: 1rem; }
.service-text { font-size: 0.85rem; }
.audience-summary {
  font-size: 0.95rem;
  padding: var(--space-4);
  margin-top: var(--space-5);
}
.cta-footer { padding: var(--space-12) var(--space-4); }
.cta-content h2 { font-size: 2rem; margin-bottom: var(--space-3); }
.cta-content p { font-size: 1rem; margin-bottom: var(--space-6); }
.cta-primary,
.cta-secondary { padding: 14px 28px; font-size: 1rem; }
.cta-guarantees { gap: 12px; }
.guarantee { padding: 6px 14px; font-size: 0.8rem; }

/* ------------------------------------------------------------------ */
/* 15. FOOTER – compact, complete                                     */
/* ------------------------------------------------------------------ */
.site-footer {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--primary-500);
  display: inline-block;
}
.company-desc,
.desc {
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
  line-height: 1.5;
  font-size: 0.85rem;
}
.social {
  display: flex;
  gap: var(--space-2);
}
.social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}
.social a:hover {
  transform: translateY(-2px);
  color: var(--primary-500);
  border-color: var(--primary-500);
}
.social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: var(--space-6) 0;
  text-align: center;
}
.payments {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--space-1) var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: var(--text-tertiary);
}
.badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-500);
}
.copyright {
  color: var(--text-tertiary);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------------ */
/* 16. SUPPORT WIDGET – fixed, friendly                               */
/* ------------------------------------------------------------------ */
.support-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  max-width: 280px;
  z-index: var(--z-fixed);
  animation: slideIn 0.3s ease;
}
.support-header {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}
.support-header i { font-size: 1.1rem; }
.support-options { padding: 10px; }
.support-option {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, #000, #0a2a1a);
  border-radius: var(--radius-lg);
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
.support-option i {
  font-size: 1.1rem;
  margin-right: 10px;
}
.support-option:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
  border-color: var(--primary-500);
}

/* ------------------------------------------------------------------ */
/* 17. FLOATING BUTTONS – WhatsApp & back to top                     */
/* ------------------------------------------------------------------ */
#whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-fixed);
  transition: all var(--transition-fast);
  animation: float 3s ease-in-out infinite;
  text-decoration: none;
}
#whatsapp-button:hover { transform: scale(1.1); }
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover {
  background: var(--bg-card);
  border-color: var(--primary-500);
  transform: translateY(-3px);
}

/* ------------------------------------------------------------------ */
/* 18. UTILITIES – atomic, predictable                                */
/* ------------------------------------------------------------------ */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.muted { color: var(--text-tertiary); }

/* ------------------------------------------------------------------ */
/* 19. ANIMATIONS – fluid, deliberate                                 */
/* ------------------------------------------------------------------ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ------------------------------------------------------------------ */
/* 20. RESPONSIVE – fine‑tuned for compact, overflow‑free            */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .vehicle-content { grid-template-columns: 1fr; gap: 30px; }
  .route-card { flex-direction: column; text-align: center; gap: 16px; }
  .route-metrics { flex-direction: column; gap: 12px; }
  .language-switcher {
    width: 30px;
  }
  .language-switcher-btn {
    width: auto;
    padding: var(--space-1) var(--space-3);
  }
  .language-dropdown {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border-light);
    margin-top: var(--space-1);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  .language-switcher-btn[aria-expanded="true"] + .language-dropdown {
    opacity: 1;
    height: auto;
    padding: var(--space-2);
  }
}
  .cars-grid { grid-template-columns: 1fr; }
  .vehicle-meta { flex-direction: column; align-items: center; }
  .vehicle-gallery { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-primary, .cta-secondary { width: 100%; max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  #whatsapp-button { bottom: 80px; width: 52px; height: 52px; font-size: 26px; }
  #back-to-top { width: 44px; height: 44px; }
  .support-widget { bottom: 10px; left: 10px; max-width: calc(100vw - 20px); }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 var(--space-2); }
  .header-inner { height: 60px; }
  .logo img { width: 44px; height: 44px; }
  .logo div h3 { font-size: 1rem; }
  .geo-breadcrumb { margin-top: 64px; }
  .breadcrumb-item { font-size: 0.7rem; }
  .premium-hero { padding: var(--space-6) var(--space-3); }
  .hero-content h1 { font-size: 1.4rem;margin-top:3rem; }
  .car-actions { flex-direction: column; }
  .car-actions .btn { width: 200px;padding:2rem;margin-left:6rem; }
  .faq-toggle { padding: 0.8rem 1rem; font-size: 0.9rem; }
  .related-routes { padding: var(--space-4); }
  .routes-grid { grid-template-columns: 1fr; }
  .unified-route-summary h1 { font-size: 1.3rem; }
  .stat-value { font-size: 1.6rem; }
  .footer-bottom { padding: var(--space-4) 0; }
}

/* ------------------------------------------------------------------ */
/* 21. ACCESSIBILITY & REDUCED MOTION                                */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #whatsapp-button,
  .car-card:hover,
  .btn:hover,
  .support-option:hover { transform: none !important; }
}
:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
.skip-to-main {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-500);
  color: white;
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: var(--z-max);
}
.skip-to-main:focus { top: 0; }

/* ------------------------------------------------------------------ */
/* 22. PRINT – clean, efficient                                      */
/* ------------------------------------------------------------------ */
@media print {
  .site-header, .nav-toggle, .language-switcher, .car-actions,
  .photo-modal, #whatsapp-button, #back-to-top, .site-footer,
  .support-widget, .hero::before, body::before,
  .cta-buttons, .cta-footer, .support-widget {
    display: none !important;
  }
  body, .premium-hero, .car-card, .transfer-details, .unified-route-summary {
    background: white !important;
    color: black !important;
  }
  a { color: black !important; text-decoration: underline !important; }
  h2::after { background: black !important; }
  .car-card { border: 1px solid #ddd !important; break-inside: avoid; }
}

/* ------------------------------------------------------------------ */
/* 23. HORIZONTAL OVERFLOW – ABSOLUTE ELIMINATION (FINAL LAYER)      */
/* ------------------------------------------------------------------ */
html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
}
* {
  max-width: 100vw;
  box-sizing: border-box;
}
/* Kill any 100vw tyranny from old code */
*[style*="width: 100vw"],
*[style*="width:100vw"] {
  width: 100% !important;
  max-width: 100% !important;
}
/* Ensure images never escape */
img {
  max-width: 100% !important;
  height: auto;
}
/* Fix absolutely positioned elements that might escape */
.fixed,
[class*="fixed"]:not(nav):not(.site-header) {
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100vw !important;
}
/* Negative margins – reset */
* {
  margin-left: 0;
  margin-right: 0;
}
/* Restore intended padding via containers */
.container, .header-inner, .premium-hero, .car-body,
.footer-container, .related-routes, .unified-route-summary {
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}
@media (max-width: 640px) {
  .container, .header-inner, .premium-hero, .car-body,
  .footer-container, .related-routes, .unified-route-summary {
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
}
/* Make navigation always visible and inline */
.nav {
  display: block !important;    /* override any hidden states */
  flex: 1;                      /* take available space */
  margin-left: auto;            /* push nav to the right */
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);          /* consistent spacing */
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: lowercase;    /* your "patara asoebi" request */
  transition: color var(--transition-fast);
  white-space: nowrap;          /* prevent wrapping inside item */
}

.nav-link:hover {
  color: var(--primary-400);
}

.nav-link i {
  font-size: 1.1rem;
  color: var(--primary-500);
}

/* Language switcher inside the inline list */
.nav-lang {
  margin-left: var(--space-2);
}

.language-switcher {
  position: relative;
}

.language-switcher-btn {
  padding: var(--space-1) var(--space-2);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: lowercase;
}

.language-switcher-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-medium);
  color: var(--text-primary);
}

/* Mobile: wrap items if screen too narrow */
@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2) var(--space-3);
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: var(--space-2) var(--space-3);
  }

  .logo {
    margin-right: auto;
  }

  .nav-link {
    white-space: normal;        /* allow wrapping on very small screens */
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    justify-content: space-around;
  }

  .nav-link i {
    display: none;              /* hide icons on very small screens to save space */
  }
}
/* ------------------------------------------------------------------ */
/* ====================  END OF MASTER STYLESHEET  ================== */
/* ------------------------------------------------------------------ */

/* ==================================================== */
/* BOOKING WIDGET – SCOPED VARIABLES & STYLES           */
/* ==================================================== */
.booking-widget {
  /* Scoped design tokens (originally second :root) */
  --accent: #00b894;
  --accent-soft: rgba(0,184,148,0.12);
  --accent-glow: rgba(0,184,148,0.3);
  --bg-deep: #0a0c10;
  --bg-card: rgba(18, 22, 28, 0.94);
  --bg-input: rgba(255,255,255,0.05);
  --bg-input-hover: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.07);
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.75);
  --text-muted: rgba(255,255,255,0.5);
  --radius-card: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow: 0 25px 45px -12px rgba(0,0,0,0.6);
  --transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Original .booking-widget properties */
  font-family: var(--font-sans);
  max-width: 1400px;
  margin: 60px auto 50px;
  padding: 0 20px;
  color: var(--text-primary);
}

.booking-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

/* 2-COLUMN LAYOUT */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT: FORM */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Progress indicator */
.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0 5px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  flex: 1;
}
.progress-step.active .step-dot {
  background: white;
  border-color: white;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.progress-step.active .step-label {
  color: white;
}
.step-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  background: transparent;
  transition: var(--transition);
}
.step-label {
  display: none;
}
@media (min-width: 640px) {
  .step-label { display: block; }
}

/* Step containers */
.step-container {
  display: none;
  animation: fadeSlide 0.35s ease;
}
.step-container.active {
  display: block;
}
@keyframes fadeSlide {
  0% { opacity: 0.6; transform: translateX(6px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Form groups */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  flex: 1 1 calc(50% - 8px);
  min-width: 180px;
}
.form-group.full-width {
  flex: 1 1 100%;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-label i {
  color: white;
  width: 16px;
  text-align: center;
}

.booking-input,
.booking-select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.95rem;
  color: white;
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}
.booking-input:hover,
.booking-select:hover {
  background: var(--bg-input-hover);
  border-color: rgba(255,255,255,0.15);
}
.booking-input:focus,
.booking-select:focus {
  background: rgba(0,0,0,0.5);
  border-color: white;
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.booking-input::placeholder {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.booking-input[readonly] {
  opacity: 0.8;
  background: rgba(255,255,255,0.02);
  border-style: dashed;
}

/* Compact counter */
.counter-control {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.counter-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s;
}
.counter-btn:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}
.counter-value {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  border: none;
  color: white;
  min-width: 40px;
  padding: 0;
}

/* Child seats */
.child-seat-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.child-seat-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
}
.child-seat-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: white;
  cursor: pointer;
}
#childSeatCount {
  width: 80px;
}
.free-badge {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(0,184,148,0.15);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* Return transfer */
.return-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 16px;
  background: var(--accent-soft);
  border-radius: 50px;
  border: 1px solid rgba(0,184,148,0.2);
}
.return-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}
.return-toggle input {
  width: 18px;
  height: 18px;
  accent-color: white;
  margin: 0;
}
.return-fields {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  border-left: 3px solid white;
}
.return-fields.visible {
  display: block;
}

/* Navigation buttons */
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
}
.btn-nav {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 12px 28px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-nav:hover:not(:disabled) {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.btn-nav.primary {
  background: white;
  color: black;
  border: none;
}
.btn-nav.primary:hover {
  background: #019d7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,184,148,0.3);
}
.btn-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* RIGHT: STICKY SUMMARY */
.booking-summary {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 100px;
}
.summary-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.summary-details {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.summary-item.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.summary-item.total span:last-child {
  color: white;
}
.summary-label i {
  margin-right: 10px;
  color: white;
  width: 18px;
  text-align: center;
}

/* Direct submit buttons */
.booking-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: white;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  color: black;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-submit.whatsapp {
  background: #25D366;
  color: white;
}
.btn-submit.email {
  background: rgba(255,255,255,0.9);
  color: #1a1e24;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(0,0,0,0.5);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit i {
  font-size: 1.3rem;
}

/* Passenger warning */
#passengerWarning {
  color: #ff6b6b;
  font-size: 0.7rem;
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 6px;
}

/* Vehicle card highlight */
.car-card.vehicle-selected {
  box-shadow: 0 0 0 4px white, 0 10px 25px -5px rgba(0,184,148,0.6);
  transform: scale(1.01);
  transition: all 0.2s ease;
}

/* Mobile optimization */
@media (max-width: 1100px) {
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-card { padding: 28px 24px; }
  .booking-summary { position: static; }
}
@media (max-width: 640px) {
  .booking-card { padding: 20px 16px; }
  .form-row { flex-direction: column; gap: 12px; }
  .form-group { flex: 1 1 100%; }
  .counter-btn { width: 48px; height: 48px; }
  .progress-step .step-label { display: none; }
}

/* Car thumbnails (small addition) */
.car-thumbs img {
  opacity: 0.6;
  transition: 0.2s;
  border: 2px solid transparent;
}
.car-thumbs img.active {
  opacity: 1;
  border-color: white;
  border-radius: 8px;
}

/* ==================================================== */
/* PREMIUM NOTIFICATION SYSTEM (TOAST) – RENAMED ANIM   */
/* ==================================================== */
.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  max-width: 420px;
  width: calc(100% - 60px);
  z-index: 99999;
  font-family: var(--font-sans);
  animation: notificationSlideIn 0.35s cubic-bezier(0.21, 1.11, 0.35, 1.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification[hidden] {
  display: none !important;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(18, 22, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 20px 35px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02) inset;
  color: white;
}

.notification-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.notification.success .notification-icon {
  background: rgba(0, 184, 148, 0.15);
  color: white;
}
.notification.success .notification-icon::before {
  content: "✓";
  font-weight: 800;
}

.notification.error .notification-icon {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
}
.notification.error .notification-icon::before {
  content: "✕";
  font-weight: 800;
}

.notification.info .notification-icon {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
}
.notification.info .notification-icon::before {
  content: "ℹ";
  font-weight: 800;
}

.notification-message {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  word-break: break-word;
}

.notification-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  margin: -8px -8px -8px 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.notification-close:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

@keyframes notificationSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}

.notification.fade-out {
  animation: slideOut 0.25s ease forwards;
}

/* Mobile optimization */
@media (max-width: 640px) {
  .notification {
    top: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    max-width: none;
  }
}