/* ================================================
   ISTANBUL BLUE TRANSFER — Main Stylesheet
   Aesthetic: Refined Maritime Luxury
   ================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #1a3356;

  /* Accent blue (replaces gold) */
  --gold: #2d8ae0;
  --gold-light: #5ca8f0;
  --gold-pale: #ddeeff;

  /* CTA green */
  --green: #1a9e5c;
  --green-dark: #14834b;
  --green-light: #22c46e;
  --shadow-green: 0 4px 20px rgba(26,158,92,0.3);

  --blue: #1e6cb4;
  --blue-bright: #2d8ae0;
  --white: #ffffff;
  --off-white: #f4f6fa;
  --gray-100: #eef0f4;
  --gray-200: #d4d8e0;
  --gray-400: #94989e;
  --gray-600: #636670;
  --text-dark: #111827;
  --text-mid: #3d4352;

  --ff-display: 'Inter', 'DM Sans', system-ui, sans-serif;
  --ff-body: 'DM Sans', 'Inter', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(45,138,224,0.25);

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.nav-container .logo { flex-shrink: 0; }
.nav-container .nav-cta { margin-left: auto; flex-shrink: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-brand {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
}
.dropdown li a:hover { background: rgba(45,138,224,0.1); color: var(--gold-light); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem !important;
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-green); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  position: relative;
  z-index: 10000;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Hamburger → ✕ animation when menu open */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(30,108,180,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45,138,224,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #050e1f 0%, #0a1628 40%, #0d2244 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
}
.hero-mobile-header { display: none; }
.hero-booking-wrap {
  position: relative;
}
.hero-inline-booking {
  box-shadow: 0 24px 64px rgba(0,0,0,0.35) !important;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-sub {
  max-width: 480px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.hero-badge svg { opacity: 0.65; }

/* ── Social Proof Bar ── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.hero-proof-stars {
  color: #f4b740;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.hero-proof-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
}
.hero-proof-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
}

/* ── Hero Micro-copy (mobile replacement for hero-sub) ── */
.hero-micro {
  display: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* ── Booking Trust Strip (SVG icons) ── */
.booking-trust-strip {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.85rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: var(--off-white, #f4f6fa);
  border: 1px solid var(--gray-100, #eef0f4);
  transition: all 0.2s ease;
}
.trust-item:hover {
  background: #edf4fc;
  border-color: rgba(30,108,180,0.15);
}
.trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue, #1e6cb4);
  flex-shrink: 0;
  opacity: 0.8;
}
.trust-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--navy, #0a1628);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ── Price Hint ── */
.price-hint {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--gray-200, #e5e7eb);
}
.price-hint-label {
  font-size: 0.7rem;
  color: var(--text-mid, #3d4352);
  font-weight: 400;
}
.price-hint-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green, #14834b);
  letter-spacing: -0.02em;
}
.price-hint-detail {
  font-size: 0.65rem;
  color: var(--gray-400, #94989e);
  font-weight: 400;
}

/* ── Google Reviews Components ── */
.rv-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100, #eef0f4);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.rv-card:hover { border-color: rgba(30,108,180,0.25); transform: translateY(-2px); }
.rv-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.rv-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 600;
  flex-shrink: 0; object-fit: cover;
}
.rv-meta { display: flex; flex-direction: column; gap: 2px; }
.rv-name { font-size: 0.8rem; font-weight: 600; color: var(--navy); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(30,108,180,0.3); }
.rv-stars { display: flex; gap: 1px; line-height: 1; }
.rv-text {
  font-size: 0.78rem; color: var(--text-mid, #3d4352);
  line-height: 1.55; margin: 0; font-style: italic;
}

/* Hero proof link (Google icon + stars clickable) */
.hero-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.hero-proof-link:hover { opacity: 0.8; }

/* Booking card reviews — single card slider */
.rv-booking-wrap {
  border-top: 1px solid var(--gray-200, #e5e7eb);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}
.rv-booking-header {
  display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem;
  text-decoration: none; color: inherit;
}
.rv-booking-header:hover { opacity: 0.8; }
.rv-booking-title { font-size: 0.75rem; font-weight: 600; color: var(--navy); }
.rv-booking-stars { display: flex; gap: 1px; margin-left: auto; }
.rv-booking-rating { font-size: 0.75rem; font-weight: 700; color: var(--navy); margin-left: 0.25rem; }
.rv-booking-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.rv-booking-scroll::-webkit-scrollbar { display: none; }
.rv-compact {
  min-width: 260px;
  max-width: 90%;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0.6rem 0.75rem;
  background: var(--off-white, #f4f6fa);
  border-color: var(--gray-100);
}
.rv-compact .rv-avatar { width: 28px; height: 28px; font-size: 11px; }
.rv-compact .rv-name { font-size: 0.75rem; }
.rv-compact .rv-text { font-size: 0.72rem; line-height: 1.4; }
.rv-booking-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}
.rv-booking-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200, #d1d5db);
  transition: background 0.2s;
}
.rv-booking-dots span.active {
  background: var(--blue, #1e6cb4);
  width: 16px;
  border-radius: 3px;
}

/* Full reviews section */
.reviews-section { background: var(--off-white, #f4f6fa); }
.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.rv-cta-wrap { text-align: center; margin-top: 2rem; }
.rv-cta-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--navy); background: var(--white);
  text-decoration: none;
  transition: all 0.2s ease;
}
.rv-cta-btn:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }


.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- BOOKING ---- */
.booking-section { display: none; }
.booking-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}
.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.booking-header h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}
.trip-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 100px;
  padding: 3px;
}
.trip-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.trip-btn.active { background: var(--navy); color: var(--white); }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: 1fr 1fr 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.input-icon-wrap { position: relative; }
.field-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--blue);
  pointer-events: none;
  z-index: 1;
}
/* Wrap text + clear btn together */
.input-icon-wrap input[type="text"],
.input-icon-wrap select {
  width: 100%;
  padding: 0.7rem 2.25rem 0.7rem 2.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.input-icon-wrap input[type="hidden"] { padding: 0; }
/* ✕ clear button — inside the input, right side */
.inp-clear {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  transition: all 0.12s;
  z-index: 3;
  flex-shrink: 0;
}
.inp-clear:hover { background: #9ca3af; color: #fff; transform: translateY(-50%) scale(1.1); }
.inp-clear.visible { display: flex; }
.input-icon-wrap select:focus,
.input-icon-wrap input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,108,180,0.12);
}

/* ── Date+Time unified card ── */
.dt-card {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition);
}
.dt-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,108,180,0.12);
}
.dt-row { padding: 0; }
.dt-cal-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  color: #9ca3af;
  text-align: left;
  transition: color 0.15s;
}
.dt-cal-btn:focus { outline: none; }
.dt-cal-btn.has-date { color: var(--navy); font-weight: 700; }
.dt-divider { height: 1px; background: var(--gray-100); }
.dt-time-row { background: #f9fafb; }
.dt-time-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
}
.dt-time-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  flex-shrink: 0;
}
.dt-time-pickers {
  flex: 1;
  display: flex;
  align-items: center;
}
.dt-time-pickers .tp-wrap { width: 100%; }
.dt-time-pickers .tp-select {
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem 0.7rem 0.75rem;
  height: 44px;
  line-height: normal;
  overflow: visible;
  box-sizing: border-box;
  text-align: left;
  text-align-last: left;
}


