/* Axis Mundi Landing Pages - Shared Styles */
/* Luxury Dark Theme with Gold Accents */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #141414;
  --color-bg-card: #1a1a1a;
  --color-bg-elevated: #222222;
  
  /* Gold Accent Spectrum */
  --color-gold: #c9a962;
  --color-gold-light: #e4d4a5;
  --color-gold-dark: #a08339;
  --color-gold-muted: rgba(201, 169, 98, 0.15);
  
  /* Text Colors */
  --color-text-primary: #f5f5f5;
  --color-text-secondary: #a0a0a0;
  --color-text-muted: #666666;
  
  /* Functional Colors */
  --color-success: #4a9f6e;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-gold: rgba(201, 169, 98, 0.3);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

.text-gold {
  color: var(--color-gold);
}

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

/* Links */
a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

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

/* Header / Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 50px;
  width: auto;
}

.navbar__contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

.navbar__phone svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Keep the hero background premium + stable across browsers.
     (Some browsers can choke on unescaped inline SVG data-URIs inside CSS,
     which may prevent the entire stylesheet from loading.) */
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  /* Cross-browser pill safety (Chrome/Firefox/iOS Safari) */
  min-height: 2.4rem;
  padding: 0.35rem var(--space-sm);
  line-height: 1;
  white-space: nowrap;
  background: var(--color-gold-muted);
  border: 1px solid var(--color-border-gold);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge svg {
  flex: 0 0 auto;
  display: block;
}

