/* ============================================================
   CITY WHEELS — styles.css
   Palette: #F1F5F9 (light bg) | #2563EB (accent blue)
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --accent:        #2563EB;
  --accent-hover:  #1D4ED8;
  --accent-light:  #EFF6FF;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.25s ease;
  --font-head:     'Plus Jakarta Sans', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
}

[data-theme="light"] {
  --bg:            #F1F5F9;
  --bg-card:       #FFFFFF;
  --bg-section:    #E8EEF6;
  --bg-input:      #FFFFFF;
  --text-primary:  #0F172A;
  --text-secondary:#475569;
  --text-muted:    #94A3B8;
  --border:        #CBD5E1;
  --border-focus:  #2563EB;
  --header-bg:     rgba(241,245,249,0.95);
  --footer-bg:     #0F172A;
  --footer-text:   #CBD5E1;
  --footer-muted:  #64748B;
  --badge-bg:      #DBEAFE;
  --badge-text:    #1E40AF;
  --overlay:       rgba(15,23,42,0.10);
  --cookie-bg:     #1E293B;
  --cookie-text:   #F1F5F9;
}

[data-theme="dark"] {
  --bg:            #0F172A;
  --bg-card:       #1E293B;
  --bg-section:    #162032;
  --bg-input:      #1E293B;
  --text-primary:  #F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:    #64748B;
  --border:        #334155;
  --border-focus:  #3B82F6;
  --header-bg:     rgba(15,23,42,0.97);
  --footer-bg:     #020617;
  --footer-text:   #94A3B8;
  --footer-muted:  #475569;
  --badge-bg:      #1E3A8A;
  --badge-text:    #BFDBFE;
  --overlay:       rgba(0,0,0,0.10);
  --cookie-bg:     #1E293B;
  --cookie-text:   #F1F5F9;
}

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

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition), color var(--transition);
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw + .5rem, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw + .5rem, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw + .3rem, 1.4rem); font-weight: 700; }
h4 { font-size: clamp(1rem, 1.5vw + .2rem, 1.15rem); font-weight: 600; }

p {
  color: var(--text-secondary);
  font-size: clamp(.9rem, 1vw + .3rem, 1rem);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

/* ── Section Base ── */
.section {
  padding-block: clamp(48px, 7vw, 96px);
}

.section--alt {
  background-color: var(--bg-section);
}

.section-label {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: clamp(.7rem, .8vw + .3rem, .8rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  margin-bottom: clamp(8px, 1.5vw, 16px);
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 64px);
}

.section-head p {
  margin-top: .5rem;
  max-width: 600px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered p {
  margin-inline: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: clamp(10px,1.2vw,14px) clamp(20px,2.5vw,32px);
  font-size: clamp(.85rem, 1vw + .2rem, 1rem);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  padding: clamp(9px,1.1vw,13px) clamp(18px,2.2vw,28px);
  font-size: clamp(.85rem, 1vw + .2rem, 1rem);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  padding: clamp(9px,1.1vw,13px) clamp(18px,2.2vw,28px);
  font-size: clamp(.85rem, 1vw + .2rem, 1rem);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.22);
}

.btn-sm {
  padding: clamp(6px,.8vw,9px) clamp(12px,1.5vw,18px);
  font-size: clamp(.78rem, .9vw + .2rem, .875rem);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: clamp(56px, 5vw + 44px, 72px);
  display: flex;
  align-items: center;
  transition: background var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 24px);
  height: 100%;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  flex-shrink: 0;
  text-decoration: none;
}

.hdr-logo svg {
  width: clamp(28px, 3vw + 16px, 40px);
  height: clamp(28px, 3vw + 16px, 40px);
  flex-shrink: 0;
}

.hdr-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(.95rem, 1.5vw + .3rem, 1.3rem);
  color: var(--text-primary);
  white-space: nowrap;
}

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

/* Nav */
.hdr-nav {
  display: none;
  align-items: center;
  gap: clamp(4px, 1.5vw, 8px);
}

.hdr-nav a {
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  font-weight: 500;
  color: var(--text-secondary);
  padding: clamp(4px,.5vw,6px) clamp(8px,1vw,12px);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.hdr-nav a:hover,
.hdr-nav a.active {
  color: var(--accent);
  background: var(--accent-light);
}

/* Header controls */
.hdr-controls {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 14px);
  flex-shrink: 0;
}

/* Theme toggle */
.theme-toggle {
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* CTA in header */
.site-header .hdr-cta {
  display: none;
}

/* Hamburger */
.hdr-burger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: background var(--transition);
}

.hdr-burger:hover {
  background: var(--accent-light);
}

