/* ═══════════════════════════════════════════════════════════════
   DIVYANSHI CAB — RADICAL NEW INNER PAGES DESIGN SYSTEM
   Ultra-Modern Mobility Startup UI (Uber / BluSmart / Stripe Level)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ip-bg-page: #f8fafc;
  --ip-bg-white: #ffffff;
  --ip-bg-card: #ffffff;
  --ip-border: #e2e8f0;
  --ip-border-focus: #f59e0b;
  --ip-text-title: #0f172a;
  --ip-text-body: #334155;
  --ip-text-muted: #64748b;
  --ip-amber: #f59e0b;
  --ip-amber-dark: #d97706;
  --ip-amber-light: #fef3c7;
  --ip-amber-glow: rgba(245, 158, 11, 0.18);
  --ip-green: #10b981;
  --ip-green-light: #d1fae5;
  --ip-shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --ip-shadow-card: 0 12px 36px -4px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --ip-shadow-hover: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
  --ip-radius-sm: 8px;
  --ip-radius-md: 14px;
  --ip-radius-lg: 20px;
  --ip-radius-xl: 28px;
  --ip-font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ip-font-body: 'Inter', -apple-system, sans-serif;
}

/* Base Reset for Inner Pages */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
}

.ip-page-wrapper {
  background-color: var(--ip-bg-page);
  color: var(--ip-text-body);
  font-family: var(--ip-font-body);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

.ip-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO & BOOKING SPLIT CANVAS
   ═══════════════════════════════════════════════════════════════ */
.ip-hero-canvas {
  padding: 40px 0 60px;
  background: radial-gradient(circle at 10% 20%, rgba(254, 243, 199, 0.55) 0%, rgba(248, 250, 252, 0.92) 50%, #ffffff 100%);
  border-bottom: 1px solid var(--ip-border);
  position: relative;
}

.ip-hero-canvas-compact {
  padding: 30px 0 26px !important;
  background: radial-gradient(circle at 50% -20%, rgba(254, 243, 199, 0.44) 0%, rgba(248, 250, 252, 0.88) 50%, #ffffff 100%) !important;
  border-bottom: 1px solid var(--ip-border);
}

.ip-breadcrumb-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.ip-breadcrumb-center .ip-breadcrumb-pill {
  margin-bottom: 12px;
}

.ip-compact-title {
  font-family: var(--ip-font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .ip-hero-canvas-compact {
    padding: 20px 0 18px !important;
  }
  .ip-breadcrumb-center .ip-breadcrumb-pill {
    margin-bottom: 8px;
    font-size: 0.76rem;
    padding: 4px 12px;
  }
  .ip-compact-title {
    font-size: 1.45rem;
  }
}

.ip-hero-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

/* Left Hero Presentation */
.ip-hero-left {
  padding-top: 12px;
}

.ip-breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--ip-border);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--ip-text-muted);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  margin-bottom: 24px;
}

.ip-breadcrumb-pill a {
  color: var(--ip-text-title) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.ip-breadcrumb-pill a:hover {
  color: var(--ip-amber-dark) !important;
}

.ip-breadcrumb-pill span.current {
  color: var(--ip-amber-dark);
  font-weight: 700;
}

.ip-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ip-amber-dark);
  background: var(--ip-amber-light);
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.ip-hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ip-amber-dark);
}

.ip-hero-heading {
  font-family: var(--ip-font-heading);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--ip-text-title);
  margin: 0 0 18px 0;
}

.ip-hero-heading .ip-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ip-hero-lead {
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--ip-text-muted);
  margin: 0 0 28px 0;
  max-width: 520px;
}

/* Hero Feature Micro-Cards */
.ip-hero-features-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ip-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--ip-border);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ip-text-title);
  box-shadow: var(--ip-shadow-subtle);
}

.ip-feature-pill i {
  color: var(--ip-amber);
  font-size: 0.95rem;
}

/* Quick Route Chips (One Way Specific) */
.ip-quick-routes-box {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-md);
  padding: 16px 18px;
  box-shadow: var(--ip-shadow-subtle);
}

.ip-quick-routes-title {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ip-text-muted);
  margin-bottom: 10px;
  display: block;
}

.ip-route-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ip-route-pill-btn {
  background: var(--ip-bg-page);
  border: 1px solid var(--ip-border);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ip-text-title);
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none !important;
}

.ip-route-pill-btn:hover {
  background: var(--ip-amber-light);
  border-color: var(--ip-amber);
  color: var(--ip-amber-dark);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   2. APP-GRADE FLOATING BOOKING CARD
   ═══════════════════════════════════════════════════════════════ */
.ip-booking-card-surface {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 32px 28px;
  box-shadow: var(--ip-shadow-card);
  position: relative;
}

.ip-booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ip-border);
}

.ip-booking-card-header h3 {
  font-family: var(--ip-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0;
}

.ip-live-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 50px;
}

.ip-live-status-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.6);
}