.hero__title {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero__title span {
  display: block;
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero__cta {
  display: flex;
  /* Keep primary + WhatsApp CTAs on one row on desktop.
     We'll stack them at tablet sizes via media queries below. */
  flex-wrap: nowrap;
  gap: var(--space-sm);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero__cta .btn {
  /* Slightly tighter padding so both CTAs fit comfortably on one row. */
  padding: 0.95rem 1.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  /* Keep CTA labels on a single line (avoid awkward wraps). */
  white-space: nowrap;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 169, 98, 0.35);
  color: var(--color-bg-primary);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn--whatsapp {
  /* Keep WhatsApp recognisable, but toned down for a luxury palette. */
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--color-text-primary);
}

.btn--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-muted);
  border-radius: 8px;
  margin-bottom: var(--space-sm);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Pricing Table */
.pricing-section {
  background: var(--color-bg-secondary);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.pricing-header h2 {
  margin-bottom: var(--space-sm);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.pricing-table th {
  background: var(--color-bg-elevated);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.pricing-table td {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: rgba(201, 169, 98, 0.05);
}

.pricing-table .vehicle-name {
  font-weight: 600;
  color: var(--color-text-primary);
}

.pricing-table .price {
  font-weight: 600;
  color: var(--color-gold);
}

.pricing-table .vehicle-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}



/* VIP Meet & Greet mini-table */
.vip-card{
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.vip-card__title{
  margin: 0 0 var(--space-xs) 0;
  font-size: 1.15rem;
}

.vip-card__title span{
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.vip-card__text{
  margin: 0 0 var(--space-sm) 0;
  color: var(--color-text-secondary);
  max-width: 70ch;
}

.vip-card__tablewrap{
  overflow-x: auto;
  border-radius: 10px;
}

.vip-table{
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
}

.vip-table th,
.vip-table td{
  padding: 0.85rem var(--space-md);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.vip-table th{
  background: var(--color-bg-elevated);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.vip-table tr:last-child td{ border-bottom: none; }

.vip-table__price{
  white-space: nowrap;
  font-weight: 600;
  color: var(--color-gold);
}

.vip-card__fineprint{
  margin: var(--space-sm) 0 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.vip-card .muted{
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.85em;
}

.pricing-note {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background: var(--color-gold-muted);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Fleet Gallery */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.fleet-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.fleet-card:hover {
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-card);
}

.fleet-card__image {
  aspect-ratio: 16/10;
  background: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

.fleet-card__image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.fleet-card__content {
  padding: var(--space-md);
}

.fleet-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.fleet-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.fleet-card__specs {
  display: flex;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.fleet-card__specs span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Trust Section */
.trust-section {
  text-align: center;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat {
  padding: var(--space-md);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.trust-badge svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-gold);
  fill: none;
}

/* Routes Section */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.route-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.route-item:hover {
  border-color: var(--color-border-gold);
  background: var(--color-gold-muted);
}

.route-item__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-muted);
  border-radius: 50%;
  flex-shrink: 0;
}

.route-item__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
}

.route-item__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.route-item__text strong {
  color: var(--color-text-primary);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  top: -15px;
  left: var(--space-md);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: var(--color-bg-primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
}

.process-step__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
  background: 
    linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    var(--color-bg-secondary);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Footer */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.footer__brand img {
  height: 40px;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.footer__links ul {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__contact p {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.footer__link{color:inherit;text-decoration:none;border-bottom:1px solid rgba(201,169,98,0.25);padding-bottom:1px;}
.footer__link:hover{color:var(--color-gold);border-bottom-color:var(--color-gold);}

.footer__contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
  fill: none;
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-lg: 2rem;
  }
  .hero {
    min-height: 80vh;
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .pricing-table {
    font-size: 0.85rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat__number {
    font-size: 2rem;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }

  /* Tighter vertical rhythm on mobile (reduce scroll length) */
  .section { padding: var(--space-xl) 0; }
  .section--slim { padding: calc(var(--space-xl) * 0.7) 0; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__highlights { margin: var(--space-sm) 0 var(--space-md); gap: 0.45rem 0.9rem; }
  .features { gap: var(--space-md); }
  .feature-card { padding: var(--space-md); }
  .designed-card { padding: var(--space-md); }
  .trust-section .trust-intro { margin-bottom: var(--space-md); }
}

@media (max-width: 480px) {
  .hero{ padding-top: 104px; }
  .navbar__contact {
    display: none;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }


/* --- Landing Page Enhancements (Airport Transfer) --- */
.hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  filter:saturate(0.95) contrast(1.02);
}

.hero__highlights{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:0.6rem 1.1rem;
  margin: var(--space-md) 0 var(--space-lg);
  padding:0;
  color: var(--color-text-primary);
  font-size:0.9rem;
}
.hero__highlights li{
  position:relative;
  padding-left:1.1rem;
  color: var(--color-text-secondary);
}
.hero__highlights li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color: var(--color-gold);
}

.hero__microcopy{
  margin-top: var(--space-md);
  font-size:0.85rem;
  color: var(--color-text-muted);
}

.section--slim{
  padding: var(--space-xl) 0;
}

.designed-card{
  background: linear-gradient(180deg, rgba(201,169,98,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--color-border-gold);
  border-radius: 18px;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  box-shadow: var(--shadow-card);
}
.designed-card__title{
  margin-bottom: 0.5rem;
}
.designed-card__text{
  max-width: 70ch;
  margin: 0;
  text-wrap: pretty;
}
@supports (text-wrap: balance){
  .designed-card__text{ text-wrap: balance; }
}
.designed-card__chips{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-top: var(--space-md);
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border:1px solid var(--color-border);
  background: rgba(10,10,10,0.45);
  color: var(--color-text-secondary);
  font-size:0.8rem;
  letter-spacing:0.02em;
}

/* Localized page cross-link callout (IST ↔ SAW) */
.route-callout{
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.route-callout__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-lg);
  padding: var(--space-lg);
}
.route-callout__title{
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.route-callout__text{
  margin: 0;
  color: var(--color-text-secondary);
  max-width: 70ch;
}
@media (max-width: 768px){
  .route-callout__inner{
    flex-direction: column;
    align-items:flex-start;
    gap: var(--space-md);
  }
}

.experience-block{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.2rem, 2.8vw, 2.2rem);
  align-items:center;
  margin: 0 auto var(--space-xl);
  max-width: 1100px;
}
.experience-block__media img{
  width:100%;
  height:auto;
  border-radius: 18px;
  border:1px solid var(--color-border);
  box-shadow: var(--shadow-elevated);
}
.experience-block__copy h3{
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.trust-intro{
  max-width: 75ch;
  margin: -1rem auto var(--space-lg);
  text-align: center;
}

@media (max-width: 900px){
  .hero{ padding-top: 120px; }
  .experience-block{
    grid-template-columns: 1fr;
  }
}


@media (max-width: 520px) {
  /* Pricing table: improve fit on small iPhones */
  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2) { display: none; } /* hide Passengers column */
  .pricing-table th,
  .pricing-table td { padding: 0.9rem 1rem; }
}


/* Popular routes list */
.route-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}
.route-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}
.route-item__place{ color: var(--color-text-primary); font-weight: 500; }
.route-item__time{ color: var(--color-gold); font-weight: 600; }
@media (max-width: 600px){
  .route-list{ grid-template-columns: 1fr; }
  .route-item{ padding: 0.85rem 0.95rem; }
}


/* Hourly chauffeur: embeds & compact lists */
.media-embed{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--color-border);
  background: #000;
}
.media-embed iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}


.video-card{
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #000;
  text-decoration: none;
}
.video-card img{ width: 100%; height: auto; display: block; }
.video-card__play{
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  backdrop-filter: blur(6px);
}
.video-card__play svg{ opacity: 0.95; }
.video-card:hover .video-card__play{ background: rgba(0,0,0,0.65); }
@media (max-width: 600px){
  .video-card__play{ left: 0.85rem; bottom: 0.85rem; font-size: 0.85rem; }
}

.table-wrap{
  margin-top: var(--space-md);
}

.pricing-table--compact th,
.pricing-table--compact td{
  padding: 0.75rem 1rem;
}

.text-right{ text-align:right; }

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.simple-list{
  margin: var(--space-md) 0 0;
  padding-left: 1.15rem;
}
.simple-list li{
  margin: 0.3rem 0;
}