/* ── Location fields (from/to) ── */
.loc-field {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.loc-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,108,180,0.10);
}
.loc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.loc-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.7px;
}
.loc-icon-from svg { stroke: #1e6cb4; }
.loc-icon-to   svg { stroke: #16a34a; stroke-width: 1.7px; }
.loc-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gray-200);
}
.loc-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.82rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  font-family: inherit;
  min-width: 0;
}
.loc-input::placeholder {
  color: #a1a9b8;
  font-weight: 500;
}
.loc-field .inp-clear {
  position: static;
  transform: none;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.loc-field .inp-clear.visible { display: flex; }

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 1rem;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  border: 2px solid transparent;
}
.booking-submit:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.booking-submit svg { width: 18px; height: 18px; }
.booking-submit.is-loading {
  opacity: 0.75;
  cursor: wait;
  pointer-events: none;
}
.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ---- SECTIONS COMMONS ---- */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-desc { color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.7); }
.section-header.light .section-title em { color: #a8d4ff; }

/* ---- FLEET ---- */
.fleet-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.fleet-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--blue));
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
  position: relative;
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fleet-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.fleet-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}
.fleet-visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sedan-visual { background: linear-gradient(135deg, #0a1628 0%, #1a3356 100%); }
.van-visual { background: linear-gradient(135deg, #0f2040 0%, #1e6cb4 100%); }
.vip-visual { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%); }
.fleet-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}
/* Car silhouettes with CSS */
.car-silhouette { position: relative; }
.sedan-shape {
  width: 140px;
  height: 50px;
  background: rgba(255,255,255,0.12);
  border-radius: 30px 30px 5px 5px;
  position: relative;
}
.sedan-shape::before {
  content: '';
  position: absolute;
  top: -28px; left: 20px;
  width: 100px; height: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px 20px 0 0;
}
.sedan-shape::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 15px;
  width: 110px; height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 0 8px 8px;
}
.van-shape {
  width: 150px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
}
.van-shape::before {
  content: '';
  position: absolute;
  top: -20px; left: 5px;
  width: 140px; height: 25px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px 6px 0 0;
}
.vip-shape {
  width: 160px;
  height: 65px;
  background: linear-gradient(135deg, rgba(45,138,224,0.2), rgba(255,255,255,0.08));
  border-radius: 8px;
  border: 1px solid rgba(45,138,224,0.3);
}
.fleet-info { padding: 1.25rem; }
.fleet-info h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.fleet-model { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 1rem; }
.fleet-specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy, #0a1628);
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  background: var(--off-white, #f4f6fa);
  border: 1px solid var(--gray-100, #eef0f4);
}
.spec-pill svg { stroke: var(--blue, #1e6cb4); flex-shrink: 0; opacity: 0.75; }
.fleet-price {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.fleet-price strong { font-size: 1.3rem; color: var(--green); font-family: var(--ff-display); }
.fleet-btn {
  display: block;
  text-align: center;
  padding: 0.7rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all var(--transition);
}
.fleet-btn:hover { background: var(--blue-bright); color: var(--white); }
.fleet-card.featured .fleet-btn { background: var(--blue); color: var(--white); }
.fleet-card.featured .fleet-btn:hover { background: var(--blue-bright); color: var(--white); }

/* ---- TOURS ---- */
.tours-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.tours-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,108,180,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.tour-card:hover { transform: translateY(-4px); border-color: rgba(45,138,224,0.3); }
.tour-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tour-img-1 {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d2244 100%);
  background-image: url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?w=600&q=80');
  background-size: cover;
  background-position: center;
}
.tour-img-2 {
  background: linear-gradient(135deg, #0d3b5e 0%, #1e6cb4 100%);
  background-image: url('https://images.unsplash.com/photo-1527838832700-5059252f4b5d?w=600&q=80');
  background-size: cover;
  background-position: center;
}
.tour-img-3 {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 100%);
  background-image: url('https://images.unsplash.com/photo-1583422409516-2895a77efded?w=600&q=80');
  background-size: cover;
  background-position: center;
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.tour-duration {
  font-size: 0.75rem;
  color: #a8d4ff;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.tour-content { padding: 1.25rem; }
.tour-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}
.tour-content h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.tour-content p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1rem; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; }
.tour-price { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.tour-price strong { font-size: 0.95rem; color: #a8d4ff; }
.tour-link { font-size: 0.82rem; color: var(--gold-light); font-weight: 600; transition: color var(--transition); }
.tour-link:hover { color: #a8d4ff; }
.tours-cta { text-align: center; margin-top: 3rem; }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-green); }

/* ---- LOCATIONS / TABS ---- */
.locations-section { background: var(--off-white); }
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.routes-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn svg { width: 16px; height: 16px; }
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.route-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(30,108,180,0.2); }
.route-header { display: flex; flex-direction: column; gap: 0.2rem; }
.route-from {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-weight: 600;
}
.route-arrow { color: var(--blue); font-size: 1rem; padding: 0.1rem 0; }
.route-to {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--ff-display);
}
.route-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.route-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.route-link-info {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.route-link-info:hover { border-color: var(--blue); color: var(--blue); }
.route-link{display:block;width:100%;background:var(--green,#1a9e5c);color:#fff !important;font-weight:700;font-size:.85rem;padding:.6rem;border-radius:8px;text-align:center;margin-top:auto;transition:background .2s;cursor:pointer}
.route-link:hover{background:var(--green-dark,#14834b) !important}
.tab-more {
  text-align: center;
  margin-top: 2rem;
}
.tab-more a {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.tab-more a:hover { border-color: var(--blue); }

/* ---- WHY US ---- */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-eyebrow { margin-bottom: 0.75rem; display: block; }
.why-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.why-text h2 em { font-style: italic; color: var(--blue); }
.why-text p { color: var(--text-mid); line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.why-item:hover { border-color: rgba(30,108,180,0.15); background: var(--white); }
.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fa8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.why-icon svg { stroke: #fff; }
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ---- REVIEWS ---- */
.reviews-section { background: var(--off-white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--blue);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #ddeeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--navy); }
.review-author span { font-size: 0.75rem; color: var(--gray-400); }

/* ---- FAQ ---- */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
  gap: 1rem;
}
.faq-q::after { content: none; display: none; }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  user-select: none;
}
.faq-icon::before { content: '+'; }
.faq-item.open .faq-icon { transform: rotate(45deg); }


.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); }
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-social a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr 400px; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 0;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 64px 1rem 2rem;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    order: 1;
  }
  .hero-booking-wrap {
    max-width: 100%;
    order: 2;
  }
}
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .three-col { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  input, select, textarea, .loc-input { font-size: 16px !important; }

  /* ── Compact Header (72→48px) ── */
  .nav-container { height: 48px; }
  .logo-icon { width: 22px; height: 22px; }
  .logo-brand { font-size: 1rem; }
  .logo-sub { font-size: 0.55rem; letter-spacing: 0.15em; }
  .site-header { padding: 0 1rem; }
  .nav-cta { display: flex; font-size: 0.65rem; padding: 0.32rem 0.65rem !important; letter-spacing: 0; }
  .hamburger { display: none; }

  /* ── Hamburger menü (açıldığında) ── */
  .nav-links {
    display: none;
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 9999;
    transform: none !important;
    padding: 2rem;
  }
  .nav-links.open { display: flex !important; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.9); }
  .nav-links .has-dropdown .dropdown { display: none; }
  .nav-links .has-dropdown > a::after { content: ''; }

  /* ── Hero ── */
  .hero-title { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  /* Badges & micro removed — trust info now in booking-trust-strip */
  .hero-badges, .hero-micro { display: none; }
  /* SEO: sr-only so Google indexes the keyword-rich text */
  .hero-sub {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
  .hero-proof { display: none; }
  .hero-title { display: none; }
  .hero-sub { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }

  /* Mobile compact header above booking card */
  .hero-mobile-header {
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .hero-mobile-header h1 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.2rem;
    line-height: 1.2;
  }
  .hero-mobile-header p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.02em;
  }

  /* Trust strip compact on mobile */
  .booking-trust-strip { gap: 0.2rem; }
  .trust-item { padding: 0.3rem 0.45rem; }
  .trust-item svg { width: 13px; height: 13px; }
  .trust-item span { font-size: 0.62rem; }

  /* Detail trigger mobile */
  .detail-trigger { font-size: 0.72rem; padding: 0.5rem 0.6rem; gap: 0.3rem; }
  .detail-trigger-item svg { width: 12px; height: 12px; }
  .detail-trigger-sep { font-size: 0.6rem; }

  /* Wizard popup mobile */
  .wiz-ti-inp { width: 56px; height: 46px; font-size: 1.3rem; }
  .wiz-ti-sep { font-size: 1.3rem; }
  .wiz-pax-minus, .wiz-pax-plus { width: 40px; height: 40px; font-size: 1.1rem; }
  .wiz-pax-num { font-size: 1.6rem; }
  .wiz-confirm { font-size: 0.82rem; padding: 0.6rem; }

  /* ── Click-to-call button (mobile only) ── */
  .nav-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    margin-left: auto;
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  .nav-call svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

  /* hero padding adjust for shorter header */
  .hero-content { padding-top: 64px !important; max-width: 100%; overflow: hidden; }
  .hero-booking-wrap { max-width: 100%; overflow: hidden; }

  .booking-card { padding: 1.25rem 1rem 1rem; }
  .booking-header h2 { display: none; }
  .booking-header { gap: 0.5rem; align-items: flex-start; }
  .two-col { grid-template-columns: 1fr; }
  .booking-card .two-col { grid-template-columns: 1fr 1fr; }
  .booking-card .three-col { grid-template-columns: 1fr 1fr 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }

  /* ── Reviews mobile ── */
  .rv-grid { grid-template-columns: 1fr; }
  .rv-booking-scroll { gap: 0.4rem; }
  .rv-compact { min-width: 85%; max-width: 92%; }
  .rv-cta-btn { font-size: 0.78rem; padding: 0.6rem 1.2rem; }


  .fleet-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .location-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 0.5rem; flex-wrap: nowrap; }
  .routes-tabs { display: flex; flex-wrap: nowrap; gap: 0.35rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.3rem; }
  .routes-tabs .tab-btn { flex: 1 1 0; min-width: 0; padding: 0.5rem 0.4rem; font-size: 0.75rem; justify-content: center; text-align: center; }
  .routes-tabs .tab-btn svg { width: 14px; height: 14px; }
  .routes-grid { grid-template-columns: 1fr; }
  .section-container { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .three-col { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-stats { gap: 0.75rem; }
  .stat-divider { display: none; }
}

/* Booking widget inside hero */
.hero-booking-wrap .booking-card {
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
}


/* ---- HERO TRUST ROW — visible on dark bg ---- */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0;
  margin-top: 2rem;
  flex-direction: column;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  line-height: 1.4;
}
.hero-trust-icon {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: white;
  font-weight: 700;
}

/* ---- ROUND TRIP BADGE on toggle ---- */
.trip-btn[data-trip="roundtrip"] .discount-badge,
#btnRoundtrip .discount-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 100px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* ---- ROUND TRIP DISCOUNT NOTE ---- */
.roundtrip-note {
  display: none;
  background: rgba(26,158,92,0.08);
  border: 1px solid rgba(26,158,92,0.25);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 500;
  text-align: center;
}


/* ---- FIX: booking form grid — always 2 cols, prevent shift ---- */
.booking-card .three-col {
  grid-template-columns: 1fr 1fr 1fr;
}
.booking-card .form-field#returnDateField {
  display: none;
}
.booking-card .form-field#returnDateField.show {
  display: flex;
}

/* hero booking shadow */
.hero-booking-wrap .booking-card {
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
}


/* ---- FLEET REAL PHOTOS ---- */
.fleet-visual {
  height: 200px !important;
}
.fleet-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.45) 0%, rgba(10,22,40,0.05) 60%, transparent 100%);
  pointer-events: none;
}
.fleet-visual .fleet-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
}

