/* ═══════════════════════════════════════════
   BUSES PULLMAN TUR — Design System
   Navy #1B2A4A | Maroon #8B1A2E
   Poppins headings | Open Sans body
   ═══════════════════════════════════════════ */

:root {
  --navy:       #1B2A4A;
  --navy-dark:  #121D33;
  --navy-light: #243761;
  --maroon:     #8B1A2E;
  --maroon-dark:#6E1424;
  --maroon-light:#A82138;
  --white:      #FFFFFF;
  --bg:         #F8FAFC;
  --bg-section: #F1F5F9;
  --text:       #0F172A;
  --muted:      #475569;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  16px;
  --transition: 200ms ease;
  --font-head:  'Poppins', sans-serif;
  --font-body:  'Open Sans', sans-serif;
  --max-w:      1280px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { max-width: 65ch; line-height: 1.75; }

.section-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--maroon);
  display: block;
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--muted); max-width: 52ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--maroon); outline-offset: 3px; }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(139,26,46,.3); }

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--bg); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ════════════════════════════════════════════ */
.announcement-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  padding: 10px 0;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.announcement-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.announcement-left svg { width: 14px; height: 14px; opacity: .8; }
.announcement-sep { opacity: .4; margin: 0 8px; }
.announcement-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.announcement-right svg { width: 14px; height: 14px; }
.announcement-right a { color: inherit; }
.announcement-right a:hover { color: var(--white); }

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.navbar { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img,
.site-logo .custom-logo { height: 66px !important; width: auto !important; display: block; max-width: none; filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(500%) hue-rotate(233deg) brightness(140%); transition: filter var(--transition); }
.site-logo .custom-logo:hover { filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(500%) hue-rotate(233deg) brightness(168%); }
.custom-logo-link { display: flex; align-items: center; }
.site-logo-text {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.site-logo-text span { color: var(--maroon); display: block; font-size: .6875rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}
.nav-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.nav-link:hover, .nav-link:focus-visible { background: var(--bg); color: var(--navy); }
.nav-item.open > .nav-link { background: var(--bg); color: var(--navy); }
.nav-item.open > .nav-link svg { transform: rotate(180deg); }

/* Nav link events — destacado */
.nav-link--events {
  background: linear-gradient(135deg, var(--maroon), #a01f37);
  color: var(--white) !important;
  border-radius: 20px;
  padding: 7px 14px;
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 8px rgba(139,26,46,.35);
  white-space: nowrap;
}
.nav-link--events:hover, .nav-link--events:focus-visible {
  background: linear-gradient(135deg, #a01f37, var(--maroon)) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139,26,46,.45);
}
.nav-link--events svg { width: 14px; height: 14px; }

/* Mobile nav events link */
.mobile-nav-events {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--maroon), #a01f37);
  border-radius: 10px;
  margin: 8px 0 4px;
  text-decoration: none;
}
.mobile-nav-events:hover { opacity: .9; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--bg); color: var(--navy); }

.navbar-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-login {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-head);
  transition: all var(--transition);
}
.btn-login svg { width: 16px; height: 16px; }
.btn-login:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}
.mobile-nav-close svg { width: 24px; height: 24px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .mobile-section-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 20px 0 8px;
  border: none;
}

/* ════════════════════════════════════════════
   HERO — Modern Hero-Centric (ui-ux-pro-max)
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-out both;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,29,51,.5) 0%, rgba(18,29,51,.85) 100%),
    linear-gradient(90deg, rgba(18,29,51,.9) 0%, rgba(18,29,51,.4) 60%, rgba(18,29,51,.1) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(139,26,46,.12) 100%);
  pointer-events: none;
}

/* Inner wrapper — no stretch, content stacks top-down */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hero-content {
  padding: 96px 0 36px;
  animation: heroFadeUp .8s ease-out both;
  width: 100%;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .container { display: flex; flex-direction: column; gap: 24px; }

/* Search immediately below text */
.hero-search-wrap { padding: 0 0 72px; }

/* Accent line before heading */
.hero-accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), rgba(139,26,46,0));
  border-radius: 2px;
  margin-bottom: -8px;
  animation: heroFadeUp .8s .1s ease-out both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  width: fit-content;
  animation: heroFadeUp .8s .05s ease-out both;
}
.hero-badge svg { width: 14px; height: 14px; color: #4ade80; }
.hero h1 {
  color: var(--white);
  max-width: 14ch;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  animation: heroFadeUp .8s .15s ease-out both;
  letter-spacing: -.02em;
}
.hero-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.125rem;
  max-width: 44ch;
  animation: heroFadeUp .8s .25s ease-out both;
}