/* Round Trip Visual Banner inside Card */
.ip-roundtrip-tracker {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: var(--ip-radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.ip-tracker-nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.ip-tracker-node {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ip-text-title);
}

.ip-tracker-node i {
  color: var(--ip-amber-dark);
}

.ip-tracker-arrow {
  color: var(--ip-amber-dark);
  font-size: 0.78rem;
}

.ip-tracker-text {
  font-size: 0.78rem;
  color: #92400e;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* Form Inputs Grid */
.ip-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.ip-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ip-field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ip-text-title);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ip-field-label i {
  color: var(--ip-amber-dark);
  font-size: 0.82rem;
}

.ip-input-control {
  width: 100%;
  height: 48px;
  background: #f8fafc;
  border: 1px solid var(--ip-border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ip-text-title);
  transition: all 0.2s ease;
  outline: none;
}

.ip-input-control:focus {
  background: #ffffff;
  border-color: var(--ip-amber);
  box-shadow: 0 0 0 3px var(--ip-amber-glow);
}

.ip-btn-submit-booking {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  border-radius: 12px;
  color: #0f172a;
  font-family: var(--ip-font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  transition: all 0.2s ease;
  margin-top: 20px;
}

.ip-btn-submit-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.45);
  filter: brightness(1.04);
}

.ip-btn-submit-booking:active {
  transform: scale(0.98);
}

/* ═══════════════════════════════════════════════════════════════
   3. HOW FARE WORKS (Interactive Visual Pipeline)
   ═══════════════════════════════════════════════════════════════ */
.ip-section {
  padding: 72px 0;
  position: relative;
}

.ip-section-subtle {
  background: #ffffff;
  border-top: 1px solid var(--ip-border);
  border-bottom: 1px solid var(--ip-border);
}

.ip-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.ip-section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ip-amber-dark);
  margin-bottom: 10px;
}

.ip-section-title {
  font-family: var(--ip-font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ip-text-title);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.ip-section-desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ip-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   3. HOW FARE WORKS (Next-Level Interactive Highway Pipeline)
   ═══════════════════════════════════════════════════════════════ */
.ip-fare-showcase-container {
  max-width: 1140px;
  margin: 0 auto;
}

.ip-fare-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.ip-pipeline-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.ip-pipeline-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 30px -6px rgba(15, 23, 42, 0.08);
}

.ip-pipeline-card.is-final {
  border-color: #a7f3d0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.ip-pipeline-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ip-pipeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.ip-pipeline-icon.icon-pickup {
  background: #fffbeb;
  color: #d97706;
  border: 1.5px solid #fde68a;
}

.ip-pipeline-icon.icon-drop {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #bfdbfe;
}

.ip-pipeline-icon.icon-invoice {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}

.ip-step-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 50px;
  background: #f1f5f9;
  color: #475569;
}

.ip-step-tag.tag-final {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.ip-pipeline-card-body {
  flex: 1;
}

.ip-pipeline-title {
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--ip-text-title);
  margin: 0 0 6px 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.ip-pipeline-desc {
  font-size: 0.84rem;
  color: var(--ip-text-muted);
  line-height: 1.5;
  margin: 0;
}

.ip-pipeline-status {
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

.ip-status-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ip-status-badge.badge-amber {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.ip-status-badge.badge-blue {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.ip-status-badge.badge-green {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* 3 Modern Pillars Grid */
.ip-fare-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.ip-fare-pillar-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ip-fare-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.28s ease;
}

.ip-fare-pillar-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1);
}

.ip-pillar-amber:hover::before { background: #f59e0b; }
.ip-pillar-amber .ip-fare-pillar-icon {
  background: #fffbeb;
  color: #d97706;
  border: 1.5px solid #fde68a;
}
.ip-pillar-amber .ip-pillar-badge {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.ip-pillar-emerald:hover::before { background: #10b981; }
.ip-pillar-emerald .ip-fare-pillar-icon {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}
.ip-pillar-emerald .ip-pillar-badge {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.ip-pillar-blue:hover::before { background: #3b82f6; }
.ip-pillar-blue .ip-fare-pillar-icon {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #bfdbfe;
}
.ip-pillar-blue .ip-pillar-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.ip-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ip-fare-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.ip-fare-pillar-card:hover .ip-fare-pillar-icon {
  transform: scale(1.1);
}

.ip-pillar-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 50px;
}

.ip-fare-pillar-card h4 {
  font-size: 1.20rem;
  font-weight: 900;
  color: var(--ip-text-title);
  margin: 0 0 6px 0;
  letter-spacing: -0.015em;
}

.ip-fare-pillar-card p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ip-text-muted);
  margin: 0;
}

/* Transparency Insight Banner */
.ip-fare-transparency-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  border: 1.5px solid #fde68a;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.08);
}

.ip-trans-icon-wrap {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ip-trans-text strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 4px;
}

.ip-trans-text p {
  font-size: 0.86rem;
  color: #78350f;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .ip-fare-route-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .ip-route-connector {
    padding: 4px 0;
    min-width: 0;
  }
  .ip-fare-pipeline-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .ip-fare-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .ip-fare-pipeline-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .ip-pipeline-card {
    padding: 18px 16px;
    border-radius: 14px;
    gap: 12px;
  }
  .ip-pipeline-title {
    font-size: 1.10rem;
    margin-bottom: 4px;
  }
  .ip-pipeline-desc {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .ip-pipeline-status {
    padding-top: 8px;
  }
  .ip-fare-pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .ip-fare-pillar-card {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .ip-pillar-top {
    margin-bottom: 12px;
  }
  .ip-fare-pillar-card h4 {
    font-size: 1.10rem;
    margin-bottom: 4px;
  }
  .ip-fare-pillar-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }
  .ip-fare-transparency-banner {
    padding: 16px;
    border-radius: 14px;
    gap: 12px;
  }
  .ip-trans-icon-wrap {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }
  .ip-trans-text strong {
    font-size: 0.94rem;
    margin-bottom: 4px;
  }
  .ip-trans-text p {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}


/* ═══════════════════════════════════════════════════════════════
   4. LOCAL HOURLY PACKAGE CARDS (SaaS Tier Design)
   ═══════════════════════════════════════════════════════════════ */
.ip-packages-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ip-pkg-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 36px 28px;
  box-shadow: var(--ip-shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.ip-pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ip-shadow-hover);
  border-color: var(--ip-amber);
}

.ip-pkg-card.featured {
  border: 2px solid var(--ip-amber);
  background: linear-gradient(180deg, #fffbeb 0%, #ffffff 30%);
}

.ip-pkg-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--ip-amber);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}

.ip-pkg-title {
  font-family: var(--ip-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0 0 6px 0;
}

.ip-pkg-metrics {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--ip-border);
}

.ip-pkg-duration {
  font-family: var(--ip-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ip-text-title);
  line-height: 1;
}

.ip-pkg-km-tag {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ip-amber-dark);
  background: var(--ip-amber-light);
  padding: 4px 10px;
  border-radius: 6px;
}

.ip-pkg-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ip-pkg-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ip-text-body);
}

