:root {
  --black: #111111;
  --dark: #1a1a1a;
  --white: #ffffff;
  --gold: #c9a64c;
  --gold-light: #e2c778;
  --gray-100: #f7f7f7;
  --gray-200: #ececec;
  --gray-400: #b3b3b3;
  --gray-600: #6b6b6b;
  --gray-800: #2b2b2b;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

h1, h2, h3 { font-family: var(--font-head); color: var(--black); line-height: 1.2; }
h1 { text-align: center; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-call {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
}
.btn-call:hover { background: var(--gold-light); color: var(--black); }
.header-cta { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.btn-compact { padding: 6px 11px; font-size: 0.74rem; display: inline-flex; align-items: center; gap: 4px; }
.btn-compact .btn-icon { flex-shrink: 0; }

/* WhatsApp buttons: subtle WhatsApp-green tint so they read as WhatsApp anywhere */
.btn[href*="wa.me"] {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  color: var(--white);
}
.btn[href*="wa.me"]:hover { background: rgba(37, 211, 102, 0.34); border-color: #25d366; color: var(--white); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled::before {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-link { display: flex; align-items: center; }
.logo-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-taxi {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.42em;
  /* pad-left balances the trailing tracking so the word stays centred */
  padding-left: 0.42em;
  text-transform: uppercase;
}
.logo-antonio {
  font-family: 'Allura', cursive;
  color: var(--gold);
  font-size: 2.5rem;
  line-height: 0.72;
}
.logo-a { font-size: 1em; }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a {
  color: var(--gray-400);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}
.main-nav > a:hover { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  color: var(--gray-400);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.nav-dropdown-toggle .caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-toggle,
  .nav-dropdown-toggle:hover { color: var(--gold); }
  .nav-dropdown:hover .caret { transform: rotate(225deg); margin-top: 3px; }
}
.nav-dropdown.open .nav-dropdown-toggle { color: var(--gold); }
.nav-dropdown.open .caret { transform: rotate(225deg); margin-top: 3px; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px;
  min-width: 240px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
/* Transparent bridge across the gap so the dropdown stays open while the
   cursor travels from the toggle down to the menu items. */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
@media (hover: hover) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
}
.nav-dropdown-menu a {
  color: var(--gray-400);
  font-size: 0.88rem;
  padding: 9px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-dropdown-divider {
  height: 1px;
  margin: 6px 4px;
  background: rgba(255,255,255,0.1);
}

.nav-lang-dropdown {
  padding-left: 14px;
  margin-left: 6px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav-lang-dropdown .nav-dropdown-toggle {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-lang-dropdown .nav-dropdown-menu { min-width: 170px; }
.nav-lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.88rem;
  padding: 9px 12px;
  border-radius: 4px;
}
a.nav-lang-item:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-lang-item.active { color: var(--gold); font-weight: 700; }
.nav-lang-item.soon { color: var(--gray-600); cursor: default; }
.nav-lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 auto;
  vertical-align: middle;
}
.nav-lang-dropdown .nav-dropdown-toggle .nav-lang-flag { margin-right: 6px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg picture { display: contents; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 769px) {
  .hero { min-height: 600px; max-height: 600px; }
  .hero-bg img { object-position: center 20%; }
  .hero.hero-split { max-height: none; min-height: 680px; padding: 110px 0 60px; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.9) 100%);
}
/* Photo-hero crops: keep the car (and the IVAN sign) in frame */
.hero-photo-amadria .hero-bg img { object-position: center 72%; }
.hero-photo-dresort .hero-bg img { object-position: center 66%; }
.hero-photo-transfers .hero-bg img { object-position: center bottom; }
.hero-photo-airport .hero-bg img { object-position: center 58%; }
.hero.hero-photo-bibich .hero-bg img { object-position: center 62%; }
.hero.hero-photo-vineyard .hero-bg img { object-position: center 72%; }

/* Route pages: at-a-glance facts strip */
.route-facts-section { background: var(--white); padding: 32px 0; }
.route-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-fact {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
}
.route-fact .rf-value { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--black); line-height: 1.15; }
.route-fact .rf-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: #6b6b6b; margin-top: 6px; }
@media (max-width: 640px) { .route-facts { grid-template-columns: 1fr 1fr; } }
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--gray-200);
  margin-bottom: 36px;
}
.hero-trust-line { margin-top: 16px; font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero split layout with quote widget */
.hero-split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-text { text-align: center; }
.hero-split .hero-tagline { margin-bottom: 28px; }
.hero-split .hero-actions { justify-content: center; }

.quote-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  color: var(--gray-800);
}
.quote-trip-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 4px;
}
.trip-toggle-btn {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
}
.trip-toggle-btn.active { background: var(--black); color: var(--white); }

.quote-field { margin-bottom: 14px; }
.quote-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
}
.quote-field select,
.quote-field input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
}
.quote-field select:focus,
.quote-field input:focus { outline: none; border-color: var(--gold); }