/* ════════════════════════════════════════════
   SEARCH WIDGET
   ════════════════════════════════════════════ */
.search-widget-wrap {
  position: relative;
  z-index: 20;
}
.search-widget {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(18,29,51,.32), 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.95);
}

/* Navy header band */
.search-tabs {
  background: var(--navy);
  display: flex;
  gap: 4px;
  padding: 14px 32px 0;
  border-radius: 0;
}
.search-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  border: none;
  background: rgba(255,255,255,.1);
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition), color var(--transition);
}
.search-tab input[type="radio"] { accent-color: var(--maroon); width: 14px; height: 14px; cursor: pointer; }
.search-tab.active { background: var(--white); color: var(--navy); font-weight: 600; }
.search-tab:not(.active):hover { background: rgba(255,255,255,.18); color: var(--white); }

/* Fields grid */
.search-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  padding: 28px 32px 32px;
}
.search-field { display: flex; flex-direction: column; gap: 8px; }
.search-field label {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-field label svg { width: 12px; height: 12px; color: var(--maroon); }

/* Base input/select styles */
.search-field select,
.search-field input[type="date"] {
  width: 100%;
  height: 52px;
  padding: 0 40px 0 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Custom chevron arrow for selects */
.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Custom calendar icon for date input */
.search-field input[type="date"] {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B1A2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Stretch native picker indicator over full field — click anywhere opens calendar */
.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.search-field select:hover,
.search-field input[type="date"]:hover {
  border-color: rgba(27,42,74,.35);
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
}

/* Placeholder option color */
.search-field select option[value=""][disabled] { color: var(--muted); }

/* ── Custom Date Picker ── */
.datepicker-wrap { position: relative; width: 100%; }

.datepicker-trigger {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .9375rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  user-select: none;
}
.datepicker-trigger:hover { border-color: rgba(27,42,74,.35); }
.datepicker-trigger.open,
.datepicker-trigger:focus-visible {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
  outline: none;
}
.datepicker-trigger-placeholder { color: var(--muted); }
.datepicker-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--maroon);
  pointer-events: none;
  display: flex;
}

.datepicker-popup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  z-index: 300;
  padding: 16px;
  width: 300px;
  display: none;
}
.datepicker-popup.open { display: block; animation: dp-in .15s ease; }
@keyframes dp-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.datepicker-month-label {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  text-transform: capitalize;
  letter-spacing: -.01em;
}
.datepicker-nav {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  padding: 0;
}
.datepicker-nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.datepicker-dow {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.datepicker-day {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text);
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
  width: 100%;
}
.datepicker-day:hover:not(:disabled):not(.dp-selected) {
  background: rgba(27,42,74,.08);
  color: var(--navy);
}
.datepicker-day.dp-today:not(.dp-selected) {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
}
.datepicker-day.dp-selected {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}
.datepicker-day:disabled {
  color: rgba(0,0,0,.2);
  cursor: not-allowed;
}
.datepicker-day.dp-other { color: rgba(0,0,0,.18); }
.datepicker-clear {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 9px 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  font-family: inherit;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  text-align: center;
}
.datepicker-clear:hover { border-color: var(--maroon); color: var(--maroon); }

/* Validation error messages */
.search-field-error {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: #e53e3e;
  padding: 4px 10px;
  background: rgba(229,62,62,.08);
  border-left: 3px solid #e53e3e;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .2s ease, max-height .2s ease;
}
.search-field-error.visible {
  opacity: 1;
  max-height: 40px;
}
/* Red border on invalid field */
.search-field:has(.search-field-error.visible) select,
.search-field:has(.search-field-error.visible) input,
.search-field:has(.search-field-error.visible) .csel-trigger {
  border-color: #e53e3e !important;
}
/* Shake animation */
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.field-shake { animation: field-shake .35s ease; }

