/* ============================================================
   VIPT Landing Design System — Presidential Transportation RGV
   Premium dark luxury aesthetic with gold accents.
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --brand-primary: #DAAD29;
  --brand-primary-light: #f0d78c;
  --brand-primary-dark: #b8941f;
  --brand-primary-glow: rgba(218, 173, 41, 0.25);

  --bg-body: #000000;
  --bg-surface: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-subtle: rgba(255, 255, 255, 0.4);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.15);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 12px 40px rgba(218, 173, 41, 0.18);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-width: 1280px;
  --section-padding-y: 6rem;
  --header-height: 80px;
}

/* ── Base ────────────────────────────────────────────────── */
.landing-page {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

.landing-page img {
  max-width: 100%;
  height: auto;
}

.landing-container {
  width: min(var(--container-width), 92%);
  margin: 0 auto;
}

/* ── Top Bar ─────────────────────────────────────────────── */
.landing-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.landing-topbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow-md);
}

.landing-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.landing-logo:hover {
  opacity: 0.85;
}

.landing-logo img {
  height: 48px;
  width: auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.landing-nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.landing-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.landing-nav a:hover,
.landing-nav a.active {
  color: var(--brand-primary);
}

.landing-nav a:hover::after,
.landing-nav a.active::after {
  width: 100%;
}

.landing-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.landing-phone i {
  color: var(--brand-primary);
  transition: transform var(--transition-fast);
}

.landing-phone:hover {
  color: var(--brand-primary);
}

.landing-phone:hover i {
  transform: scale(1.1);
}

.landing-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 4rem 4rem;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.65) 100%),
    url('../img/wp/envato-labs-image-edit-1.png') center/cover no-repeat;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(218, 173, 41, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.landing-hero-man {
  position: absolute;
  bottom: 0;
  left: 54%;
  transform: translateX(-50%);
  height: 90vh;
  max-height: 880px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}

.landing-hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.landing-hero-content {
  flex: 0 0 44%;
  text-align: left;
  animation: fadeInUp 0.8s ease forwards;
}

.landing-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.landing-hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.landing-hero h1 span {
  color: var(--brand-primary);
}

.landing-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 460px;
}

.landing-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform var(--transition-base);
}

.landing-hero-phone:hover {
  transform: translateX(4px);
}

