:root {
  --bg: #ffffff;
  --surface: #f2f2f2;
  --footer-bg: #333333;
  --text-primary: #333333;
  --text-dark: #000000;
  --text-muted: #818181;
  --btn-dark: #323232;
  --white: #ffffff;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Helvetica Now Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --radius-sm: 8px;
  --radius-md: 24px;
  --radius-pill: 1000px;
  --page-max: 1728px;
  --page-pad: 40px;
  --section-gap: 200px;
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
}

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

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

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

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

.page-wrapper {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  padding: 20px var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.header-logo img,
.header-logo .logo-svg {
  height: 28px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-phone {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  height: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-primary);
  white-space: nowrap;
}

.btn-phone:hover {
  background: #e8e8e8;
}

.btn-reservar {
  display: flex;
  align-items: center;
  background: var(--btn-dark);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  height: 50px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-reservar:hover {
  background: #222;
}

/* ─── MAIN CONTENT ────────────────────────────────────── */
.site-main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) 40px;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1648 / 917;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  pointer-events: none;
}

.hero-text {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 68px;
  line-height: 60px;
  letter-spacing: -2.7px;
  color: var(--white);
  max-width: 560px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 68px;
  line-height: 60px;
  letter-spacing: -2.7px;
  color: var(--white);
  text-align: right;
  max-width: 400px;
}

/* ─── MEET AVENUE ─────────────────────────────────────── */
.meet-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: var(--text-muted);
}

.meet-body {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  color: var(--text-muted);
  max-width: 1170px;
}

.meet-body-highlight {
  color: var(--text-primary);
}

/* ─── SERVICES ────────────────────────────────────────── */
.services-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 251px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 42px;
  color: var(--text-primary);
}

.service-card-body {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--text-primary);
}

/* ─── LOCATIONS ───────────────────────────────────────── */
.locations-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Frame 49: description + map+panel, vertical gap=80 */
.locations-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.locations-description {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  color: var(--text-primary);
  max-width: 1170px;
}

/* Frame 52: map + panel side by side, gap=40 */
.locations-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}

.locations-map {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 626px;
}

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