.hdr-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.hdr-drawer {
  display: none;
  position: fixed;
  top: clamp(56px, 5vw + 44px, 72px);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: clamp(16px, 4vw, 32px) clamp(16px, 4vw, 40px);
  z-index: 999;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}

.hdr-drawer.open {
  display: flex;
}

.hdr-drawer a {
  display: block;
  font-size: clamp(1rem, 2vw + .4rem, 1.15rem);
  font-weight: 600;
  color: var(--text-primary);
  padding: clamp(12px, 2vw, 16px) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

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

.hdr-drawer .btn {
  margin-top: clamp(16px, 3vw, 24px);
  width: 100%;
  justify-content: center;
}

/* Breakpoints: 768px — show CTA */
@media (min-width: 768px) {
  .site-header .hdr-cta {
    display: inline-flex;
  }
  .hdr-drawer a {
    font-size: clamp(.95rem, 1.5vw + .3rem, 1.1rem);
  }
}

/* Breakpoints: 1023px — full nav */
@media (min-width: 1023px) {
  .hdr-nav {
    display: flex;
  }
  .hdr-burger {
    display: none;
  }
  .hdr-drawer {
    display: none !important;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(520px, 70vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(48px, 8vw, 96px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: rgba(37,99,235,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37,99,235,.3);
  color: #fff;
  font-size: clamp(.7rem, .8vw + .25rem, .8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35em .9em;
  border-radius: 100px;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #34D399;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  max-width: 720px;
}

.hero h1 span {
  color: #60A5FA;
}

.hero-sub {
  color: rgba(255,255,255,.88) !important;
  font-size: clamp(.95rem, 1.5vw + .3rem, 1.15rem) !important;
  max-width: 560px;
  margin-top: clamp(10px, 1.5vw, 16px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 16px);
  margin-top: clamp(24px, 3.5vw, 40px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 40px);
  margin-top: clamp(32px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw + .5rem, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat span {
  color: rgba(255,255,255,.7);
  font-size: clamp(.75rem, .8vw + .2rem, .85rem);
  margin-top: .2em;
}

/* ── Quick Book Strip ── */
.quick-book {
  background: var(--accent);
  padding-block: clamp(20px, 3vw, 32px);
  position: relative;
  z-index: 10;
}

.quick-book-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.quick-book-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: clamp(.9rem, 1.2vw + .2rem, 1rem);
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-book-form {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.2vw, 12px);
  flex: 1;
  min-width: 0;
}

.quick-book-form select,
.quick-book-form input[type="date"] {
  flex: 1;
  min-width: clamp(100px, 20vw, 160px);
  padding: clamp(8px, 1vw, 11px) clamp(10px, 1.2vw, 14px);
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: clamp(.8rem, .9vw + .2rem, .9rem);
  outline: none;
  backdrop-filter: blur(4px);
}

.quick-book-form select option {
  background: #1E293B;
  color: #F1F5F9;
}

.quick-book-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: .7;
}

.quick-book-form .btn {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .quick-book-inner { flex-direction: column; align-items: stretch; }
  .quick-book-form  { flex-direction: column; }
  .quick-book-form select,
  .quick-book-form input[type="date"] { width: 100%; min-width: 0; }
  .quick-book-form .btn { width: 100%; justify-content: center; }
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2.5vw, 28px);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 14px);
}

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

.service-icon {
  width: clamp(40px, 5vw, 52px);
  height: clamp(40px, 5vw, 52px);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: clamp(20px, 2.5vw, 26px);
  height: clamp(20px, 2.5vw, 26px);
  color: var(--accent);
}

[data-theme="dark"] .service-icon {
  background: rgba(37,99,235,.15);
}

.service-card h3 {
  font-size: clamp(.95rem, 1.2vw + .3rem, 1.1rem);
}

.service-card p {
  font-size: clamp(.8rem, .9vw + .2rem, .9rem);
  flex: 1;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: .3em;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(.85rem, 1vw + .2rem, .95rem);
  margin-top: auto;
}

/* ── Fleet Section ── */
.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 10px);
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.fleet-tab {
  padding: clamp(7px, 1vw, 10px) clamp(14px, 2vw, 22px);
  border-radius: 100px;
  font-size: clamp(.78rem, .9vw + .2rem, .875rem);
  font-weight: 600;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.fleet-tab:hover,
.fleet-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

@media (min-width: 768px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: none;
}

.fleet-card.visible {
  display: flex;
  flex-direction: column;
}

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

.fleet-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.04);
}

.fleet-card-body {
  padding: clamp(12px, 2vw, 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
  flex: 1;
}

.fleet-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4em;
}

.fleet-badge {
  display: inline-block;
  padding: .2em .6em;
  border-radius: 4px;
  font-size: clamp(.68rem, .7vw + .2rem, .75rem);
  font-weight: 600;
  background: var(--badge-bg);
  color: var(--badge-text);
}

.fleet-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 10px);
  margin-top: .2em;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: .3em;
  font-size: clamp(.72rem, .8vw + .2rem, .8rem);
  color: var(--text-muted);
}