.ip-pkg-list li i {
  color: var(--ip-green);
  font-size: 0.95rem;
}

.ip-btn-select-pkg {
  width: 100%;
  padding: 13px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  color: var(--ip-text-title);
  font-family: var(--ip-font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.ip-btn-select-pkg:hover,
.ip-btn-select-pkg.is-featured,
.ip-pkg-card.featured .ip-btn-select-pkg {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-color: #f59e0b;
  color: #0f172a !important;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

/* ═══════════════════════════════════════════════════════════════
   5. VEHICLE FLEET TIER CARDS
   ═══════════════════════════════════════════════════════════════ */
.ip-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ip-fleet-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  overflow: hidden;
  box-shadow: var(--ip-shadow-card);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.ip-fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--ip-amber);
  box-shadow: var(--ip-shadow-hover);
}

.ip-fleet-media {
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  border-bottom: 1px solid var(--ip-border);
}

.ip-fleet-img {
  max-width: 90%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.15));
  transition: transform 0.3s ease;
}

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

.ip-fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid var(--ip-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ip-text-title);
}

.ip-fleet-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.ip-fleet-content h3 {
  font-family: var(--ip-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0 0 8px 0;
}

.ip-fleet-content p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ip-text-muted);
  margin: 0 0 16px 0;
}

.ip-fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ip-fleet-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ip-bg-page);
  border: 1px solid var(--ip-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ip-text-title);
}

.ip-btn-fleet-choose {
  width: 100%;
  padding: 11px;
  background: var(--ip-bg-page);
  border: 1px solid var(--ip-border);
  border-radius: 8px;
  color: var(--ip-text-title);
  font-family: var(--ip-font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.2s ease;
  display: block;
}

.ip-fleet-card:hover .ip-btn-fleet-choose {
  background: var(--ip-amber);
  border-color: var(--ip-amber);
  color: #0f172a;
}

/* ═══════════════════════════════════════════════════════════════
   6. SPLIT "TRAVEL WITH CONFIDENCE" SECTION
   ═══════════════════════════════════════════════════════════════ */
.ip-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.ip-split-image-box {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 20px;
  box-shadow: var(--ip-shadow-card);
}

.ip-split-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--ip-radius-md);
}

/* ═══════════════════════════════════════════════════════════════
   6. LUXURY BENEFITS BENTO GRID (Travel With Confidence)
   ═══════════════════════════════════════════════════════════════ */
.ip-luxury-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ip-benefit-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ip-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.28s ease;
}

.ip-benefit-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1);
}

.ip-bcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ip-bcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.ip-benefit-card:hover .ip-bcard-icon {
  transform: scale(1.1);
}

.ip-bcard-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  border-radius: 50px;
}

