/* ==========================================================================
   SHREE SHARADA TAXI - FLEET & RATES PAGE STYLESHEET
   Dedicated stylesheet for fleet.html adhering strictly to designandcolor.md
   Color System: Obsidian Dark (#0A0A0B) & Brand Taxi Yellow (#F4C401)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. PAGE HERO (Dark #0A0A0B)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--bg-dark);
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/fleet.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.29;
  z-index: 0;
  pointer-events: none;
}

.page-hero-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(244, 196, 1, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(244, 196, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 800px;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.1;
  margin: 0.85rem 0 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25D366 !important;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #25D366 !important;
  color: #0A0A0B !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Category Quick Jump Bar */
.fleet-jump-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.jump-link:hover {
  background: var(--primary);
  color: #0a0a0b;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244, 196, 1, 0.25);
}

/* Page Hero Badge Card (Right Side) */
.page-hero-badge-card {
  background: linear-gradient(145deg, #141417 0%, #0d0d0f 100%);
  border: 1px solid rgba(244, 196, 1, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 196, 1, 0.4);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.2);
  border: 1px solid rgba(244, 196, 1, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #B38800;
  flex-shrink: 0;
}

.trust-badge-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0A0A0B;
  line-height: 1.1;
}

.trust-badge-sub {
  font-size: 0.88rem;
  color: #555555;
  font-weight: 700;
  margin-top: 0.25rem;
}

.hero-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-highlight-item i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   2. ALTERNATING SECTION RHYTHM & BASE STYLES
   -------------------------------------------------------------------------- */