/* Searchable combobox */
.combo { position: relative; }
.combo-input {
  width: 100%;
  padding: 11px 34px 11px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
}
.combo-input:focus { outline: none; border-color: var(--gold); }
.combo::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--gray-600);
  border-bottom: 1.5px solid var(--gray-600);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.combo-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  z-index: 40;
  max-height: 260px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  padding: 6px;
}
.combo-group[hidden] { display: none; }
.combo-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  padding: 10px 10px 4px;
}
.combo-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  padding: 9px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.combo-option[hidden] { display: none; }
.combo-option:hover, .combo-option.active { background: var(--gray-100); color: var(--black); }
.combo-opt-icon { flex: 0 0 auto; color: var(--gold); }
.combo-opt-label { flex: 1 1 auto; min-width: 0; }
.combo-empty { padding: 12px 10px; font-size: 0.88rem; color: var(--gray-600); }

.quote-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.quote-field-row[hidden] { display: none; }
.quote-field-row .quote-field { margin-bottom: 0; }

.quote-stepper label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
}
.stepper-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 6px 10px;
}
.stepper-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.stepper-btn:hover { border-color: var(--gold); color: var(--gold); }

.quote-btn { width: 100%; margin-top: 4px; }

.quote-result {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--gray-100);
  text-align: center;
}
.quote-result .quote-price {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--black);
  margin-bottom: 12px;
  text-align: center;
}
.quote-result .quote-price-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quote-result p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 10px; }
.quote-result .btn { width: 100%; }

/* Hero Trustindex badge */
.hero-trust { margin: 0 0 20px; min-height: 28px; }
.hero-split .hero-trust :is(a, div) { justify-content: center; }