.fleet-spec svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--accent);
}

.fleet-card-price {
  display: flex;
  align-items: baseline;
  gap: .3em;
  margin-top: auto;
}

.fleet-card-price strong {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw + .3rem, 1.2rem);
  font-weight: 800;
  color: var(--accent);
}

.fleet-card-price span {
  font-size: clamp(.72rem, .8vw + .2rem, .8rem);
  color: var(--text-muted);
}

/* ── Photo Gallery ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.5vw, 16px);
}

@media (max-width: 599px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .photo-grid .photo-item:last-child {
    grid-column: span 2;
  }
}

.photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* ── Drivers Section ── */
.drivers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 768px) {
  .drivers-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.drivers-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 1.2vw, 14px);
}

.drivers-photo-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.drivers-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

.driver-feature {
  display: flex;
  gap: clamp(12px, 1.5vw, 18px);
  align-items: flex-start;
}

.driver-feature-icon {
  width: clamp(36px, 4vw, 46px);
  height: clamp(36px, 4vw, 46px);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .driver-feature-icon {
  background: rgba(37,99,235,.15);
}

.driver-feature-icon svg {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  color: var(--accent);
}

.driver-feature h4 {
  margin-bottom: .2em;
}

/* ── Transfer Section ── */
.transfer-routes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

@media (min-width: 768px) {
  .transfer-routes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

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

.route-from-to {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: clamp(.78rem, .9vw + .2rem, .875rem);
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.route-from-to strong {
  color: var(--text-primary);
  font-weight: 600;
}

.route-from-to .arrow {
  color: var(--accent);
}

.route-price {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.8vw + .3rem, 1.4rem);
  font-weight: 800;
  color: var(--accent);
}

.route-price span {
  font-size: clamp(.72rem, .8vw + .15rem, .8rem);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.route-info {
  font-size: clamp(.72rem, .8vw + .15rem, .8rem);
  color: var(--text-muted);
}

/* ── Corporate Section ── */
.corporate-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 1023px) {
  .corporate-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.corporate-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 18px);
}

.perk-card {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 22px);
  transition: border-color var(--transition);
}

.perk-card:hover {
  border-color: var(--accent);
}

.perk-card h4 {
  font-size: clamp(.85rem, 1vw + .2rem, .95rem);
  margin-bottom: .3em;
}

.perk-card p {
  font-size: clamp(.75rem, .85vw + .2rem, .85rem);
}

.perk-number {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw + .5rem, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: .2em;
}

/* ── Booking Form Section ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
}

@media (min-width: 1023px) {
  .booking-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.5vw, 28px);
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 18px);
  counter-reset: step;
}

.booking-step {
  display: flex;
  gap: clamp(12px, 1.5vw, 18px);
  align-items: flex-start;
  counter-increment: step;
}

.booking-step-num {
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(.8rem, .9vw + .2rem, .9rem);
  flex-shrink: 0;
}

.booking-step h4 { margin-bottom: .15em; }

.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3.5vw, 40px);
  box-shadow: var(--shadow-md);
}

.booking-form-wrap h3 {
  margin-bottom: clamp(16px, 2.5vw, 28px);
  font-size: clamp(1.1rem, 1.5vw + .3rem, 1.3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4em;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: clamp(.78rem, .85vw + .2rem, .875rem);
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(9px, 1.1vw, 12px) clamp(12px, 1.3vw, 16px);
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error-msg {
  font-size: clamp(.72rem, .8vw + .15rem, .78rem);
  color: #EF4444;
  display: none;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  margin-top: clamp(12px, 2vw, 20px);
  width: 100%;
  justify-content: center;
  gap: .5em;
}

.form-note {
  margin-top: .6em;
  font-size: clamp(.7rem, .75vw + .2rem, .78rem);
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 32px);
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: #10B981;
  margin-bottom: 1rem;
}

/* ── Testimonials ── */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

@media (min-width: 768px) {
  .testimonials-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 499px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 16px);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.review-stars svg {
  width: 15px;
  height: 15px;
}

.review-text {
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 12px);
}

.review-avatar {
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: clamp(.8rem, 1vw + .1rem, .95rem);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  color: var(--text-primary);
}

.review-country {
  font-size: clamp(.72rem, .8vw + .15rem, .78rem);
  color: var(--text-muted);
}

/* ── Map Section ── */
.map-section {
  background: var(--bg-section);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}

