/* ============================================
   SWISS SKIES — styles.css
   Brand: Alpine whites, cool slate, warm gold
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Brand Colors (extracted from logo) */
  --color-gold:       #B8975A;
  --color-gold-light: #D4B07A;
  --color-navy:       #1C2B3A;
  --color-navy-mid:   #243447;
  --color-slate:      #4A6178;
  --color-cream:      #F5F2EC;
  --color-white:      #FFFFFF;
  --color-dark-bg:    #131E28;

  /* Functional */
  --color-text:       #1C2B3A;
  --color-text-muted: #4A6178;
  --color-border:     #DDD8CF;
  --color-success:    #2D7A5F;
  --color-error:      #B84A4A;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad:  7rem 0;
  --container-w:  1180px;
  --radius:       8px;
  --radius-lg:    16px;

  /* Transitions */
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section         { padding: var(--section-pad); }
.section-dark    { background: var(--color-navy); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--color-gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--color-white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.65); }

.body-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.body-text.light { color: rgba(255,255,255,0.7); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,151,90,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-full { width: 100%; justify-content: center; }

.btn-arrow { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(19,30,40,0.75) 0%, rgba(19,30,40,0) 100%);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(19, 30, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  overflow: visible;
}

/* Left links — right-aligned toward logo */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}

/* Right links — left-aligned toward logo */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}

/* Centered logo — allowed to overflow nav height */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition), filter var(--transition);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}

.site-header.scrolled .logo-img {
  height: 68px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-gold-light); }
.nav-left .nav-link[href="#contact"] { color: var(--color-gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

/* Mobile drawer hidden by default — only shown inside mobile media query */
.mobile-drawer {
  display: none;
}

.nav-backdrop {
  display: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 50svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,30,40,0.6) 0%,
    rgba(19,30,40,0.45) 35%,
    rgba(19,30,40,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.desktop-break { display: none; }
@media (min-width: 768px) { .desktop-break { display: block; } }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 2rem;
}

/* Pill-style hero buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--color-white);
  color: var(--color-navy);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}
.btn-hero-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-navy);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

/* Mobile form section — hidden on desktop, shown on mobile */
.mobile-form-section { display: none; }

.mobile-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-align: center;
}

/* ---- Hero inline form card ---- */
.hero-form-card {
  width: 100%;
  max-width: 760px;
  background: rgba(19, 30, 40, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.hero-form-group input::placeholder { color: rgba(255,255,255,0.35); }

.hero-form-group input:focus,
.hero-form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.2);
}

.hero-form-group select {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.07);
  cursor: pointer;
}

.hero-form-group select option {
  background: var(--color-dark-bg);
  color: var(--color-white);
}

/* Date inputs in dark card */
.hero-form-group input[type="date"] {
  color-scheme: dark;
}
.hero-form-group input[type="date"]:invalid { border-color: rgba(255,255,255,0.12); }

/* Trip toggle inside hero card — full size */
.hero-form-card .trip-toggle-wrap {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.hero-form-card .trip-toggle-btn {
  color: rgba(255,255,255,0.55);
}
.hero-form-card .trip-toggle-btn.active {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  box-shadow: none;
}
.hero-form-card .trip-toggle-btn:not(.active):hover {
  color: var(--color-white);
}

/* Minimal pill toggle */
.trip-toggle-mini {
  display: inline-flex;
  align-self: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 0 !important;
}
.trip-toggle-mini .trip-toggle-btn {
  flex: none;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 100px;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: 1px solid transparent;
  min-height: unset;
  transition: all var(--transition);
}
.trip-toggle-mini .trip-toggle-btn.active {
  background: rgba(184,151,90,0.2);
  border-color: var(--color-gold);
  color: var(--color-gold-light);
  box-shadow: none;
}
.trip-toggle-mini .trip-toggle-btn:not(.active):hover {
  color: var(--color-gold-light);
}

/* ---- Passenger stepper ---- */
.passenger-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  min-height: 48px;
}

.stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.stepper-btn svg {
  width: 16px;
  height: 16px;
}
.stepper-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
}
.stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.stepper-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  min-width: 2rem;
  text-align: center;
  line-height: 1;
}

/* Extra details section (hidden until needed) */
.hero-form-extra {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.hero-form-extra.visible {
  display: flex;
}

.hero-form-extra-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
}
.hero-form-extra-divider::before,
.hero-form-extra-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.hero-form-extra-divider span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* Contact info centered layout */
.contact-info-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-details-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0;
}

.contact-details-row .contact-item {
  align-items: flex-start;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-col { position: relative; }

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-cream) 0%, #e8e4dc 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--color-border);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.accent-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold-light);
  line-height: 1.5;
}

.about-text-col { padding-top: 0; }

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-slate);
  letter-spacing: 0.03em;
}
.trust-icon { width: 18px; height: 18px; color: var(--color-gold); flex-shrink: 0; }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,151,90,0.3);
  transform: translateY(-4px);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================
   FLEET
   ============================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.fleet-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