.section-yellow {
  background-color: var(--primary) !important;
  color: #0a0a0b;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark) !important;
  color: var(--text-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. SECTION HEADERS
   -------------------------------------------------------------------------- */
.section-header-yellow {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header-yellow .eyebrow-dark {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0a0a0b;
  background: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(10, 10, 11, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header-yellow h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-yellow p {
  font-size: 1.05rem;
  color: #27272a;
  line-height: 1.6;
}

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

.section-header-dark .eyebrow-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(244, 196, 1, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(244, 196, 1, 0.3);
}

.section-header-dark h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-dark p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   4. VEHICLE CARDS (YELLOW SECTION & DARK SECTION)
   -------------------------------------------------------------------------- */
.fleet-grid-yellow,
.fleet-grid-dark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

/* Card in Yellow Section: Obsidian Deep Card for maximum contrast */
.fleet-card-yellow-section {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.fleet-card-yellow-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(244, 196, 1, 0.6);
}

/* Alternate Card 1: Pure White (#FFFFFF) */
.fleet-card-yellow-section.card-white {
  background: #FFFFFF;
  color: #0A0A0B;
  border: 1px solid rgba(10, 10, 11, 0.12);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.fleet-card-yellow-section.card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
  border-color: #0A0A0B;
}

.fleet-card-yellow-section.card-white .fleet-body-wrap h3 {
  color: #0A0A0B;
}

.fleet-card-yellow-section.card-white .fleet-capacity-subtitle {
  color: #8A6700;
}

.fleet-card-yellow-section.card-white .fleet-feat-pill {
  color: #374151;
  background: #F4F4F6;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fleet-card-yellow-section.card-white .fleet-feat-pill i {
  color: #B38800;
}

.fleet-card-yellow-section.card-white .fleet-pricing-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fleet-card-yellow-section.card-white .rate-display .rate-per-km {
  color: #0A0A0B;
}

.fleet-card-yellow-section.card-white .rate-display .rate-per-km small {
  color: #6B7280;
}

.fleet-card-yellow-section.card-white .rate-display .rate-note {
  color: #6B7280;
}

.fleet-card-yellow-section.card-white .fleet-card-bg-icon {
  color: #000000;
  opacity: 0.035;
}

/* Card in Dark Section: Refined Slate Surface Card */
.fleet-card-dark-section {
  background: #141416;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.fleet-card-dark-section:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 196, 1, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Card in Dark Section: Pure White (#FFFFFF) Alternate Variant */
.fleet-card-dark-section.card-white {
  background: #FFFFFF;
  color: #0A0A0B;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.fleet-card-dark-section.card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.fleet-card-dark-section.card-white .fleet-body-wrap h3 {
  color: #0A0A0B;
}

.fleet-card-dark-section.card-white .fleet-capacity-subtitle {
  color: #8A6700;
}

.fleet-card-dark-section.card-white .fleet-feat-pill {
  color: #374151;
  background: #F4F4F6;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fleet-card-dark-section.card-white .fleet-feat-pill i {
  color: #B38800;
}

.fleet-card-dark-section.card-white .fleet-pricing-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fleet-card-dark-section.card-white .rate-display .rate-per-km {
  color: #0A0A0B;
}

.fleet-card-dark-section.card-white .rate-display .rate-per-km small {
  color: #6B7280;
}

.fleet-card-dark-section.card-white .rate-display .rate-note {
  color: #6B7280;
}

.fleet-card-dark-section.card-white .fleet-card-bg-icon {
  color: #000000;
  opacity: 0.035;
}

/* Image Wrap & Badges */
.fleet-media-wrap {
  position: relative;
  height: 100%;
  min-height: 240px;
  background: #0d0d0f;
  overflow: hidden;
}

.fleet-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card-yellow-section:hover .fleet-media-wrap img,
.fleet-card-dark-section:hover .fleet-media-wrap img {
  transform: scale(1.08);
}

.fleet-rate-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #0a0a0b;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.fleet-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.fleet-badge-overlay .badge {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 196, 1, 0.4);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}

/* Card Body Content */
.fleet-body-wrap {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.fleet-body-wrap h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.fleet-capacity-subtitle {
  font-size: 0.86rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.15rem;
}

.fleet-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.fleet-feat-pill {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.fleet-feat-pill i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.fleet-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  gap: 1rem;
}

.rate-display .rate-per-km {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.rate-display .rate-per-km small {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.rate-display .rate-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Subtle background SVG watermark icon */
.fleet-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 8rem;
  color: #ffffff;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

/* --------------------------------------------------------------------------
   5. LARGE COACHES & BUSES (YELLOW SECTION)
   -------------------------------------------------------------------------- */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.coach-card {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.coach-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 196, 1, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.coach-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #141416;
}

.coach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coach-card:hover .coach-media img {
  transform: scale(1.08);
}

.coach-seat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #0a0a0b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.coach-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.coach-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.coach-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.coach-amenities-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.coach-amenity-item {
  font-size: 0.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.coach-amenity-item i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   6. ASSURANCE PILLARS (Pattern 4: Alternating White and Yellow Cards)
   -------------------------------------------------------------------------- */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.assurance-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.assurance-card:hover {
  transform: translateY(-6px);
}

/* Pure White Card */
.assurance-card.card-white {
  background: #ffffff;
  color: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.assurance-card.card-white .assurance-icon {
  background: rgba(244, 196, 1, 0.2);
  color: #0a0a0b;
  border: 1px solid rgba(244, 196, 1, 0.5);
}

.assurance-card.card-white h3 {
  color: #0a0a0b;
}

.assurance-card.card-white p {
  color: #4b5563;
}

/* Brand Yellow Card */
.assurance-card.card-yellow {
  background: var(--primary);
  color: #0a0a0b;
  border: 1px solid rgba(244, 196, 1, 0.6);
  box-shadow: 0 15px 35px rgba(244, 196, 1, 0.25);
}

.assurance-card.card-yellow .assurance-icon {
  background: #0a0a0b;
  color: var(--primary);
  border: 1px solid rgba(10, 10, 11, 0.2);
}

.assurance-card.card-yellow h3 {
  color: #0a0a0b;
}

.assurance-card.card-yellow p {
  color: #1f2937;
}

.assurance-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.assurance-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.assurance-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. 24/7 DISPATCH READY BOX (Pattern 7)
   -------------------------------------------------------------------------- */
.cta-ready-box {
  background: #111113;
  border: 2px solid rgba(244, 196, 1, 0.4);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  z-index: 1;
}

.cta-ready-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bengaluru-airport.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.cta-ready-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
  z-index: 2;
}

.cta-ready-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-ready-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .fleet-grid-yellow,
  .fleet-grid-dark {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-hero {
    padding: 7rem 0 3.5rem;
  }
}

@media (max-width: 640px) {
  .fleet-card-yellow-section,
  .fleet-card-dark-section {
    grid-template-columns: 1fr;
  }

  .fleet-media-wrap {
    height: 200px;
    min-height: 200px;
  }

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

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

  .section-yellow,
  .section-dark {
    padding: 4.5rem 0;
  }

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

  .fleet-pricing-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .fleet-pricing-row .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons-group {
    flex-direction: column;
  }

  .cta-buttons-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .page-hero {
    padding: 5.5rem 0 2.75rem;
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    margin: 0.65rem 0 1rem;
  }

  .page-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .page-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fleet-jump-bar {
    gap: 0.45rem;
  }

  .page-hero-badge-card {
    padding: 1.5rem 1.15rem;
  }

  .hero-trust-badge {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .section-yellow,
  .section-dark {
    padding: 3rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 2rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    margin-bottom: 0.65rem;
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .fleet-media-wrap {
    height: 170px;
    min-height: 170px;
  }

  .fleet-body-wrap {
    padding: 1.35rem 1.15rem;
  }

  .fleet-body-wrap h3 {
    font-size: 1.25rem;
  }

  .coach-card {
    padding: 1.6rem 1.15rem;
  }

  .coach-card h3 {
    font-size: 1.25rem;
  }

  .assurance-card {
    padding: 1.6rem 1.15rem;
  }

  .terms-list {
    padding: 1.6rem 1.15rem;
  }

  .cta-ready-box {
    padding: 2.25rem 1.15rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  .cta-ready-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 350px) {
  .page-hero {
    padding: 4.75rem 0 2.25rem;
  }

  .page-hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .page-hero-subtitle {
    font-size: 0.85rem;
  }

  .jump-link {
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
  }

  .page-hero-badge-card {
    padding: 1.15rem 0.85rem;
  }

  .hero-trust-badge {
    padding: 0.75rem 0.75rem;
    gap: 0.65rem;
  }

  .trust-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .trust-badge-val {
    font-size: 1.25rem;
  }

  .trust-badge-sub {
    font-size: 0.78rem;
  }

  .section-yellow,
  .section-dark {
    padding: 2.25rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 1.5rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.82rem;
  }

  .fleet-media-wrap {
    height: 135px;
    min-height: 135px;
  }

  .fleet-body-wrap {
    padding: 1.15rem 0.85rem;
  }

  .fleet-body-wrap h3 {
    font-size: 1.1rem;
  }

  .fleet-capacity-subtitle {
    font-size: 0.82rem;
  }

  .fleet-feat-pill {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .coach-card {
    padding: 1.25rem 0.85rem;
  }

  .coach-card h3 {
    font-size: 1.1rem;
  }

  .coach-card p {
    font-size: 0.85rem;
  }

  .assurance-card {
    padding: 1.25rem 0.85rem;
  }

  .assurance-card h3 {
    font-size: 1.1rem;
  }

  .assurance-card p {
    font-size: 0.85rem;
  }

  .terms-list {
    padding: 1.25rem 0.85rem;
  }

  .term-item {
    font-size: 0.82rem;
  }

  .cta-ready-box {
    padding: 1.75rem 0.85rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .cta-ready-box p {
    font-size: 0.82rem;
  }
}

@media (max-width: 240px) {
  .page-hero-title {
    font-size: 1.2rem;
  }

  .fleet-body-wrap,
  .coach-card,
  .assurance-card,
  .terms-list {
    padding: 1rem 0.65rem;
  }
}