/* Return date row — hidden by default, shown when roundtrip active */
#returnDateRow {
  display: none !important;
}
#returnDateRow.rt-visible {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}


/* ========= FLEET BUTTON & PRICE FORCED OVERRIDES ========= */
.fleet-btn,
a.fleet-btn {
  background: #1e6cb4 !important;
  color: #ffffff !important;
}
.fleet-btn:hover,
a.fleet-btn:hover {
  background: #2d8ae0 !important;
  color: #ffffff !important;
}
.fleet-price strong {
  color: #1a9e5c !important;
}

/* ========================================================
   CURRENCY TOGGLE + PRICE PREVIEW
   ======================================================== */

.booking-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.booking-header-top h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
}
.currency-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.currency-btn {
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--ff-body);
  letter-spacing: 0.02em;
}
.currency-btn.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 4px rgba(30,108,180,0.3);
}

/* ── Price preview panel ── */
.price-preview {
  background: #f0f7ff;
  border: 1.5px solid rgba(30,108,180,0.2);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
}
.price-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
}
.price-preview-currency {
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.price-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.price-preview-item {
  background: var(--white);
  border: 1px solid rgba(30,108,180,0.12);
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  text-align: center;
}
.ppv-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}
.ppv-price {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.price-preview-note {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Loading spinner ── */
.price-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}
.price-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Price error ── */
.price-error {
  background: #fff5f5;
  border: 1px solid rgba(220,50,50,0.2);
  color: #b91c1c;
  font-size: 0.8rem;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

/* ── Currency wrap + live rate badge ── */
.currency-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.live-rate-badge {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 3px;
}
.live-rate-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

/* ── Google Places Autocomplete ── */
.pac-container {
  font-family: 'DM Sans', system-ui, sans-serif !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(10,22,40,0.18), 0 2px 8px rgba(10,22,40,0.08) !important;
  margin-top: 8px !important;
  padding: 6px !important;
  overflow: hidden !important;
  z-index: 999999 !important;
}
.pac-container::after {
  display: none !important;
  height: 0 !important;
}
.pac-item {
  font-family: 'DM Sans', system-ui, sans-serif !important;
  padding: 10px 12px !important;
  font-size: 13px !important;
  color: #3d4352 !important;
  border-top: 1px solid #f0f3f8 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
  line-height: 1.45 !important;
  display: flex !important;
  align-items: center !important;
}
.pac-item:first-child { border-top: none !important; }
.pac-item:hover,
.pac-item.pac-item-selected,
.pac-item:focus {
  background: #f0f7ff !important;
  color: #0a1628 !important;
}
.pac-item-query {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0a1628 !important;
  padding-right: 4px !important;
}
.pac-icon {
  width: 22px !important;
  height: 22px !important;
  margin-right: 8px !important;
  margin-top: 0 !important;
  background-color: #e8f2ff !important;
  background-image: none !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  position: relative !important;
}
.pac-icon-marker {
  background-color: #1e6cb4 !important;
  background-image: none !important;
}
.pac-icon::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important; height: 8px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
}
.pac-matched {
  color: #1e6cb4 !important;
  font-weight: 700 !important;
}

/* ── Quick pick airport buttons ── */
.quick-picks {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
  flex-wrap: wrap;
}
.quick-pick-btn {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--ff-body);
  letter-spacing: 0.02em;
}
.quick-pick-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f0f7ff;
}
.quick-pick-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}