.landing-hero-phone-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: rgba(218, 173, 41, 0.12);
  border: 1px solid rgba(218, 173, 41, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.landing-hero-phone:hover .landing-hero-phone-icon {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #000;
  box-shadow: 0 0 30px rgba(218, 173, 41, 0.4);
}

.landing-hero-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.landing-hero-phone-text small {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.landing-hero-phone-text strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.landing-hero-stats-card {
  flex: 0 0 360px;
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.landing-hero-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.landing-hero-stat:last-of-type {
  border-bottom: none;
}

.landing-hero-stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  min-width: 76px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.landing-hero-stat-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.landing-hero-book {
  display: block;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--brand-primary);
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
}

.landing-hero-book:hover {
  background: var(--brand-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(218, 173, 41, 0.35);
}

/* ── Section Common ──────────────────────────────────────── */
.landing-section {
  padding: var(--section-padding-y) 0;
  position: relative;
}

.landing-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.landing-section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.landing-section-subtitle::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-primary);
}

.landing-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.landing-section-title span {
  color: var(--brand-primary);
}

.landing-section-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── About ───────────────────────────────────────────────── */
.landing-about {
  background: var(--bg-body);
}

.landing-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.landing-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.landing-about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

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

.landing-about-image:hover img {
  transform: scale(1.03);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-landing-primary {
  background: var(--brand-primary);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-landing-primary:hover {
  background: var(--brand-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(218, 173, 41, 0.3);
}

.btn-landing-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-landing-outline:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: rgba(218, 173, 41, 0.06);
}

.btn-landing:disabled,
.btn-landing.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Features ────────────────────────────────────────────── */
.landing-features {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
}

.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.landing-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all var(--transition-base);
}

.landing-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(218, 173, 41, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.landing-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(218, 173, 41, 0.1);
  border: 1px solid rgba(218, 173, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.landing-feature:hover .landing-feature-icon {
  background: rgba(218, 173, 41, 0.18);
  transform: scale(1.05);
}

.landing-feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.landing-feature p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Fleet ───────────────────────────────────────────────── */
.landing-fleet {
  background: var(--bg-body);
  position: relative;
}

.landing-fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.landing-fleet-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.landing-fleet-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}

.landing-fleet-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.landing-fleet-image:hover img {
  transform: scale(1.03);
}

/* ── Partners ────────────────────────────────────────────── */
.landing-partners {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.landing-partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.landing-partners-grid img {
  height: 44px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%) brightness(1.3);
  transition: all var(--transition-base);
}

.landing-partners-grid img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1.1);
}

/* ── Fleet Page ──────────────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.fleet-card:hover {
  border-color: rgba(218, 173, 41, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-elevated);
}

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

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

.fleet-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 4rem;
}

.fleet-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--brand-primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fleet-card-body {
  padding: 1.75rem;
}

.fleet-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.fleet-card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.fleet-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.fleet-card-status.available {
  background: rgba(47, 179, 68, 0.12);
  color: #2fb344;
  border: 1px solid rgba(47, 179, 68, 0.25);
}

.fleet-card-status.booked {
  background: rgba(245, 159, 0, 0.12);
  color: #f59f00;
  border: 1px solid rgba(245, 159, 0, 0.25);
}

.fleet-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.fleet-card-meta i {
  margin-right: 0.25rem;
}

.fleet-card-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.fleet-card-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fleet-card-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.fleet-card:hover .fleet-card-perk {
  border-color: rgba(218, 173, 41, 0.15);
}

.fleet-card-perk i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(218, 173, 41, 0.2);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: rgba(218, 173, 41, 0.1);
  border: 1px solid rgba(218, 173, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: rgba(218, 173, 41, 0.18);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-primary);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--brand-primary-light);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-detail i {
  color: var(--brand-primary);
  margin-top: 0.2rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.landing-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.landing-footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.landing-footer-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.landing-footer h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.landing-footer a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.landing-footer a:hover {
  color: var(--brand-primary);
}

.landing-footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-footer-contact i {
  color: var(--brand-primary);
}

.landing-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.landing-footer-bottom a {
  color: var(--text-subtle);
  text-decoration: none;
  margin-left: 1.5rem;
  display: inline;
}

.landing-footer-bottom a:hover {
  color: var(--brand-primary);
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .landing-hero {
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
  }

  .landing-hero-man {
    left: 58%;
    height: 80vh;
    max-height: 720px;
  }

  .landing-hero-stats-card {
    flex: 0 0 320px;
    padding: 1.75rem 2rem;
  }

  .landing-hero-stat-number {
    font-size: 2.4rem;
    min-width: 68px;
  }

  .landing-about-grid,
  .landing-fleet-grid {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .landing-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .landing-nav.active {
    display: flex;
  }

  .landing-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .landing-nav a:last-child {
    border-bottom: none;
  }

  .landing-menu-toggle {
    display: block;
  }

  .landing-hero {
    padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  }

  .landing-hero-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .landing-hero-content {
    flex: 0 0 auto;
    width: 100%;
    max-width: 600px;
  }

  .landing-hero-man {
    left: 50%;
    height: 60vh;
    max-height: 520px;
    opacity: 0.2;
  }

  .landing-hero-stats-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    align-self: flex-end;
  }

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

  .landing-about-grid,
  .landing-fleet-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 4.5rem;
  }

  .landing-hero-man {
    height: 50vh;
    max-height: 420px;
  }

  .landing-hero-stats-card {
    align-self: stretch;
    max-width: none;
  }

  .landing-partners-grid {
    gap: 2rem;
  }

  .landing-partners-grid img {
    height: 36px;
  }
}

@media (max-width: 576px) {
  .btn-landing {
    width: 100%;
  }

  .landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .landing-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .landing-footer-bottom a {
    margin: 0 0.75rem;
  }
}

/* ── Booking Form ────────────────────────────────────────── */
.booking-form-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.booking-form-field {
  margin-bottom: 1.25rem;
}

.booking-form-field label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-required {
  color: #ff6b6b;
}

.booking-input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.booking-input::placeholder {
  color: var(--text-subtle);
}

.booking-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: rgba(218, 173, 41, 0.04);
  box-shadow: 0 0 0 3px var(--brand-primary-glow);
}