/* Heavy jet image is wider — use contain so it isn't cropped */
.fleet-card:nth-child(3) .fleet-img {
  object-fit: contain;
}

.fleet-info { padding: 1.5rem; }

.fleet-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.fleet-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fleet-specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fleet-specs li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-slate);
  padding-left: 1rem;
  position: relative;
}
.fleet-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ============================================
   FLEET CAROUSEL NAV (hidden on desktop)
   ============================================ */
.fleet-carousel-nav {
  display: none;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { width: 20px; height: 20px; color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.contact-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
a.contact-value:hover { color: var(--color-gold-light); }

/* Form */
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.required { color: var(--color-gold); }
.optional { font-weight: 400; color: var(--color-text-muted); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.form-group select {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A6178' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  min-height: 48px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.15);
}

.form-group select option[value=""][disabled] { color: #aaa; }

.form-group input:invalid:not(:placeholder-shown) { border-color: var(--color-border); }
.form-group input[type="date"]:invalid { border-color: var(--color-border); }
.form-group input[type="date"].touched:invalid { border-color: var(--color-border); }
.form-group input.touched:invalid:not([type="date"]) { border-color: var(--color-error); }

/* Trip type toggle */
.trip-toggle-wrap {
  display: flex;
  background: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
}

.trip-toggle-btn {
  flex: 1;
  padding: 0.55rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 40px;
}

.trip-toggle-btn.active {
  background: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.trip-toggle-btn:not(.active):hover {
  color: var(--color-navy);
}

/* Return date hidden when one-way */
#return-date-group {
  transition: opacity var(--transition);
}
#return-date-group.hidden,
#m-return-date-group.hidden {
  display: none;
}

.form-success,
.form-error {
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-success:not([hidden]),
.form-error:not([hidden]) {
  display: flex;
}
.form-success { background: rgba(45,122,95,0.1); color: var(--color-success); }
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-error { background: rgba(184,74,74,0.1); color: var(--color-error); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark-bg);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a,
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--color-gold-light); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-style: italic; }

/* ============================================
   PLACEHOLDER LABEL (shared)
   ============================================ */
.placeholder-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(100,120,140,0.7);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 1rem;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-card { right: 1rem; bottom: -1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-details-row { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
  :root { --section-pad: 4.5rem 0; }

  /* Nav */
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 201;
  }

  .nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
  }

  .site-header {
    padding: 0.6rem 0;
  }

  .logo-img {
    height: 52px;
  }

  .site-header.scrolled .logo-img {
    height: 44px;
  }

  /* Hide desktop nav lists on mobile */
  .nav-left,
  .nav-right { display: none !important; }

  /* Backdrop */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 198;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Single unified mobile drawer */
  .mobile-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-dark-bg);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    gap: 1.75rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 199;
    list-style: none;
    overflow-y: auto;
  }

  .mobile-drawer.open { transform: translateX(0); }

  .nav-link { font-size: 1.1rem; color: rgba(255,255,255,0.9); }
  .mobile-drawer .nav-link[href="#contact"] { color: var(--color-gold-light); }

  /* Hero — mobile: title + buttons only, no form */
  .hero {
    min-height: auto;
    height: 50svh;
    max-height: 320px;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg-img { object-position: 65% 30%; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(19,30,40,0.45) 0%,
      rgba(19,30,40,0.3) 40%,
      rgba(19,30,40,0.72) 100%
    );
  }
  .hero-content {
    padding: 0 1.25rem;
    justify-content: center;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 0;
    line-height: 1.1;
  }
  .hero-actions {
    margin-bottom: 0;
    gap: 0.625rem;
  }
  .btn-hero-primary,
  .btn-hero-ghost {
    padding: 0.55rem 1.5rem;
    font-size: 0.85rem;
    min-height: 40px;
  }

  /* Hide desktop form card on mobile */
  .hero-form-card--desktop { display: none; }

  /* Show mobile form section */
  .mobile-form-section { display: block; }

  /* Mobile form section styles */
  .hero-form-card--mobile {
    border-radius: 0;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--color-dark-bg);
    padding: 2rem 1.25rem 2.5rem;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
  }

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

  .mobile-form-section .hero-form-group {
    min-width: 0;
    overflow: hidden;
  }

  .mobile-form-section .hero-form-group input[type="date"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  /* About */
  .about-accent-card { position: static; margin-top: 1rem; max-width: 100%; }

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

  /* Fleet — carousel on mobile */
  .fleet-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    scrollbar-width: none;
  }
  .fleet-grid::-webkit-scrollbar { display: none; }
  .fleet-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .fleet-card:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); border-left: 1px solid var(--color-border); }
  .fleet-card:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; border-right: 1px solid var(--color-border); }
  .fleet-card:hover { transform: none; }

  .fleet-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .fleet-carousel-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .fleet-carousel-btn:hover {
    background: var(--color-navy);
    color: var(--color-white);
  }
  .fleet-carousel-dots {
    display: flex;
    gap: 0.5rem;
  }
  .fleet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--color-border);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition);
  }
  .fleet-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; gap: 1rem; }
}