.ip-bcard-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--ip-text-title);
  margin: 0 0 6px 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.ip-bcard-desc {
  font-size: 0.85rem;
  color: var(--ip-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* 6 Theme Variants */
.ip-bcard-blue:hover::before { background: #3b82f6; }
.ip-bcard-blue .ip-bcard-icon {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #bfdbfe;
}
.ip-bcard-blue .ip-bcard-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.ip-bcard-emerald:hover::before { background: #10b981; }
.ip-bcard-emerald .ip-bcard-icon {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}
.ip-bcard-emerald .ip-bcard-badge {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.ip-bcard-amber:hover::before { background: #f59e0b; }
.ip-bcard-amber .ip-bcard-icon {
  background: #fffbeb;
  color: #d97706;
  border: 1.5px solid #fde68a;
}
.ip-bcard-amber .ip-bcard-badge {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.ip-bcard-purple:hover::before { background: #8b5cf6; }
.ip-bcard-purple .ip-bcard-icon {
  background: #fdf4ff;
  color: #9333ea;
  border: 1.5px solid #f5d0fe;
}
.ip-bcard-purple .ip-bcard-badge {
  background: #fdf4ff;
  color: #7e22ce;
  border: 1px solid #f5d0fe;
}

.ip-bcard-rose:hover::before { background: #f43f5e; }
.ip-bcard-rose .ip-bcard-icon {
  background: #fff1f2;
  color: #e11d48;
  border: 1.5px solid #fecdd3;
}
.ip-bcard-rose .ip-bcard-badge {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.ip-bcard-teal:hover::before { background: #14b8a6; }
.ip-bcard-teal .ip-bcard-icon {
  background: #f0fdfa;
  color: #0d9488;
  border: 1.5px solid #99f6e4;
}
.ip-bcard-teal .ip-bcard-badge {
  background: #f0fdfa;
  color: #0f766e;
  border: 1px solid #99f6e4;
}

@media (max-width: 991px) {
  .ip-luxury-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .ip-luxury-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   7. 4-STEP HORIZONTAL PROCESS
   ═══════════════════════════════════════════════════════════════ */
.ip-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ip-process-step {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 30px 22px;
  box-shadow: var(--ip-shadow-subtle);
  position: relative;
  transition: all 0.25s ease;
}

.ip-process-step:hover {
  border-color: var(--ip-amber);
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-card);
}

.ip-step-num {
  font-family: var(--ip-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ip-amber);
  line-height: 1;
  margin-bottom: 12px;
}

.ip-process-step h4 {
  font-family: var(--ip-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ip-text-title);
  margin: 0 0 8px 0;
}

.ip-process-step p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ip-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   8. USE CASES 6-GRID
   ═══════════════════════════════════════════════════════════════ */
.ip-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ip-usecase-item {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--ip-shadow-subtle);
  transition: all 0.25s ease;
}

.ip-usecase-item:hover {
  border-color: var(--ip-amber);
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-card);
}

.ip-usecase-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ip-amber-light);
  color: var(--ip-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.ip-usecase-item h4 {
  font-family: var(--ip-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ip-text-title);
  margin: 0 0 6px 0;
}

.ip-usecase-item p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ip-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   9. POPULAR ROUTES CARDS (One Way)
   ═══════════════════════════════════════════════════════════════ */
.ip-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ip-route-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-md);
  padding: 22px 18px;
  box-shadow: var(--ip-shadow-subtle);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ip-route-card:hover {
  border-color: var(--ip-amber);
  transform: translateY(-3px);
  box-shadow: var(--ip-shadow-card);
}

.ip-route-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ip-font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ip-text-title);
  margin-bottom: 12px;
}

.ip-route-pair i {
  color: var(--ip-amber);
  font-size: 0.85rem;
}

.ip-route-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ip-text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ip-border);
}

.ip-btn-route-book {
  width: 100%;
  padding: 8px;
  background: var(--ip-bg-page);
  border: 1px solid var(--ip-border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ip-text-title);
  text-align: center;
  text-decoration: none !important;
  display: block;
  transition: all 0.2s ease;
}

.ip-route-card:hover .ip-btn-route-book {
  background: var(--ip-amber);
  border-color: var(--ip-amber);
  color: #0f172a;
}

/* ═══════════════════════════════════════════════════════════════
   10. FAQ ACCORDION (Clean Minimalist)
   ═══════════════════════════════════════════════════════════════ */
.ip-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ip-faq-item {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-md);
  overflow: hidden;
  box-shadow: var(--ip-shadow-subtle);
  transition: border-color 0.2s ease;
}

.ip-faq-item.is-open {
  border-color: var(--ip-amber);
}

.ip-faq-trigger {
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--ip-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ip-text-title);
  cursor: pointer;
  outline: none !important;
}

.ip-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ip-bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ip-text-muted);
  transition: transform 0.2s ease;
}

.ip-faq-item.is-open .ip-faq-icon {
  transform: rotate(45deg);
  background: var(--ip-amber-light);
  color: var(--ip-amber-dark);
}

.ip-faq-content {
  display: none;
  padding: 0 22px 20px;
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--ip-text-muted);
}

.ip-faq-item.is-open .ip-faq-content {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   11. FINAL CTA STRIP
   ═══════════════════════════════════════════════════════════════ */
.ip-cta-surface {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 60%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: var(--ip-radius-xl);
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--ip-shadow-card);
  max-width: 960px;
  margin: 0 auto;
}

.ip-cta-surface h2 {
  font-family: var(--ip-font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0 0 14px 0;
}

.ip-cta-surface p {
  font-size: 1rem;
  line-height: 1.65;
  color: #78350f;
  max-width: 580px;
  margin: 0 auto 28px;
}

.ip-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ip-btn-cta-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  font-family: var(--ip-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
  transition: all 0.2s ease;
}

.ip-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.35);
}

.ip-btn-cta-phone {
  padding: 14px 28px;
  background: #ffffff;
  border: 1px solid #d97706;
  color: #92400e !important;
  font-family: var(--ip-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
  transition: all 0.2s ease;
}

.ip-btn-cta-phone:hover {
  background: #fffbeb;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS (Mobile-First Polish)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .ip-hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ip-split-grid {
    grid-template-columns: 1fr;
  }
  .ip-split-img {
    height: 260px;
  }
  .ip-packages-3col,
  .ip-fleet-grid,
  .ip-process-grid,
  .ip-usecases-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ip-routes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   12. ABOUT PAGE STYLES (Story, Founder & Metrics)
   ═══════════════════════════════════════════════════════════════ */
.ip-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.ip-story-img-wrap {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 20px;
  box-shadow: var(--ip-shadow-card);
}

.ip-story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--ip-radius-md);
}