.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--navy);
  margin-bottom: 6px;
  align-self: flex-end;
  transition: all var(--transition);
  flex-shrink: 0;
}
.swap-btn svg { width: 16px; height: 16px; }
.swap-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.search-submit .btn {
  height: 52px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 10px;
  padding: 0 28px;
  box-shadow: 0 4px 16px rgba(139,26,46,.35);
}
.search-submit .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,46,.42);
}

/* ── Custom city select dropdown ── */
.csel-wrap {
  position: relative;
  width: 100%;
}

/* Trigger button — matches input height/style */
.csel-trigger {
  width: 100%;
  height: 52px;
  padding: 0 40px 0 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  position: relative;
}
.csel-trigger::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition);
}
.csel-trigger--open::after { transform: translateY(-50%) rotate(180deg); }
.csel-trigger svg { display: none; } /* hide inline chevron, use ::after instead */
.csel-val--chosen { color: var(--text); font-weight: 600; }
.csel-trigger:hover { border-color: rgba(27,42,74,.35); }
.csel-trigger--open,
.csel-trigger:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.1);
}

/* Dropdown panel — portal (appended to body, positioned by JS) */
.csel-panel {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(18,29,51,.18), 0 4px 16px rgba(0,0,0,.08);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.csel-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Search input */
.csel-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1.5px solid var(--border);
  color: var(--muted);
}
.csel-search {
  border: none;
  outline: none;
  flex: 1;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
}
.csel-search::placeholder { color: var(--muted); }

/* Options list */
.csel-list {
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.csel-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: .9375rem;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
}
.csel-opt:hover { background: rgba(27,42,74,.06); color: var(--navy); }
.csel-opt--selected { color: var(--maroon); font-weight: 600; }
.csel-opt--selected svg { color: var(--maroon); }

/* ════════════════════════════════════════════
   INFO STRIP
   ════════════════════════════════════════════ */