.booking-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.booking-alert-error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  color: #ff8787;
}

.booking-alert ul {
  padding-left: 1.25rem;
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(47, 179, 68, 0.12);
  border: 1px solid rgba(47, 179, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2fb344;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
}

.booking-success h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.booking-success p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Vehicle selection grid */
.booking-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.booking-vehicle-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
}

.booking-vehicle-card:hover:not(.unavailable) {
  border-color: rgba(218, 173, 41, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.booking-vehicle-card.selected {
  border-color: var(--brand-primary);
  background: rgba(218, 173, 41, 0.06);
  box-shadow: var(--shadow-gold);
}

.booking-vehicle-card.unavailable {
  opacity: 0.55;
  cursor: not-allowed;
}

.booking-vehicle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-vehicle-image {
  position: relative;
  height: 120px;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.booking-vehicle-image i {
  font-size: 2.5rem;
  color: var(--text-subtle);
}

.booking-vehicle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  color: #f59f00;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-vehicle-body {
  padding: 1rem;
}

.booking-vehicle-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.booking-vehicle-meta {
  display: flex;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.booking-vehicle-meta i {
  color: var(--brand-primary);
}

.booking-vehicle-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.booking-vehicle-perk {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: rgba(218, 173, 41, 0.1);
  border: 1px solid rgba(218, 173, 41, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.75rem;
}

.booking-vehicle-status {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #f59f00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 992px) {
  .booking-form-card {
    padding: 1.75rem;
  }

  .booking-form-grid,
  .booking-form-grid-3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 576px) {
  .booking-vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Booking Stepper ─────────────────────────────────────── */
.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.booking-step-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.booking-step.active {
  color: var(--brand-primary);
}

.booking-step.active .booking-step-number {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #000;
}

.booking-step.completed {
  color: var(--text-secondary);
}

.booking-step.completed .booking-step-number {
  background: rgba(47, 179, 68, 0.15);
  border-color: rgba(47, 179, 68, 0.4);
  color: #2fb344;
}

.booking-step-line {
  flex: 1;
  height: 1px;
  max-width: 60px;
  background: var(--border-medium);
}

.booking-step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.booking-step-content {
  display: none;
}

.booking-step-content.active {
  display: block;
  animation: fadeInUp 0.35s ease forwards;
}

.booking-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.booking-step-actions .btn-landing {
  flex: 0 0 auto;
}

.booking-input.is-invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.06);
}

.booking-fare-estimate {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}

.booking-fare-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.booking-fare-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.booking-fare-breakdown {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .booking-step-label {
    display: none;
  }

  .booking-step-actions {
    flex-direction: column;
  }

  .booking-step-actions .btn-landing {
    width: 100%;
  }
}

/* Show all steps when server returns errors */
#bookingForm.has-errors .booking-stepper,
#bookingForm.has-errors .booking-step-line {
  display: none;
}

#bookingForm.has-errors .booking-step-content {
  display: block;
  margin-bottom: 2rem;
}

#bookingForm.has-errors .booking-step-content:not(:last-of-type) {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}


/* ── Booking Page Layout ─────────────────────────────────── */
.booking-hero {
  min-height: 45vh;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 5rem;
}

.booking-form-section {
  background: var(--bg-body);
  padding-top: 3rem;
  padding-bottom: var(--section-padding-y);
}

@media (max-width: 992px) {
  .booking-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
  }

  .booking-form-section {
    padding-top: 2rem;
  }
}