.ip-exp-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
  padding: 16px 24px;
  border-radius: var(--ip-radius-md);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .ip-exp-badge-float {
    right: 12px;
    bottom: -12px;
    padding: 10px 16px;
  }
}

.ip-exp-badge-float strong {
  font-size: 2rem;
  font-weight: 800;
}

.ip-exp-badge-float span {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.ip-founder-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 44px 36px;
  box-shadow: var(--ip-shadow-card);
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.ip-founder-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ip-border);
}

.ip-founder-avatar {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  background: var(--ip-amber-light);
  color: var(--ip-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.ip-founder-title-info h3 {
  font-family: var(--ip-font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 0 0 4px 0;
}

.ip-founder-title-info span {
  font-size: 0.86rem;
  color: var(--ip-amber-dark);
  font-weight: 700;
}

.ip-founder-quote-box {
  background: var(--ip-bg-page);
  border-radius: 12px;
  padding: 20px 24px;
  border-left: 4px solid var(--ip-amber);
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--ip-text-title);
  line-height: 1.65;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   13. CONTACT & FORM STYLES
   ═══════════════════════════════════════════════════════════════ */
.ip-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.ip-contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ip-contact-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 24px 20px;
  box-shadow: var(--ip-shadow-subtle);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
}

.ip-contact-card:hover {
  border-color: var(--ip-amber);
  transform: translateY(-2px);
  box-shadow: var(--ip-shadow-card);
}

.ip-contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: var(--ip-amber-light);
  color: var(--ip-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ip-contact-details strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ip-text-muted);
  margin-bottom: 4px;
}

.ip-contact-details a,
.ip-contact-details span {
  font-family: var(--ip-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ip-text-title) !important;
  text-decoration: none !important;
}

.ip-contact-details a:hover {
  color: var(--ip-amber-dark) !important;
}

.ip-contact-form-surface {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 36px 32px;
  box-shadow: var(--ip-shadow-card);
}

/* ═══════════════════════════════════════════════════════════════
   14. PARTNER PAGES (Driver & Owner)
   ═══════════════════════════════════════════════════════════════ */
.ip-partner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.ip-partner-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.ip-partner-perk {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-md);
  padding: 18px 16px;
  box-shadow: var(--ip-shadow-subtle);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ip-partner-perk i {
  color: var(--ip-green);
  font-size: 1.1rem;
  margin-top: 2px;
}

.ip-partner-perk span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ip-text-title);
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════
   15. LEGAL PAGES (Terms & Privacy)
   ═══════════════════════════════════════════════════════════════ */
.ip-legal-card {
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 48px 40px;
  box-shadow: var(--ip-shadow-card);
  max-width: 900px;
  margin: 0 auto;
}

.ip-legal-article h2 {
  font-family: var(--ip-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ip-text-title);
  margin: 32px 0 14px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ip-border);
}

.ip-legal-article p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ip-text-body);
  margin-bottom: 18px;
}

.ip-legal-article ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.ip-legal-article ul li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--ip-text-body);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   16. ERROR 404 PAGE
   ═══════════════════════════════════════════════════════════════ */
.ip-404-wrap {
  text-align: center;
  padding: 80px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.ip-404-number {
  font-family: var(--ip-font-heading);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .ip-story-grid,
  .ip-contact-grid,
  .ip-partner-grid {
    grid-template-columns: 1fr;
  }
  .ip-exp-badge-float {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 600px) {
  .ip-partner-perks-list {
    grid-template-columns: 1fr;
  }
  .ip-legal-card {
    padding: 28px 18px;
  }
}



/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN ADDITIONS FOR THE GRID SYSTEMS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .ip-hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ip-packages-3col {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ip-fleet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ip-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ip-usecases-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ip-routes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Autocomplete Dropdown in Inner Pages */
.ip-autocomplete-container {
  position: relative;
}

.ip-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-md);
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
  max-height: 240px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.ip-suggestions-dropdown.is-active {
  display: block;
  animation: ipSugFadeIn 0.15s ease-out;
}

@keyframes ipSugFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ip-sug-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.12s ease;
}

.ip-sug-item:last-child {
  border-bottom: none;
}

.ip-sug-item:hover {
  background: var(--ip-amber-light);
}

.ip-sug-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 6px;
  background: var(--ip-bg-page);
  color: var(--ip-amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ip-sug-item:hover .ip-sug-icon {
  background: #ffffff;
  color: var(--ip-amber);
}

.ip-sug-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.ip-sug-info strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ip-text-title);
  line-height: 1.25;
}

.ip-sug-info span {
  font-size: 0.72rem;
  color: var(--ip-text-muted);
}

