/* ═══════════════════════════════════════════════════════════════
   DIVYANSHI CAB — INTERCITY ROUTE LANDING PAGE STYLESHEET
   Startup-Grade Mobility UI (Uber / Savaari / MakeMyTrip standard)
   ═══════════════════════════════════════════════════════════════ */

/* ── 0. HERO SECTION TRUST BADGES (HIGH VISIBILITY) ── */
.dc-route-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dc-route-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
  letter-spacing: -0.01em;
}

.dc-route-hero-pill:hover {
  border-color: #f59e0b !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
  color: #0f172a !important;
}

.dc-route-hero-pill i {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dc-route-hero-pill i.icon-amber {
  color: #d97706 !important;
}

.dc-route-hero-pill i.icon-sky {
  color: #0284c7 !important;
}

.dc-route-hero-pill i.icon-emerald {
  color: #059669 !important;
}

/* Fallback protection if .dc-ftr-feat-pill is referenced in hero */
.dc-hero-section .dc-ftr-feat-pill {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06) !important;
}

@media (max-width: 575.98px) {
  .dc-route-hero-badges {
    gap: 8px;
    margin-top: 14px;
  }
  .dc-route-hero-pill {
    padding: 6px 12px;
    font-size: 0.78rem;
    gap: 6px;
  }
}

/* ── 1. ROUTE QUICK STATS BAR ── */
.dc-route-stats-strip {
  background: var(--dc-bg-card, #ffffff);
  border: 1.5px solid var(--dc-border, #e2e8f0);
  border-radius: 18px;
  padding: 22px 28px;
  margin: 28px auto 44px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 991.98px) {
  .dc-route-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 20px;
    gap: 16px;
    margin: 24px auto 36px;
  }
}

@media (max-width: 575.98px) {
  .dc-route-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 12px;
    gap: 12px;
    margin: 20px auto 28px;
  }
}

.dc-route-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 575.98px) {
  .dc-route-stat-item {
    gap: 10px;
  }
}

.dc-route-stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .dc-route-stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

.dc-stat-amber {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fef3c7;
}

.dc-stat-blue {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
}

.dc-stat-purple {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ede9fe;
}

.dc-stat-green {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.dc-route-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--dc-text-muted, #64748b);
  margin-bottom: 2px;
  line-height: 1.2;
}

.dc-route-stat-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dc-text-head, #0f172a);
  line-height: 1.25;
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .dc-route-stat-val {
    font-size: 0.95rem;
  }
}

/* ── 2. ROUTE GUIDE & CORRIDOR SHOWCASE ── */
.dc-route-guide-section {
  padding: 64px 0 54px;
  background: #ffffff;
}

.dc-route-overview-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--dc-text-body, #334155);
  margin-top: 14px;
  margin-bottom: 24px;
}

.dc-route-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .dc-route-features-grid {
    grid-template-columns: 1fr;
  }
}

.dc-route-feat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s ease;
}

.dc-route-feat-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.dc-route-feat-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.dc-route-feat-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.45;
}

/* Corridor Boarding & Drop Card */
.dc-route-corridor-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 38px -8px rgba(15, 23, 42, 0.08);
}

.dc-corridor-media-wrap {
  position: relative;
  height: 210px;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.dc-corridor-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dc-route-corridor-card:hover .dc-corridor-media-img {
  transform: scale(1.03);
}

.dc-corridor-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
}

.dc-corridor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.92);
  color: #0f172a;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 6px;
}

.dc-corridor-route-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dc-corridor-body {
  padding: 22px 24px;
}

.dc-corridor-group {
  margin-bottom: 18px;
}

.dc-corridor-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.dc-corridor-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 9px;
}

.dc-corridor-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 600;
  line-height: 1.3;
}

.dc-chip-origin {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
}

.dc-chip-origin i {
  color: #f59e0b;
  font-size: 0.72rem;
}