/* Frame 53: airports + divider + train stations, vertical gap=80 */
.locations-panel {
  width: 721px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid #9D9D9D;
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.location-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.location-group-header {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.location-list li {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  color: var(--text-primary);
}

.location-divider {
  height: 1px;
  background: #818181;
}

/* ─── FLEET ───────────────────────────────────────────── */
.fleet-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.fleet-description {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  color: var(--text-primary);
}

.fleet-image {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1648 / 809;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 40px;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: space-between;
  align-items: stretch;
  min-height: 528px;
}

.footer-left {
  max-width: 445px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -2.4px;
  color: var(--white);
}

.footer-right {
  width: 439px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-logo .logo-footer-svg {
  width: 439px;
  height: 65px;
  display: block;
}

.footer-links-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-category {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--white);
}

.footer-link-item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link-item:hover {
  opacity: 1;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: var(--white);
  text-align: right;
  opacity: 0.6;
}

/* ─── BOOKING OVERLAY ─────────────────────────────────── */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--surface);
  padding: 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-overlay.active {
  display: flex;
}

.booking-step-1 {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.booking-step-2,
.booking-step-3 {
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.booking-close-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.btn-close-overlay {
  width: 50px;
  height: 50px;
  background: var(--btn-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-close-overlay:hover {
  background: #111;
}

/* Step 1 card */
.booking-card {
  width: 100%;
  max-width: 545px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.booking-card-title {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.form-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.form-input {
  height: 52px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  background: #e8e8e8;
}

.form-input.field-error {
  outline: 2px solid #c0392b;
  background: #fff5f5;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.form-row .form-field {
  flex: 1;
}

.passengers-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.passengers-input-wrap .form-input {
  padding-right: 80px;
}

.passengers-controls {
  position: absolute;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-counter {
  width: 28px;
  height: 28px;
  background: var(--btn-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-counter:hover {
  background: #111;
}

.passenger-count-display {
  font-size: 16px;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

/* Autocomplete dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  z-index: 100;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 4px;
  display: none;
}

.autocomplete-dropdown.open {
  display: block;
}

.autocomplete-item {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s;
}

.autocomplete-item:hover {
  background: var(--surface);
}

/* Small pill dark button */
.btn-pill-sm {
  background: var(--btn-dark);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-pill-sm:hover {
  background: #111;
}

.btn-pill-lg {
  background: var(--btn-dark);
  border-radius: var(--radius-pill);
  padding: 14px 20px;
  height: 50px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-pill-lg:hover {
  background: #111;
}

.btn-edit {
  background: none;
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--btn-dark);
  display: inline-flex;
  align-items: center;
}

.btn-edit:hover {
  background: var(--surface);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

/* ─── STEP 2 ──────────────────────────────────────────── */
.booking-panel-left {
  width: 541px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

.summary-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-field-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.summary-field-value {
  height: 43px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.booking-panel-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Mobile-only trip summary strip — hidden on desktop */
.s2-mobile-strip {
  display: none;
}

.vehicles-scroll {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  max-height: 886px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  position: relative;
}

.vehicle-card:hover {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.vehicle-card.selected {
  box-shadow: 0 0 0 2px var(--text-primary);
}

.vehicle-card-image {
  background: #000;
  border-radius: var(--radius-md);
  min-width: 398px;
  min-height: 261px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.vehicle-name-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-type {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.vehicle-model {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

.vehicle-specs {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-price-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-price-label {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
}

.vehicle-price {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

.vehicle-selector {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid #999;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.vehicle-card.selected .vehicle-selector {
  background: var(--text-primary);
  border-color: var(--text-primary);
}

/* ─── STEP 3 ──────────────────────────────────────────── */
.step3-left {
  width: 541px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step3-left .booking-panel-left {
  width: 100%;
}

.selected-vehicle-mini {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 60px;
  height: 121px;
  align-items: center;
}

.mini-car-image {
  background: #000;
  border-radius: 12px;
  width: 167px;
  height: 97px;
  flex-shrink: 0;
  overflow: hidden;
}

.mini-car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-car-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-car-type {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.mini-car-model {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.step3-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.step3-price-label {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
}

.step3-price-amount {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

.step3-right {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.form-textarea {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  resize: vertical;
  height: 101px;
  width: 100%;
}

.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  height: 52px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23818181' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--surface);
  padding-right: 36px;
}

/* ─── CONFIRMATION MESSAGE ────────────────────────────── */
.booking-confirmation {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-confirmation.active {
  display: flex;
}

.confirmation-title {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

.confirmation-body {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.5;
}

.confirmation-error {
  color: #c0392b;
}

/* ─── CONTACT PAGE ────────────────────────────────────── */
.contact-main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) var(--section-gap);
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.contact-hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
}

.contact-hero-title {
  font-family: var(--font-body);
  font-size: 68px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2.7px;
  color: var(--text-dark);
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card-label {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: var(--text-muted);
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 42px;
  color: var(--text-primary);
}

.contact-card-email {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
}

.contact-card-email a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1400px) {
  :root {
    --section-gap: 140px;
  }

  .hero-headline,
  .hero-tagline {
    font-size: 52px;
    line-height: 50px;
    letter-spacing: -2px;
  }

  .meet-body {
    font-size: 38px;
    line-height: 56px;
  }

  .footer-tagline {
    font-size: 46px;
    line-height: 48px;
  }

  .locations-panel {
    min-width: 540px;
  }
}

@media (max-width: 1199px) {
  :root {
    --page-pad: 24px;
    --section-gap: 100px;
  }

  .hero-headline,
  .hero-tagline {
    font-size: 42px;
    line-height: 42px;
    letter-spacing: -1.6px;
  }

  .hero-text {
    bottom: 32px;
    left: 32px;
    right: 32px;
  }

  .meet-body {
    font-size: 32px;
    line-height: 48px;
  }

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

  .locations-row {
    flex-direction: column;
  }

  .locations-map {
    min-height: 360px;
  }

  .locations-panel {
    width: 100%;
    min-width: 0;
  }

  .locations-description {
    font-size: 30px;
    line-height: 38px;
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
    min-height: unset;
  }

  .footer-tagline {
    font-size: 40px;
    line-height: 44px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-logo .logo-footer-svg {
    width: 100%;
    max-width: 439px;
    height: auto;
  }

  .booking-step-2,
  .booking-step-3 {
    flex-direction: column;
  }

  /* When stacked, hide full info panel and show compact strip instead */
  .booking-step-2 .booking-panel-left {
    display: none;
  }

  .s2-mobile-strip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }

  .s2-strip-route {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 70px;
  }

  .s2-strip-meta {
    font-size: 12px;
    color: var(--text-muted);
  }

  .s2-mobile-strip .btn-edit {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  .booking-panel-left {
    width: 100%;
  }

  .vehicle-card {
    flex-direction: column;
  }

  .vehicle-card-image {
    min-width: unset;
    width: 100%;
    min-height: 200px;
  }

  .step3-left {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── LUCIDE ICONS ────────────────────────────────────── */
.btn-pill-sm .lucide,
.btn-pill-lg .lucide {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-pill-sm:hover .lucide-arrow-right,
.btn-pill-lg:hover .lucide-arrow-right {
  transform: translateX(3px);
}

.btn-pill-sm:hover .lucide-arrow-left {
  transform: translateX(-3px);
}

.footer-link-item .lucide {
  width: 14px; height: 14px; flex-shrink: 0;
  transition: transform 0.2s ease;
}

.footer-link-item:hover .lucide-arrow-right {
  transform: translateX(3px);
}

/* Phone button icon */
.btn-phone .lucide {
  transition: transform 0.2s ease;
}
.btn-phone:hover .lucide-phone {
  transform: rotate(-12deg) scale(1.1);
}

/* Location group header icons */
.location-group-header .lucide {
  transition: transform 0.25s ease;
}
.location-group-header:hover .lucide-plane {
  transform: translateX(5px) translateY(-4px);
}
.location-group-header:hover .lucide-train-front {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  :root {
    --page-pad: 20px;
    --section-gap: 80px;
  }

  .site-header {
    padding: 16px var(--page-pad);
    height: auto;
  }

  .btn-phone {
    font-size: 0;
    padding: 10px;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .icon-phone {
    width: 18px;
    height: 18px;
  }

  .header-logo .logo-svg {
    height: 22px;
  }

  .header-nav {
    gap: 8px;
  }

  .btn-reservar {
    padding: 10px 14px;
    font-size: 14px;
    height: 42px;
  }

  .hero-text {
    flex-direction: column;
    gap: 16px;
    bottom: 24px;
    left: 24px;
    right: 24px;
    align-items: flex-start;
  }

  .hero-headline,
  .hero-tagline {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: left;
  }

  .section-label {
    font-size: 22px;
    line-height: 30px;
  }

  .meet-body {
    font-size: 24px;
    line-height: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 24px;
  }

  .service-card-title {
    font-size: 22px;
  }

  .service-card-body {
    font-size: 18px;
    line-height: 24px;
  }

  .location-group-header {
    font-size: 22px;
  }

  .location-list li {
    font-size: 20px;
  }

  .locations-description {
    font-size: 22px;
    line-height: 30px;
  }

  .fleet-description {
    font-size: 24px;
    line-height: 34px;
  }

  .footer-tagline {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: -1.2px;
  }

  .footer-link-category {
    font-size: 18px;
  }

  .footer-links-row {
    gap: 16px 20px;
    flex-wrap: wrap;
  }

  .footer-link-col {
    flex: 1 1 130px;
  }

  .booking-overlay {
    padding: 16px;
    gap: 12px;
  }

  .vehicle-card-image {
    min-height: 180px;
  }

  .vehicle-type,
  .vehicle-model {
    font-size: 22px;
  }

  .step3-left {
    width: 100%;
  }

  .selected-vehicle-mini {
    gap: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-hero-title {
    font-size: 42px;
    line-height: 44px;
  }

  .contact-card-title {
    font-size: 22px;
  }

  .contact-card-email {
    font-size: 18px;
  }
}