.ip-sug-empty {
  padding: 14px 16px;
  font-size: 0.8rem;
  color: var(--ip-text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .ip-container {
    padding: 0 16px;
  }
  .ip-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ip-packages-3col,
  .ip-fleet-grid,
  .ip-process-grid,
  .ip-usecases-grid,
  .ip-routes-grid {
    grid-template-columns: 1fr;
  }
  .ip-hero-left {
    padding-top: 0;
  }
  .ip-hero-heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .ip-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .ip-cta-surface {
    padding: 32px 18px;
    border-radius: var(--ip-radius-lg);
  }
  .ip-cta-surface h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .ip-container {
    padding: 0 12px;
  }
  .ip-breadcrumb-pill {
    font-size: 0.75rem;
    padding: 4px 10px;
    margin-bottom: 16px;
  }
  .ip-hero-canvas {
    padding: 24px 0 40px;
  }
  .ip-hero-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  .ip-hero-heading {
    font-size: 1.5rem;
  }
  .ip-hero-lead {
    font-size: 0.88rem;
  }
  .ip-contact-form-surface {
    padding: 22px 14px;
    border-radius: var(--ip-radius-md);
  }
  .ip-legal-card {
    padding: 20px 14px;
    border-radius: var(--ip-radius-md);
  }
  .ip-legal-article h2 {
    font-size: 1.15rem;
  }
  .ip-legal-article p,
  .ip-legal-article ul li {
    font-size: 0.88rem;
  }
  .ip-partner-perks-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .ip-container {
    padding: 0 8px;
  }
  .ip-hero-heading {
    font-size: 1.35rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   DRIVER PARTNER PAGE MODERN CARDS & FORM
   ═══════════════════════════════════════════════════════════════ */
.dc-metrics-strip-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 28px auto 0;
}

.dc-stat-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease;
}

.dc-stat-box:hover {
  transform: translateY(-3px);
  border-color: #f59e0b;
}

.dc-stat-box strong {
  display: block;
  font-family: var(--ip-font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.dc-stat-box span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 4px;
}

.ip-docs-checklist-box {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  margin-bottom: 20px;
}

.ip-docs-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.ip-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ip-doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
}

.ip-instant-call-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  border: 1.5px solid #fde68a;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.08);
}

.ip-instant-call-banner strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 2px;
}

.ip-instant-call-banner p {
  font-size: 0.84rem;
  color: #78350f;
  margin: 0;
}

.ip-driver-form-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.ip-driver-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}

.ip-driver-form-header h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 4px 0;
  letter-spacing: -0.015em;
}