.dc-chip-dest {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.dc-chip-dest i {
  color: #10b981;
  font-size: 0.72rem;
}

.dc-corridor-notice {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
}

.dc-corridor-notice i {
  color: #3b82f6;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── 3. VEHICLE FLEET & ROUTE FARES ── */
.dc-route-fleet-section {
  padding: 68px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.dc-route-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.dc-route-fleet-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dc-route-fleet-card:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.12);
}

.dc-route-fleet-card.is-popular {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px -4px rgba(245, 158, 11, 0.18);
}

.dc-rf-img-box {
  background: radial-gradient(ellipse at 50% 50%, #fffbeb 0%, #f8fafc 75%);
  padding: 24px 20px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 165px;
}

.dc-rf-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
}

.dc-rf-badge-popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: none;
  color: #0f172a;
}

.dc-rf-car-img {
  max-width: 220px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.dc-route-fleet-card:hover .dc-rf-car-img {
  transform: scale(1.05);
}

.dc-rf-models-pill {
  position: absolute;
  bottom: 8px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.4px;
}

.dc-rf-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dc-rf-category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #f59e0b;
  margin-bottom: 2px;
}

.dc-rf-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.dc-rf-specs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.dc-rf-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
}

.dc-rf-fare-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 10px 0 12px 0;
  padding: 10px 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
}

.dc-rf-fare-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #047857;
  line-height: 1;
}

.dc-rf-fare-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #065f46;
}

.dc-rf-ideal {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.dc-btn-book-fleet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a !important;
  font-size: 0.88rem;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: all 0.2s ease;
}

.dc-btn-book-fleet:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
  color: #0f172a !important;
}

/* ── 4. ROUTE TRUST & HIGHWAY DISPATCH PERKS ── */
.dc-route-trust-section {
  padding: 56px 0;
  background: #ffffff;
}

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

@media (max-width: 991.98px) {
  .dc-trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .dc-trust-strip-grid {
    grid-template-columns: 1fr;
  }
}

.dc-trust-strip-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s ease;
}

.dc-trust-strip-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.dc-trust-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 4px;
}

.dc-trust-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.dc-trust-card-desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* ── 5. ROUTE FAQS ACCORDION ── */
.dc-route-faq-section {
  padding: 68px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.dc-faq-accordion-wrap {
  max-width: 820px;
  margin: 36px auto 0;
}

.dc-faq-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.dc-faq-item:hover {
  border-color: #cbd5e1;
}

.dc-faq-item.is-open {
  border-color: #f59e0b;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.08);
}

.dc-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.15s ease;
}

.dc-faq-q-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dc-faq-num {
  font-size: 0.80rem;
  font-weight: 800;
  color: #f59e0b;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 3px 8px;
  border-radius: 6px;
}

.dc-faq-q-text {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.dc-faq-icon-circle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 11px;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.dc-faq-item.is-open .dc-faq-icon-circle {
  transform: rotate(180deg);
  background: #f59e0b;
  color: #0f172a;
}

.dc-faq-answer {
  display: none;
  padding: 0 22px 18px 58px;
}

.dc-faq-item.is-open .dc-faq-answer {
  display: block;
}

.dc-faq-answer p {
  font-size: 0.90rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 575.98px) {
  .dc-faq-question {
    padding: 14px 16px;
  }
  .dc-faq-answer {
    padding: 0 16px 14px 16px;
  }
}

/* ── 6. RELATED INTERCITY ROUTES ── */
.dc-related-routes-section {
  padding: 68px 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.dc-related-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.dc-related-route-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.dc-related-route-card:hover {
  background: #fffbeb;
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.16);
}

.dc-rr-name {
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-rr-sub {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.dc-rr-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #059669;
  text-align: right;
}

.dc-rr-arrow {
  font-size: 0.78rem;
  color: #f59e0b;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.dc-related-route-card:hover .dc-rr-arrow {
  transform: translateX(4px);
}