.info-strip { padding: 48px 0; background: var(--bg-section); }
.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.info-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Pet Friendly */
.info-card-pet {
  background: linear-gradient(145deg, #2D1B6E 0%, #1B2A4A 55%, #6E1424 100%);
  color: var(--white);
  padding: 32px 28px;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card-pet:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.info-card-body { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.info-card-eyebrow { font-size: .8125rem; color: rgba(255,255,255,.7); font-weight: 500; letter-spacing: .06em; }
.info-card-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
}
.info-card-text { font-size: .9375rem; color: rgba(255,255,255,.8); max-width: 22ch; line-height: 1.5; }
.info-card-deco-icon {
  position: absolute;
  top: 20px;
  right: 16px;
  opacity: .12;
}
.info-card-deco-icon svg { width: 90px !important; height: 90px !important; color: var(--white); }

/* Photo cards */
.info-card-photo {
  justify-content: flex-end;
  padding: 24px;
  cursor: pointer;
}
.info-card-staff { background: linear-gradient(135deg, #243761, #1B2A4A); }
.info-card-agency { background: linear-gradient(135deg, #8B1A2E, #6E1424); }

.info-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,29,51,.08) 0%, rgba(18,29,51,.55) 100%);
}
.info-card-photo-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.info-card-photo-icon { opacity: .75; }
.info-card-photo-icon svg { width: 32px !important; height: 32px !important; color: var(--white); }
.info-card-photo-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.92);
  font-weight: 600;
  max-width: 18ch;
  line-height: 1.35;
  margin: 0;
}

/* White card: Anulación */
.info-card-white {
  background: var(--white);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  transition: box-shadow var(--transition);
}
.info-card-white:hover { box-shadow: var(--shadow-lg); }
.info-card-white h3 { font-size: 1.5rem; color: var(--text); line-height: 1.2; }
.info-card-white p { color: var(--muted); font-size: .9375rem; max-width: 24ch; line-height: 1.6; margin: 0; }
.btn-anula {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-anula:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   PASAJERO FRECUENTE STEPS
   ════════════════════════════════════════════ */
.frecuente-section { background: var(--white); }
.frecuente-header { max-width: 720px; margin: 0 auto 64px; }
.frecuente-header h2 { margin-bottom: 16px; line-height: 1.25; }
.text-maroon { color: var(--maroon); }

.frecuente-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Connector line between step circles */
.frecuente-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.frecuente-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}

.step-number-wrap { position: relative; z-index: 1; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(27,42,74,.07);
}
.frecuente-step h4 { font-size: 1.0625rem; color: var(--text); line-height: 1.3; }
.frecuente-step p { color: var(--muted); font-size: .9375rem; max-width: 22ch; line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════
   FEATURE CARDS (home section below hero)
   ════════════════════════════════════════════ */
.feature-cards { padding: 48px 0; background: var(--bg); }
.feature-cards .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 220px;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card.navy { background: var(--navy); color: var(--white); }
.feature-card.maroon { background: var(--maroon); color: var(--white); }
.feature-card-icon { width: 48px; height: 48px; background: rgba(255,255,255,.15); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.feature-card-icon svg { width: 24px; height: 24px; color: var(--white); }
.feature-card h3 { color: var(--white); font-size: 1.25rem; }
.feature-card p { color: rgba(255,255,255,.8); font-size: .9375rem; max-width: 28ch; }
.feature-card .btn { margin-top: auto; width: fit-content; }
.feature-card-img {
  position: absolute;
  right: -24px;
  bottom: -16px;
  width: 160px;
  height: 160px;
  object-fit: contain;
  opacity: .2;
}

/* App stores */
.app-stores { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.app-store-btn:hover { background: rgba(255,255,255,.25); }
.app-store-btn svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════ */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.service-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.badge-semi { background: rgba(27,42,74,.1); color: var(--navy); }
.badge-salon { background: rgba(139,26,46,.1); color: var(--maroon); }
.badge-vip { background: linear-gradient(135deg, #B8860B20, #DAA52020); color: #92660A; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon.navy { background: var(--navy); }
.service-icon.maroon { background: var(--maroon); }
.service-icon.gold { background: linear-gradient(135deg, #B8860B, #DAA520); }
.service-icon svg { width: 28px; height: 28px; color: var(--white); }
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .9375rem; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  color: var(--muted);
}
.service-card li svg { width: 16px; height: 16px; color: #22c55e; flex-shrink: 0; }

/* ════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════ */
.stats-section { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-suffix { color: var(--maroon-light); }
.stat-label { color: rgba(255,255,255,.7); font-size: .9375rem; }

/* ════════════════════════════════════════════
   PAGE HERO (secondary pages)
   ════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,26,46,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .875rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.4); }
.page-hero p { color: rgba(255,255,255,.8); margin-top: 16px; font-size: 1.0625rem; max-width: 52ch; }

/* ════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p { color: var(--muted); max-width: none; }

.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.timeline-item { display: grid; grid-template-columns: 120px 40px 1fr; gap: 16px; align-items: start; padding-bottom: 32px; }
.timeline-year {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--maroon);
  text-align: right;
  padding-top: 2px;
}
.timeline-dot-wrap { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-line { flex: 1; width: 2px; background: var(--border); margin-top: 4px; }
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content h4 { margin-bottom: 6px; font-size: 1rem; }
.timeline-content p { color: var(--muted); font-size: .9375rem; max-width: none; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 22px; height: 22px; color: var(--white); }
.value-card h4 { margin-bottom: 6px; font-size: 1rem; }
.value-card p { color: var(--muted); font-size: .9375rem; max-width: none; }

/* ════════════════════════════════════════════
   FLEET PAGE
   ════════════════════════════════════════════ */
.fleet-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); }
.fleet-card.reverse { grid-template-columns: 1.2fr 1fr; }
.fleet-card.reverse .fleet-img { order: 1; }
.fleet-card.reverse .fleet-info { order: 0; }
.fleet-img { position: relative; min-height: 300px; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.fleet-info { padding: 40px 36px; display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.fleet-info h3 { font-size: 1.625rem; }
.fleet-info > p { color: var(--muted); }
.fleet-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.fleet-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  color: var(--text);
}
.fleet-feature svg { width: 16px; height: 16px; color: #22c55e; flex-shrink: 0; }

/* ════════════════════════════════════════════
   AGENCIES PAGE
   ════════════════════════════════════════════ */
.agencies-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--navy); color: var(--navy); background: rgba(27,42,74,.06); }
.filter-btn:focus-visible { outline: 3px solid var(--maroon); outline-offset: 2px; }

.agencies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.agency-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.agency-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.agency-city {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}
.agency-info { display: flex; flex-direction: column; gap: 6px; }
.agency-info span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--muted);
}
.agency-info svg { width: 14px; height: 14px; color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.agency-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.agency-phone svg { width: 14px; height: 14px; }
.agency-phone:hover { color: var(--maroon); }

/* ════════════════════════════════════════════
   CONDITIONS PAGE (tabs + accordion)
   ════════════════════════════════════════════ */
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-btn:hover { color: var(--navy); }
.tab-btn:focus-visible { outline: 3px solid var(--maroon); outline-offset: -3px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--bg); }
.accordion-trigger:focus-visible { outline: 3px solid var(--maroon); outline-offset: -3px; }
.accordion-trigger svg { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; transition: transform var(--transition); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.75;
  transition: max-height .28s ease, padding .28s ease;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  padding: 0 24px 20px;
}

/* ════════════════════════════════════════════
   RIGHTS & DUTIES PAGE
   ════════════════════════════════════════════ */
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.rights-col { display: flex; flex-direction: column; gap: 16px; }
.rights-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.rights-col-header.rights { background: rgba(27,42,74,.08); }
.rights-col-header.duties { background: rgba(139,26,46,.08); }
.rights-col-header h3 { font-size: 1.25rem; margin: 0; }
.rights-col-header svg { width: 24px; height: 24px; }
.rights-col-header.rights svg { color: var(--navy); }
.rights-col-header.duties svg { color: var(--maroon); }

.rights-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.rights-item:hover { border-color: var(--navy); }
.rights-item-icon { flex-shrink: 0; margin-top: 2px; }
.rights-item-icon svg { width: 18px; height: 18px; }
.rights-item-icon.check svg { color: #22c55e; }
.rights-item-icon.duty svg { color: var(--maroon); }
.rights-item p { font-size: .9375rem; color: var(--muted); max-width: none; margin: 0; }

/* ════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon.navy { background: var(--navy); }
.contact-card-icon.maroon { background: var(--maroon); }
.contact-card-icon.green { background: #16a34a; }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--white); }
.contact-card-info h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card-info p { color: var(--muted); font-size: .9375rem; margin: 0; max-width: none; line-height: 1.4; }
.contact-card-info strong { color: var(--text); }

/* Contact form */
.contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 28px; max-width: none; font-size: .9375rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.form-group label .required { color: var(--maroon); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-feedback { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .9375rem; font-weight: 500; display: none; }
.form-feedback.success { background: #f0fdf4; color: #166534; border: 1.5px solid #bbf7d0; display: block; }
.form-feedback.error { background: #fff1f2; color: #9f1239; border: 1.5px solid #fecdd3; display: block; }

/* Charter/Arriendo */
.charter-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.charter-feature {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
}
.charter-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.charter-feature-icon svg { width: 28px; height: 28px; color: var(--white); }
.charter-feature h4 { margin-bottom: 8px; font-size: 1.0625rem; }
.charter-feature p { color: var(--muted); font-size: .9375rem; max-width: none; text-align: center; }

/* ════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════ */
.cta-banner { background: var(--maroon); padding: 72px 0; }
.cta-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 48ch; margin: 0; }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span { color: rgba(255,255,255,.5); display: block; font-size: .6875rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9375rem; max-width: 28ch; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--maroon); color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .9375rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.4); max-width: none; margin: 0; }

/* ════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 40;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--maroon); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; transform: rotate(-90deg); }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards .container { grid-template-columns: 1fr 1fr; }
  .feature-cards .container > *:last-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .search-fields { grid-template-columns: 1fr auto 1fr 1fr 1fr; padding: 20px 24px 24px; gap: 12px; }
  .search-submit { grid-column: 1 / -1; }
  .search-submit .btn { width: 100%; }
  .search-tabs { padding: 12px 24px 0; }
  .info-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  .primary-nav { display: none; }
  .navbar-cta .btn-login { display: flex; font-size: .8rem; padding: 8px 12px; }
  .hamburger { display: flex; }

  .hero { min-height: 0; }
  .hero-content { padding: 72px 0 28px; }
  .hero-search-wrap { padding: 0 0 40px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(18,29,51,.6) 0%, rgba(18,29,51,.88) 100%); }
  .search-fields { grid-template-columns: 1fr; padding: 16px 20px 20px; gap: 12px; }
  .search-tabs { padding: 12px 20px 0; }
  .swap-btn { display: none; }

  .info-strip-grid { grid-template-columns: 1fr 1fr; }
  .info-card { min-height: 220px; }

  .frecuente-steps { flex-direction: column; align-items: center; gap: 40px; }
  .frecuente-steps::before { display: none; }
  .frecuente-step { padding: 0; max-width: 300px; }

  .feature-cards .container { grid-template-columns: 1fr; }
  .feature-cards .container > *:last-child { grid-column: auto; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .fleet-card, .fleet-card.reverse { grid-template-columns: 1fr; }
  .fleet-card .fleet-img, .fleet-card.reverse .fleet-img { min-height: 220px; order: 0; }
  .fleet-card.reverse .fleet-info { order: 1; }
  .fleet-features { grid-template-columns: 1fr; }

  .agencies-grid { grid-template-columns: 1fr 1fr; }
  .rights-grid { grid-template-columns: 1fr; }

  .charter-features { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .announcement-bar .container { justify-content: center; }
  .announcement-right { display: none; }
  .announcement-sep { display: none; }
  .announcement-secondary { display: none; }
  .announcement-left { justify-content: center; }

  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .agencies-grid { grid-template-columns: 1fr; }
  .info-strip-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 200px; }
  .search-widget { border-radius: var(--radius); }
  .tabs-nav { flex-wrap: wrap; }
}

/* ── Events Promo Section ── */
.events-promo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background photo slides */
.events-bg-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.events-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  transform: scale(1.04);
}
.events-bg--active {
  opacity: 1;
  animation: events-ken-burns 8s ease-in-out infinite alternate;
}
@keyframes events-ken-burns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Dark gradient overlay — darkens both sides so right card is readable */
.events-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 100% at 0% 50%, rgba(10,15,30,.94) 0%, transparent 65%),
    linear-gradient(90deg, rgba(10,15,30,.55) 0%, rgba(10,15,30,.45) 50%, rgba(10,15,30,.65) 100%);
}

/* width:100% neutralizes margin:auto centering inside flex parent */
.events-promo .container { position: relative; z-index: 2; width: 100%; }

/* 2-column grid: content left, visual card right */
.events-promo-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding: 80px 0;
}

.events-promo-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Right column — visual card */
.events-promo-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.events-right-card {
  background: rgba(10,15,30,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 8px 32px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
  color: var(--white);
}
.events-right-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFD166;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8125rem;
}
.events-right-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.events-right-stat:last-child { border-bottom: none; padding-bottom: 0; }
.events-right-stat-icon {
  width: 36px; height: 36px;
  background: rgba(255,209,102,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.events-right-stat-icon svg { width: 16px; height: 16px; color: #FFD166; }
.events-right-stat-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--white);
}
.events-right-stat-text span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.events-right-cta {
  background: #FFD166;
  color: #1B2A4A !important;
  font-weight: 800;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .9375rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  letter-spacing: .01em;
}
.events-right-cta:hover { transform: translateY(-2px); background: #ffe08a; box-shadow: 0 8px 32px rgba(0,0,0,.6); color: #1B2A4A !important; }
.events-right-cta svg { width: 16px; height: 16px; }
.events-slide { display: none; }
.events-slide--active { display: block; }

.events-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFD166;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.events-slide-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: #FFD166;
  border-radius: 2px;
  flex-shrink: 0;
}
.events-slide h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -.03em;
  max-width: 14ch;
}
.events-slide h2 span { color: #FFD166; }
.events-slide > p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 44ch;
  margin: 0 0 26px;
}
.events-slide-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 40ch;
}
.events-slide-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: .9375rem;
}
.events-slide-features li svg { color: #FFD166; flex-shrink: 0; }

/* CTA button */
.events-cta {
  display: inline-flex !important;
  background: var(--white);
  color: var(--navy) !important;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.events-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.45); color: var(--navy) !important; }
.events-cta svg { color: var(--maroon); }

/* Dots */
.events-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  padding: 0;
}
.events-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition);
}
.events-dot--active { background: #FFD166; width: 28px; border-radius: 4px; }

/* Responsive */
@media (max-width: 960px) {
  .events-promo-inner { grid-template-columns: 1fr; }
  .events-promo-right { display: none; }
}
@media (max-width: 480px) {
  .events-promo-inner { padding: 56px 0; }
  .events-slide h2 { font-size: 2.1rem; max-width: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