.ip-driver-form-header p {
  font-size: 0.84rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 991px) {
  .dc-metrics-strip-4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .ip-partner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

/* ═══════════════════════════════════════════════════════════════
   CONTACT US MODERN CHANNELS & CARDS
   ═══════════════════════════════════════════════════════════════ */
.ip-contact-card-modern {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ip-contact-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background 0.25s ease;
}

.ip-contact-card-modern:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.ip-ccard-amber:hover::before { background: #f59e0b; }
.ip-ccard-amber .ip-contact-icon-wrap {
  background: #fffbeb;
  color: #d97706;
  border: 1.5px solid #fde68a;
}

.ip-ccard-emerald:hover::before { background: #10b981; }
.ip-ccard-emerald .ip-contact-icon-wrap {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}

.ip-ccard-blue:hover::before { background: #3b82f6; }
.ip-ccard-blue .ip-contact-icon-wrap {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #bfdbfe;
}

.ip-ccard-purple:hover::before { background: #8b5cf6; }
.ip-ccard-purple .ip-contact-icon-wrap {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1.5px solid #ddd6fe;
}

.ip-contact-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.ip-contact-card-modern:hover .ip-contact-icon-wrap {
  transform: scale(1.08);
}

.ip-contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ip-contact-card-text small {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.ip-contact-main-link {
  font-family: var(--ip-font-heading);
  font-size: 1.12rem;
  font-weight: 900;
  color: #0f172a !important;
  text-decoration: none !important;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.ip-contact-main-link:hover {
  color: #d97706 !important;
}

.ip-contact-address-text {
  font-family: var(--ip-font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.ip-contact-card-text span {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   GOOGLE MAPS PLACES AUTOCOMPLETE WIDGET (Ultra Luxury Styling)
   ═══════════════════════════════════════════════════════════════ */
/* 1. Hide "Powered by Google" bar & logo completely */
.pac-logo::after,
.hdpi.pac-logo::after {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background-image: none !important;
  visibility: hidden !important;
}

/* 2. Main Dropdown Card */
.pac-container {
  background-color: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04) !important;
  font-family: var(--ip-font-heading, 'Plus Jakarta Sans', 'Inter', sans-serif) !important;
  margin-top: 10px !important;
  margin-left: -52px !important; /* Shifts box to align directly with the outer search card left edge */
  z-index: 9999999 !important;
  overflow: hidden !important;
  padding: 8px !important;
  min-width: 320px !important;
  max-width: 520px !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .pac-container {
    margin-left: 0 !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box !important;
  }
}

/* 3. Each Location Suggestion Item */
.pac-item {
  padding: 10px 14px !important;
  font-size: 0.88rem !important;
  color: #64748b !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
  border-top: none !important;
  border-radius: 12px !important;
  margin-bottom: 4px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  line-height: 1.4 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.pac-item:last-child {
  margin-bottom: 0 !important;
}

.pac-item:hover,
.pac-item-selected {
  background-color: #fffbeb !important;
  border-color: #fde68a !important;
  transform: translateX(3px) !important;
}

/* 4. Luxury Custom Location Pin Icon */
.pac-icon,
.pac-icon-marker {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 10px !important;
  background-color: #fef3c7 !important;
  background-image: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  position: relative !important;
  transition: transform 0.2s ease !important;
}

.pac-item:hover .pac-icon {
  background-color: #fde68a !important;
  transform: scale(1.08) !important;
}

.pac-icon::before {
  content: '' !important;
  width: 14px !important;
  height: 14px !important;
  background-color: #d97706 !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='currentColor' d='M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain !important;
}

/* 5. Main Place Title (Bold & Crisp) */
.pac-item-query {
  font-family: var(--ip-font-heading) !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  display: inline-block !important;
  margin-right: 4px !important;
}

/* 6. Matched User Search Keyword (Highlighted in Amber) */
.pac-matched {
  font-weight: 900 !important;
  color: #b45309 !important;
  background-color: rgba(245, 158, 11, 0.12) !important;
  padding: 1px 4px !important;
  border-radius: 4px !important;
}

/* 7. Custom Select Dropdown Styling */
.dc-time-select,
.dc-pkg-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  background-size: 16px 16px !important;
  padding-right: 22px !important;
  font-family: var(--dc-font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dc-text-head);
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

.dc-pkg-select option,
.dc-time-select option {
  background-color: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
}

.dc-card-pkg {
  background: #ffffff !important;
  border-color: var(--dc-border) !important;
}

.dc-card-pkg:hover {
  border-color: var(--dc-border-hover) !important;
  background: #fafafa !important;
}

.dc-card-pkg:focus-within {
  border-color: var(--dc-amber) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3.5px rgba(245, 158, 11, 0.14) !important;
}

/* Booking Footer Notes & Helpline Strip */
.dc-booking-footer-notes {
  margin-top: 14px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #475569;
}

.dc-note-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

.dc-note-item i {
  font-size: 0.9rem;
}

.dc-note-phone-link {
  color: #0f172a !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  background: #ffffff;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  transition: all 0.15s ease;
}

.dc-note-phone-link:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #b45309 !important;
}

.dc-passenger-security-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: #475569;
}

.dc-sec-note-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2: TRUST & VALUE PROPOSITIONS STRIP (Modern SaaS Bento UI)
   ═══════════════════════════════════════════════════════════════ */
.dc-trust-strip-section {
  padding: 44px 0 52px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1.5px solid #e2e8f0;
  position: relative;
}

.dc-trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dc-trust-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.dc-trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s ease;
}

.dc-trust-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1);
}

.dc-trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.dc-trust-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

.dc-trust-card:hover .dc-trust-icon-wrap {
  transform: scale(1.1) rotate(2deg);
}

.dc-trust-badge {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.dc-trust-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dc-text-head);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 8px 0;
}

.dc-trust-desc {
  margin: 0 0 14px 0;
  font-size: 0.84rem;
  color: var(--dc-text-muted);
  line-height: 1.55;
}

.dc-trust-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 8px;
  width: fit-content;
}

/* Color Themed Icon Wrappers & Accents */
.dc-trust-amber:hover::before { background: #f59e0b; }
.dc-trust-amber .dc-trust-icon-wrap {
  background: #fffbeb;
  color: #d97706;
  border: 1.5px solid #fde68a;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}
.dc-trust-amber .dc-trust-badge {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}
.dc-trust-amber .text-amber { color: #d97706; }

.dc-trust-emerald:hover::before { background: #10b981; }
.dc-trust-emerald .dc-trust-icon-wrap {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}
.dc-trust-emerald .dc-trust-badge {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.dc-trust-emerald .text-green { color: #059669; }

.dc-trust-blue:hover::before { background: #3b82f6; }
.dc-trust-blue .dc-trust-icon-wrap {
  background: #eff6ff;
  color: #2563eb;
  border: 1.5px solid #bfdbfe;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}
.dc-trust-blue .dc-trust-badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}
.dc-trust-blue .text-blue { color: #2563eb; }

.dc-trust-purple:hover::before { background: #8b5cf6; }
.dc-trust-purple .dc-trust-icon-wrap {
  background: #fdf4ff;
  color: #9333ea;
  border: 1.5px solid #f5d0fe;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.15);
}
.dc-trust-purple .dc-trust-badge {
  background: #fdf4ff;
  color: #7e22ce;
  border: 1px solid #f5d0fe;
}
.dc-trust-purple .text-purple { color: #9333ea; }

/* ═══════════════════════════════════════════════════════════════
   HERO BOOKING WIDGET & SEARCH RESULTS MOBILE RESPONSIVENESS
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .dc-hero-booking-centerpiece {
    max-width: 100%;
    padding: 0 4px;
  }
  .dc-fields-grid {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .dc-widget-tabs-bar {
    padding: 8px 6px;
    background: #f8fafc;
  }

  .dc-tabs-group {
    width: 100%;
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    box-sizing: border-box;
  }

  .dc-tab-pill {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 3px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
  }

  .dc-tab-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.74rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3px auto;
    flex-shrink: 0;
  }

  .dc-tab-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    min-width: 0;
  }

  .dc-tab-label strong {
    font-size: 0.74rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.15;
    letter-spacing: -0.1px;
    display: block;
  }

  .dc-tab-label small {
    display: block !important;
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1.1;
    margin-top: 1px;
    opacity: 0.8;
  }

  .dc-widget-quick-routes {
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .dc-widget-body {
    padding: 14px 12px 18px;
  }

  .dc-fields-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .dc-input-card {
    min-height: 54px;
    padding: 6px 10px;
    gap: 8px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  #dcPickupCard,
  #dcDropCard,
  #engineLocalPkgWrapper {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }

  .dc-swap-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: -4px 0;
    z-index: 4;
  }

  .dc-swap-locations-btn {
    transform: rotate(90deg);
    width: 34px;
    height: 34px;
  }

  .dc-swap-locations-btn:hover {
    transform: rotate(90deg) scale(1.08);
  }

  #dcDateCard,
  #dcTimeCard,
  #engineReturnDateWrapper,
  #engineReturnTimeWrapper {
    flex: 1 1 calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    min-width: 0 !important;
  }

  .dc-widget-action-row {
    margin-top: 14px;
  }

  .dc-btn-check-fare {
    width: 100% !important;
    min-width: 100% !important;
    padding: 13px 16px;
    font-size: 0.92rem;
    justify-content: center;
  }

  /* Search Results Mobile */
  .dc-res-summary-card {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .dc-res-route-title {
    font-size: 1.15rem;
    flex-wrap: wrap;
  }

  .dc-res-metrics-group {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .dc-metric-pill {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .dc-btn-modify-search {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .dc-res-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dc-res-heading {
    font-size: 1.1rem;
  }

  .dc-vehicle-results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dc-veh-card {
    padding: 16px;
  }

  .dc-passenger-booking-box {
    padding: 18px 16px;
  }

  .dc-passenger-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION PAGES: HERO CITY VISUAL & SPOTLIGHT SHOWCASE STYLES
   ═══════════════════════════════════════════════════════════════ */

.ip-hero-city-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin: 18px 0 22px 0;
  border: 1.5px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(245, 158, 11, 0.12);
  background: #ffffff;
}

.ip-hero-city-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.ip-hero-city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ip-hero-city-card:hover .ip-hero-city-img {
  transform: scale(1.035);
}

.ip-hero-city-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ip-hero-city-fleet-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #0f172a;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Universal City Spotlight Card */
.dc-city-spotlight-card {
  background: #ffffff;
  border: 1px solid var(--dc-border, #e2e8f0);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  margin-bottom: 48px;
}

.dc-city-spotlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.dc-city-spotlight-media {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.dc-city-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.dc-city-spotlight-card:hover .dc-city-spotlight-img {
  transform: scale(1.03);
}

.dc-city-badge-float {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dc-city-spotlight-content {
  padding: 40px 36px;
}

.dc-city-spotlight-content h3 {
  font-family: var(--ip-font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--dc-text-title, #0f172a);
  margin-bottom: 14px;
  line-height: 1.3;
}

.dc-city-spotlight-content p {
  font-size: 0.96rem;
  color: var(--dc-text-body, #475569);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dc-city-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dc-city-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dc-text-title, #0f172a);
  font-weight: 600;
}

.dc-city-highlight-item i {
  color: var(--dc-amber, #f59e0b);
  margin-top: 3px;
  font-size: 0.95rem;
}

/* Universal Routes Table */
.dc-routes-table-wrap {
  background: #ffffff;
  border: 1px solid var(--dc-border, #e2e8f0);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.dc-routes-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.dc-routes-table th {
  background: #f8fafc;
  padding: 14px 20px;
  font-weight: 700;
  color: var(--dc-text-title, #0f172a);
  border-bottom: 1px solid var(--dc-border, #e2e8f0);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dc-routes-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--dc-text-body, #475569);
  vertical-align: middle;
}

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

.dc-routes-table tr:hover td {
  background: #fdfaf3;
}

.dc-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--dc-text-title, #0f172a);
}

.dc-fare-tag {
  font-weight: 800;
  color: var(--dc-amber-dark, #d97706);
  font-size: 0.98rem;
}

.dc-btn-table-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dc-amber, #f59e0b);
  color: #ffffff !important;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.dc-btn-table-action:hover {
  background: #d97706;
}

.dc-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dc-faq-card {
  background: #ffffff;
  border: 1px solid var(--dc-border, #e2e8f0);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dc-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.dc-faq-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dc-text-title, #0f172a);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dc-faq-card h4 i {
  color: var(--dc-amber, #f59e0b);
  margin-top: 3px;
  flex-shrink: 0;
}

.dc-faq-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--dc-text-body, #475569);
  line-height: 1.65;
}

@media (max-width: 991px) {
  .ip-hero-city-media {
    height: 200px;
  }
  .dc-city-spotlight-grid {
    grid-template-columns: 1fr;
  }
  .dc-city-spotlight-media {
    min-height: 260px;
    max-height: 320px;
  }
  .dc-city-spotlight-content {
    padding: 28px 22px;
  }
  .dc-city-highlights-list {
    grid-template-columns: 1fr;
  }
  .dc-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ip-hero-city-media {
    height: 180px;
  }
  .ip-hero-city-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
  .ip-hero-city-fleet-tag {
    font-size: 0.68rem;
    padding: 4px 8px;
  }
  .dc-routes-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dc-routes-table {
    min-width: 540px;
  }
}

/* Centered Hero Route Quick Select Pills (Location Pages) */
.dc-hero-quick-routes {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dc-hero-quick-routes-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dc-text-muted, #64748b);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dc-hero-quick-routes-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.dc-hero-quick-routes-list .ip-route-pill-btn {
  background: #ffffff;
  border: 1px solid var(--ip-border, #e2e8f0);
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dc-text-title, #0f172a);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04);
}

.dc-hero-quick-routes-list .ip-route-pill-btn:hover {
  background: var(--dc-amber, #f59e0b);
  border-color: var(--dc-amber, #f59e0b);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.28);
}