@media (min-width: 768px) {
  .map-layout {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.map-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}

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

.map-info {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
}

.contact-item {
  display: flex;
  gap: clamp(10px, 1.5vw, 16px);
  align-items: flex-start;
}

.contact-icon {
  width: clamp(38px, 4.5vw, 48px);
  height: clamp(38px, 4.5vw, 48px);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

[data-theme="dark"] .contact-icon {
  background: rgba(37,99,235,.15);
}

.contact-icon svg {
  width: clamp(18px, 2vw, 22px);
  height: clamp(18px, 2vw, 22px);
  color: var(--accent);
}

.contact-item h4 {
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: .15em;
}

.contact-item p,
.contact-item a {
  font-size: clamp(.85rem, 1vw + .2rem, .95rem);
  font-weight: 600;
  color: var(--text-primary);
  overflow-wrap: break-word;
  word-break: break-word;
}

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

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(.85rem, 1vw + .2rem, .95rem);
  color: var(--text-primary);
  transition: color var(--transition);
  user-select: none;
}

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

.faq-icon {
  width: clamp(20px, 2.5vw, 26px);
  height: clamp(20px, 2.5vw, 26px);
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.faq-item.open .faq-icon svg {
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a p {
  padding: 0 clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px);
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  padding-block: clamp(40px, 6vw, 72px) clamp(16px, 2.5vw, 24px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 10px);
  margin-bottom: clamp(10px, 1.5vw, 16px);
}

.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(.95rem, 1.2vw + .3rem, 1.15rem);
  color: var(--footer-text);
}

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

.footer-desc {
  color: var(--footer-muted) !important;
  font-size: clamp(.78rem, .85vw + .2rem, .875rem) !important;
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h5 {
  font-size: clamp(.78rem, .85vw + .2rem, .875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--footer-text);
  margin-bottom: clamp(10px, 1.5vw, 16px);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, .8vw, 10px);
}

.footer-col ul li a {
  color: var(--footer-muted);
  font-size: clamp(.78rem, .85vw + .2rem, .875rem);
  transition: color var(--transition);
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: clamp(16px, 2vw, 24px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 1.5vw, 16px);
}

.footer-bottom p {
  color: var(--footer-muted) !important;
  font-size: clamp(.72rem, .8vw + .15rem, .8rem) !important;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 20px);
}

.footer-bottom-links a {
  color: var(--footer-muted);
  font-size: clamp(.72rem, .8vw + .15rem, .8rem);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: clamp(12px, 2vw, 24px);
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  max-width: 520px;
  background: var(--cookie-bg);
  color: var(--cookie-text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: clamp(16px, 2.5vw, 28px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255,255,255,.08);
  animation: slideUp .35s ease;
}

.cookie-banner.visible {
  display: flex;
}

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

.cookie-banner p {
  color: rgba(241,245,249,.75) !important;
  font-size: clamp(.8rem, .9vw + .2rem, .875rem) !important;
}

.cookie-banner p a {
  color: #60A5FA;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.2vw, 12px);
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
  padding: clamp(8px, 1vw, 11px) clamp(20px, 2.5vw, 28px);
  border-radius: var(--radius-sm);
  font-size: clamp(.8rem, .9vw + .2rem, .875rem);
  font-weight: 600;
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-accept:hover { background: var(--accent-hover); }

.cookie-decline {
  background: transparent;
  color: rgba(241,245,249,.6);
  padding: clamp(8px, 1vw, 11px) clamp(16px, 2vw, 20px);
  border-radius: var(--radius-sm);
  font-size: clamp(.8rem, .9vw + .2rem, .875rem);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.15);
  transition: all var(--transition);
  flex-shrink: 0;
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

/* ── Privacy / Cookies pages ── */
.legal-page {
  padding-block: clamp(40px, 6vw, 80px);
}

.legal-page h1 {
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.legal-meta {
  font-size: clamp(.78rem, .85vw + .2rem, .875rem);
  color: var(--text-muted);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.legal-section {
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.legal-section h2 {
  font-size: clamp(1.1rem, 1.5vw + .3rem, 1.3rem);
  margin-bottom: clamp(10px, 1.5vw, 16px);
  padding-bottom: .4em;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.legal-section h3 {
  font-size: clamp(.95rem, 1.2vw + .2rem, 1.05rem);
  margin-bottom: .4em;
  margin-top: clamp(12px, 1.5vw, 18px);
}

.legal-section p {
  margin-bottom: .6em;
}

.legal-section ul {
  list-style: disc;
  padding-left: clamp(16px, 2.5vw, 28px);
  display: flex;
  flex-direction: column;
  gap: .4em;
}

.legal-section ul li {
  font-size: clamp(.82rem, .9vw + .2rem, .9rem);
  color: var(--text-secondary);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── Utility ── */
.text-accent { color: var(--accent); }
.mt-auto { margin-top: auto; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}