/* ── Manage My Booking nav butonu ── */
.nav-call { display: none; }
.nav-cta-manage {
  background: var(--green, #16a34a) !important;
  color: #fff !important;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1.1rem !important;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-cta-manage:hover {
  background: #15803d !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,0.35) !important;
}

}


.route-price-from{font-size:1.1rem;font-weight:400;color:var(--gray-600,#636670);margin-bottom:.5rem}
.route-price-from strong{font-size:1.4rem;font-weight:700;color:var(--green,#1a9e5c)}
.route-footer{display:flex;justify-content:space-between;align-items:center;margin-top:.5rem;padding-top:.5rem;border-top:1px solid var(--gray-100,#eef0f4)}
.route-link-rt{font-size:.75rem;color:var(--green,#1a9e5c);font-weight:600;cursor:pointer;transition:opacity .2s;white-space:nowrap}
.route-link-rt:hover{opacity:.75}
.route-link-details{font-size:.75rem;color:var(--gray-400,#94989e);transition:color .2s;white-space:nowrap;margin-left:auto;padding-left:.75rem;text-decoration:none}
.route-link-details:hover{color:var(--blue,#1e6cb4)}

/* Trust badges */
.booking-trust { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; margin-top: 1rem; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.trust-badge { display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.25rem; flex: 1; min-width: 140px; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-badge:last-child { border-right: none; }
.tb-icon { font-size: 1.2rem; flex-shrink: 0; }
.trust-badge > div { display: flex; flex-direction: column; gap: 0; }
.tb-title { font-size: 0.78rem; font-weight: 700; color: #fff; line-height: 1.2; }
.tb-sub { font-size: 0.67rem; color: rgba(255,255,255,0.45); line-height: 1.2; }
@media(max-width:600px) { .trust-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); } .trust-badge:last-child { border-bottom: none; } }