/* Booking page */
.booking-page {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.booking-summary {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 28px;
}
.booking-summary h2 { font-size: 1.2rem; margin-bottom: 16px; }
.booking-summary-list { list-style: none; display: grid; gap: 10px; }
.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.booking-summary-list li span { color: var(--gray-600); }
.booking-summary-list li strong { color: var(--black); text-align: right; }
.booking-summary-price { border-bottom: none !important; padding-top: 4px; }
.booking-summary-price span, .booking-summary-price strong { font-size: 1.15rem; }
.booking-summary-price strong { font-family: var(--font-head); color: var(--gold); }
.booking-summary-note { font-size: 0.85rem; color: var(--gray-600); margin-top: 12px; }
.booking-change-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: underline;
}
.booking-form {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 32px;
}
.booking-form h3 { font-size: 1.2rem; margin-bottom: 20px; }
.booking-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin: 16px 0 6px;
}
.booking-form .quote-field label { margin-top: 0; }
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.booking-price-line {
  margin: 18px 0 4px;
  font-size: 1.05rem;
  color: var(--black);
}
.booking-price-line strong { font-family: var(--font-head); color: var(--gold); font-size: 1.2rem; }
.booking-price-line .booking-price-sub { color: var(--gray-600); font-size: 0.85rem; }
.booking-form select:focus,
.booking-form input:focus,
.booking-form textarea:focus { outline: none; border-color: var(--gold); }
.booking-form .quote-field-row { margin: 16px 0 0; }
.booking-form .quote-field-row .quote-field label { margin-top: 0; }
.booking-form > button { margin-top: 24px; width: 100%; }
.booking-form .form-note { margin-top: 14px; font-size: 0.88rem; color: var(--gold); text-align: center; }
.booking-form .form-hint { margin: 10px 0 0; font-size: 0.85rem; color: #6b6b6b; }
.booking-form .form-hint a { color: var(--gold); text-decoration: underline; }

/* About */
.about { padding: 110px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; }
.about-highlights {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.about-highlights li {
  padding-left: 26px;
  position: relative;
  font-weight: 500;
  color: var(--black);
}
.about-highlights li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* Services */
.services { padding: 110px 0; background: var(--gray-100); }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto 56px;
}
.popular-routes { padding: 72px 0; }
.route-links {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.route-links a {
  display: block;
  padding: 13px 14px;
  background: var(--gray-100);
  border-radius: 6px;
  color: var(--gray-800);
  font-size: 0.88rem;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.route-links a:hover { background: var(--gold); color: var(--black); }
@media (max-width: 900px) { .route-links { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .route-links { grid-template-columns: 1fr; } }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  display: block;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.service-card img { height: 180px; width: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.15rem; padding: 20px 20px 8px; }
.service-card p { color: var(--gray-600); font-size: 0.92rem; padding: 0 20px 24px; }

/* Pricing */
.pricing { padding: 110px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.pricing-card {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 36px;
}
.pricing-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.pricing-card p { color: var(--gray-600); margin-bottom: 16px; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.price-table th { font-weight: 500; color: var(--gray-800); }
.price-table td { text-align: right; font-weight: 700; color: var(--black); }
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: none; }
.pricing-note { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 0; }

/* Why Book */
.why-book { padding: 110px 0; background: var(--gray-100); }
.why-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-book-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.why-book-item h3::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}
.why-book-item p { color: var(--gray-600); font-size: 0.92rem; padding-left: 20px; }

/* Reviews */
.reviews { padding: 110px 0; background: var(--white); }
.reviews-widget { max-width: 800px; margin: 0 auto; text-align: center; }
.reviews-placeholder {
  color: var(--gray-600);
  padding: 48px;
  border: 1px dashed var(--gray-400);
  border-radius: 8px;
}

/* FAQ */
.faq { padding: 110px 0; background: var(--gray-100); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.faq-group h3 { font-size: 1.15rem; margin-bottom: 20px; }
.faq-item { margin-bottom: 22px; }
.faq-item h4 { font-family: var(--font-body); font-size: 0.98rem; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.faq-item p { color: var(--gray-600); font-size: 0.92rem; }
.faq-more { text-align: center; margin-top: 40px; color: var(--gray-600); }
.faq-more a { color: var(--gold); text-decoration: underline; }
.faq-more a:hover { color: var(--gold-light); }

/* Hub pages */
.hub-intro { padding: 90px 0 40px; background: var(--white); }
.hub-intro .section-subtitle { max-width: 820px; }

.hub-routes { padding: 60px 0; background: var(--white); }
.hub-routes-alt { background: var(--gray-100); }
.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hub-routes-alt .route-item { background: var(--white); }
.route-item:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.route-name { font-weight: 600; color: var(--black); font-size: 0.98rem; }
.route-arrow { color: var(--gold); font-weight: 700; margin: 0 2px; }
.route-price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* Dual-action airport route cards (route details + book on this page) */
.airport-route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.airport-route {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 20px;
}
.ar-info { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.ar-name { font-weight: 600; color: var(--black); font-size: 0.98rem; }
.ar-price { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.ar-actions { display: flex; gap: 10px; margin-top: 14px; }
.ar-actions a { flex: 1; text-align: center; padding: 9px 10px; border-radius: 5px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s ease, color 0.2s ease; }
.ar-details { border: 1px solid var(--gold); color: var(--gold); }
.ar-details:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); }
.ar-book { background: var(--gold); color: var(--black); border: 1px solid var(--gold); }
.ar-book:hover { background: var(--black); color: var(--white); border-color: var(--black); }
#book { scroll-margin-top: 90px; }
@media (max-width: 680px) { .airport-route-grid { grid-template-columns: 1fr; } }

.route-group-title {
  max-width: 860px;
  margin: 34px auto 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}
.route-group-title:first-of-type { margin-top: 8px; }
.hub-note { text-align: center; color: var(--gray-600); font-size: 0.92rem; margin-top: 26px; }
.hub-note a { color: var(--gold); text-decoration: underline; }
.hub-note a:hover { color: var(--gold-light); }
.hub-note-arrival {
  text-align: left;
  max-width: 760px;
  margin: 30px auto 0;
  padding: 16px 20px;
  background: rgba(201, 166, 76, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  line-height: 1.55;
}
.hub-note-arrival strong { color: var(--black); }

/* Krka / day-trip page */
@media (min-width: 769px) {
  .daytrip-hero .hero-bg img { object-position: center 50%; }
}
.daytrip-price { font-size: 1.05rem; font-weight: 600; color: var(--gold); margin: 0 0 22px; }
.section-note { max-width: 720px; margin: 14px auto 0; text-align: center; color: var(--gray-600); font-size: 0.95rem; font-style: italic; }
.daytrip-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 8px auto 0; }
.daytrip-gallery figure { margin: 0; }
.daytrip-gallery img { width: 100%; height: 210px; object-fit: cover; border-radius: 8px; display: block; box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.daytrip-gallery figcaption { margin-top: 8px; font-size: 0.82rem; color: var(--gray-600); text-align: center; }
@media (max-width: 720px) { .daytrip-gallery { grid-template-columns: 1fr 1fr; gap: 12px; } .daytrip-gallery img { height: 150px; } }
@media (max-width: 440px) { .daytrip-gallery { grid-template-columns: 1fr; } .daytrip-gallery img { height: 200px; } }
.daytrip-highlights {
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}
.daytrip-highlights li { position: relative; padding-left: 26px; color: var(--gray-800); font-size: 0.95rem; }
.daytrip-highlights li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.daytrip-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.daytrip-step { background: var(--white); border-radius: 8px; padding: 22px 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.daytrip-step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--black); }
.daytrip-step p { color: var(--gray-600); font-size: 0.93rem; }
.incl-excl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.incl-excl-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; padding: 24px 26px; }
.incl-excl-card h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--black); }
.incl-excl-card ul { list-style: none; padding: 0; margin: 0; }
.incl-excl-card li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 0.92rem; color: var(--gray-800); }
.incl-excl-card.included li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.incl-excl-card.excluded li::before { content: "\2715"; position: absolute; left: 0; color: var(--gray-600); font-weight: 700; }
.daytrip-cta { text-align: center; background: var(--black); color: var(--white); padding: 66px 0; }
.daytrip-cta h2, .daytrip-cta .section-title { color: var(--white); }
.daytrip-cta .section-subtitle { color: var(--gray-200); }
.daytrip-cta .hero-actions { margin-top: 26px; }
@media (max-width: 720px) {
  .daytrip-highlights, .daytrip-steps, .incl-excl-grid { grid-template-columns: 1fr; }
}

.hub-prose-section { padding: 90px 0; background: var(--gray-100); }
.hub-prose-section.hub-prose-white { background: var(--white); }
.hub-prose-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hub-prose-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.hub-prose-text p { color: var(--gray-600); margin-bottom: 16px; }
.hub-prose-image img { border-radius: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

.hub-links { padding: 90px 0; background: var(--white); }
.hub-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hub-link-card {
  display: block;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hub-link-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.hub-link-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.hub-link-card p { color: var(--gray-600); font-size: 0.9rem; }

@media (max-width: 900px) {
  .route-grid { grid-template-columns: 1fr; }
  .hub-prose-inner { grid-template-columns: 1fr; gap: 32px; }
  .hub-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hub-links-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact { padding: 110px 0; background: var(--black); color: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.contact-info > p { color: var(--gray-400); margin-bottom: 28px; }
.contact-details, .contact-hours {
  list-style: none;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}
.contact-details a:hover, .main-nav a:hover { color: var(--gold); }
.contact-hours li { color: var(--gray-400); font-size: 0.92rem; }
.contact-socials { display: flex; gap: 20px; }
.contact-socials a {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-socials a:hover { color: var(--gold-light); }

.contact-form {
  background: var(--dark);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 14px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23c9a24a' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.contact-form select { color: var(--white); }
.contact-form select option { color: var(--white); background: #1f2430; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button { margin-top: 24px; width: 100%; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--gold); text-align: center; }

/* Footer */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 0;
  color: var(--gray-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-col h4:not(:first-child) { margin-top: 28px; }
.footer-links { list-style: none; display: grid; gap: 8px; margin-bottom: 4px; }
.footer-links a, .footer-col a { color: var(--gray-400); font-size: 0.92rem; }
.footer-links a:hover, .footer-col a:hover { color: var(--gold); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 4px 0; }
.footer-label { color: var(--white); font-weight: 600; font-size: 0.88rem; margin-top: 12px; }
.footer-col p { font-size: 0.92rem; margin-bottom: 2px; }
.footer-emphasis { font-size: 0.82rem; color: var(--gray-600); margin-top: 6px; }

.footer-socials { display: flex; gap: 12px; margin-bottom: 20px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-icon:hover { transform: translateY(-2px); opacity: 0.9; }
.social-facebook { background: #1877f2; }
.social-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-google { background: #ea4335; }
.social-tiktok { background: #000000; border: 1px solid rgba(255,255,255,0.2); }
.social-tripadvisor { background: #34e0a1; color: #ffffff; }

.trust-badge { margin-bottom: 12px; min-height: 40px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* Floating WhatsApp button */
/* Honeypot spam trap (hidden from real users) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 6px; font-size: 0.9rem; color: var(--gray-600); }
.form-consent input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--gold); }
.form-consent a { color: var(--gold); text-decoration: underline; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  z-index: 200;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: whatsapp-pulse 2.4s ease-out 0.4s 2;
}
.whatsapp-float:hover { background: #1ebe5b; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 520px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* Page hero (utility pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 150px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero-sub { color: var(--gray-400); max-width: 600px; margin: 12px auto 0; }
.page-hero .hero-actions { margin-top: 28px; }
.page-hero-marina {
  position: relative;
  background-image: url('/assets/img/taxi-antonio-skoda-superb-marina-mandalina-land.webp');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  padding-bottom: 96px;
}
.page-hero-marina::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17,17,17,0.48), rgba(17,17,17,0.64));
  z-index: 0;
}
.page-hero-marina > .container { position: relative; z-index: 1; }

/* Prose content pages */
.page-content { padding: 70px 0 110px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--gray-600); margin-bottom: 14px; }
.prose ul { color: var(--gray-600); margin: 0 0 14px 20px; display: grid; gap: 8px; }
.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-light); }
.prose .btn { margin-top: 20px; text-decoration: none; color: var(--black); }

.contact-page { padding-top: 70px; }

/* Responsive */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-book-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero.hero-split { min-height: 0; padding: 100px 0 40px; }
  .hero-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-text { text-align: center; }
  .hero-split .hero-actions { justify-content: center; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    bottom: 0;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    margin-top: 0;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-lang-dropdown {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-left: 0;
    padding-left: 0;
    padding-top: 8px;
    margin-top: 8px;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-book-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px; }

  /* Center the whole footer on mobile */
  .site-footer { text-align: center; }
  .footer-links { justify-items: center; }
  .footer-socials { justify-content: center; }
  .footer-col-trust { align-items: center; }
}

/* Special offers page */
.nav-offers { color: var(--gold); }
.offers-intro { max-width: 760px; color: var(--gray-600); margin: 0 0 28px; }
.offers-filter { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; flex-wrap: wrap; }
.offers-filter label { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.offers-filter select { padding: 9px 12px; border: 1px solid var(--gray-200); border-radius: 8px; font-size: 0.92rem; background: var(--white); color: var(--black); min-width: 200px; }
.offers-filter select:focus { outline: none; border-color: var(--gold); }
.offers-list { display: flex; flex-direction: column; gap: 20px; }

/* Return-leg offer banner (.rlo) — one per row, full width, dark card + gold rail */
.rlo { width: 100%; background: #0b0b0b; border-radius: 18px; overflow: hidden; display: flex; box-shadow: 0 18px 40px -18px rgba(0,0,0,.35); color: #fff; }
.rlo__save { width: 184px; flex-shrink: 0; background: linear-gradient(160deg, #C9A64C, #a9863a); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px 12px; color: #0b0b0b; }
.rlo__save-k { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; }
.rlo__save-n { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 64px; line-height: .95; }
.rlo__save-word { font-size: 40px; }
.rlo__save-s { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; line-height: 1.3; color: #4a3c17; }
.rlo__body { flex: 1; padding: 24px 26px; min-width: 0; }
.rlo__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.rlo__tag { display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #C9A64C; }
.rlo__dot { width: 7px; height: 7px; border-radius: 50%; background: #C9A64C; display: inline-block; animation: rloPulse 1.6s infinite; }
@keyframes rloPulse { 0%, 100% { opacity: 1 } 50% { opacity: .25 } }
.rlo__countdown { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(201,166,76,.45); border-radius: 999px; padding: 5px 13px; background: rgba(201,166,76,.06); }
.rlo__cd-k { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: #8a8a8a; }
.rlo__cd-t { font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 15px; color: #C9A64C; font-variant-numeric: tabular-nums; }
.rlo__route { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; line-height: 1.05; margin-bottom: 16px; }
.rlo__arrow { color: #C9A64C; font-size: 27px; }
.rlo__meta { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.rlo__k { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #7a7a7a; margin-bottom: 3px; }
.rlo__date, .rlo__pax { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #efefef; line-height: 1; }
.rlo__window { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #C9A64C; line-height: 1; }
.rlo__price { margin-left: auto; display: flex; align-items: baseline; gap: 9px; }
.rlo__old { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #6a6a6a; text-decoration: line-through; }
.rlo__new { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 700; color: #C9A64C; line-height: .9; }
.rlo__cta { display: flex; gap: 10px; margin-top: 20px; }
.rlo__btn { text-decoration: none; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 14px; color: #fff; padding: 12px 22px; border-radius: 10px; text-align: center; }
.rlo__btn--wa { background: #1FA24E; }
.rlo__btn--wa:hover { background: #1a8b42; color: #fff; }
.rlo__btn--mail { background: #1c1c1c; border: 1px solid #333; }
.rlo__btn--mail:hover { background: #262626; color: #fff; }
@media (max-width: 560px) {
  .rlo { flex-direction: column; }
  .rlo__save { width: 100%; flex-direction: row; justify-content: center; gap: 12px; padding: 12px 18px; }
  .rlo__save-n { font-size: 34px; line-height: 1; }
  .rlo__save-word { font-size: 24px; }
  .rlo__save-s { margin-top: 0; }
  .rlo__body { padding: 20px 18px 22px; }
  .rlo__route { font-size: 26px; }
  .rlo__arrow { font-size: 22px; }
  .rlo__meta { gap: 18px; }
  .rlo__price { margin-left: 0; width: 100%; margin-top: 6px; }
  .rlo__new { font-size: 40px; }
  .rlo__cta { flex-direction: column; }
  .rlo__btn { padding: 13px; }
}
.offers-status { color: var(--gray-600); }
.offer-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-when { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.offer-meta { display: flex; flex-direction: column; gap: 2px; }
.offer-lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); font-weight: 700; }
.offer-date { font-weight: 700; color: var(--black); font-size: 0.98rem; }
.offer-window { color: #b8860b; font-weight: 700; font-size: 0.98rem; }
.offer-route { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--black); line-height: 1.2; }
.offer-route span { color: #999; font-size: 0.85rem; font-family: var(--font-body); font-weight: 400; }
.offer-note { font-size: 0.88rem; color: var(--gray-600); margin: 0; }
.offer-price { display: flex; align-items: baseline; gap: 10px; margin-top: 2px; }
.offer-orig { text-decoration: line-through; color: #999; font-size: 1rem; }
.offer-now { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--gold); }
.offer-seats { font-size: 0.8rem; color: var(--gray-600); }
.offer-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 6px; }
.offer-actions .btn { padding: 10px 14px; font-size: 0.85rem; flex: 1; text-align: center; }
/* Readable buttons on the light offers cards */
.offer-actions .btn-primary[href*="wa.me"] { background: #25d366; border-color: #25d366; color: #fff; }
.offer-actions .btn-primary[href*="wa.me"]:hover { background: #1fb457; border-color: #1fb457; color: #fff; }
.offer-actions .btn-secondary { background: var(--black); color: var(--white); border-color: var(--black); }
.offer-actions .btn-secondary:hover { background: #000; color: var(--white); }
.offers-empty-cta { margin-top: 28px; color: var(--gray-600); }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  max-width: 560px;
  background: var(--dark);
  color: var(--gray-200);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Let the `hidden` attribute actually hide the banner: the class rule above
   otherwise overrides the browser's default [hidden]{display:none}. */
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.86rem; margin: 0; line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 9px 20px; font-size: 0.85rem; }
@media (min-width: 600px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-actions { flex-shrink: 0; }
}
