/* ==========================================================================
   SHREE SHARADA TAXI - INDEX PAGE STYLESHEET
   Dedicated stylesheet for index.html body sections following strict
   #0A0A0B and #F4C401 alternating section flow.
   ========================================================================== */

/* Section Utility & Alternate Flow */
.section-yellow {
  background-color: var(--primary) !important;
  color: #0a0a0b;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

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

/* --------------------------------------------------------------------------
   SECTION HEADERS (Contrast-aware)
   -------------------------------------------------------------------------- */
.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: rgba(10, 10, 11, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(10, 10, 11, 0.2);
}

.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;
}

/* --------------------------------------------------------------------------
   SECTION 1 (YELLOW): SIGNATURE CHAUFFEUR SERVICES GRID
   -------------------------------------------------------------------------- */
.services-yellow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card-dark,
.service-card-white {
  background: #ffffff;
  color: #0a0a0b;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.08);
  box-shadow: 0 10px 30px rgba(10, 10, 11, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card-dark:hover,
.service-card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 10, 11, 0.15);
  border-color: rgba(10, 10, 11, 0.2);
}

.service-card-media {
  position: relative;
  height: 190px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0b;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card-white:hover .service-card-media img,
.service-card-dark:hover .service-card-media img {
  transform: scale(1.06);
}

.service-icon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 196, 1, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.service-card-body {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.service-card-top {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.service-card-dark h3,
.service-card-white h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0b;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.service-card-dark p,
.service-card-white p {
  font-size: 0.92rem;
  color: #3f3f46;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}

.service-feature-list li {
  font-size: 0.82rem;
  color: #27272a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature-list li i {
  color: #0a0a0b;
  font-size: 0.95rem;
}

.service-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0a0a0b;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
  gap: 0.75rem;
  color: #000000;
}

.service-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -15px;
  font-size: 7.5rem;
  line-height: 1;
  color: rgba(10, 10, 11, 0.12);
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease, opacity 0.4s ease;
  user-select: none;
}

.service-card-white:hover .service-card-bg-icon,
.service-card-dark:hover .service-card-bg-icon {
  transform: scale(1.12) translateY(-4px);
  color: rgba(217, 119, 6, 0.32);
}

/* --------------------------------------------------------------------------
   FEATURED / MOST POPULAR SERVICE CARDS (High Visual Prominence)
   -------------------------------------------------------------------------- */
.service-card-popular {
  background: linear-gradient(180deg, #14151e 0%, #0a0a0e 100%) !important;
  color: #f4f4f5 !important;
  border: 2.5px solid #0a0a0b !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.12) !important;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.service-card-popular:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 25px rgba(244, 196, 1, 0.25) !important;
  border-color: var(--primary) !important;
}

.service-card-popular .service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 11, 0.05) 0%, rgba(10, 10, 11, 0.75) 100%);
  pointer-events: none;
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #f4c401 0%, #e0ab00 100%);
  color: #0a0a0b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: pulseRibbon 3.2s infinite ease-in-out;
}

.popular-ribbon i {
  font-size: 0.95rem;
}

@keyframes pulseRibbon {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(244, 196, 1, 0.65);
    transform: scale(1.02);
  }
}

.service-card-popular .service-icon-badge {
  background: var(--primary) !important;
  color: #0a0a0b !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 16px rgba(244, 196, 1, 0.45) !important;
}

.service-card-popular h3 {
  color: #ffffff !important;
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.service-card-popular p {
  color: #d1d5db !important;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.service-popular-features {
  margin-top: 0.85rem;
  margin-bottom: 1.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-features-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.service-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.5rem;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.32rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  line-height: 1.3;
}

.service-chip i {
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.service-card-popular:hover .service-chip {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(244, 196, 1, 0.25);
}

.service-chip:hover {
  background: rgba(244, 196, 1, 0.18) !important;
  border-color: rgba(244, 196, 1, 0.5) !important;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-popular-service {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.82rem 1.25rem;
  background: var(--primary);
  color: #0a0a0b !important;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(244, 196, 1, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.btn-popular-service i {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-popular-service:hover {
  background: #ffffff !important;
  color: #0a0a0b !important;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-2px);
}

.btn-popular-service:hover i {
  transform: translateX(4px);
}

.service-card-popular .service-card-bg-icon {
  color: rgba(244, 196, 1, 0.18);
}

.service-card-popular:hover .service-card-bg-icon {
  color: rgba(244, 196, 1, 0.38);
  transform: scale(1.12) translateY(-4px);
}

@media (max-width: 480px) {
  .service-chips-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .service-chip {
    padding: 0.28rem 0.45rem;
    font-size: 0.74rem;
  }
  .popular-ribbon {
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION 2 (DARK): POPULAR OUTSTATION & TOUR CIRCUITS
   -------------------------------------------------------------------------- */
.quick-routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.75rem;
}

.quick-route-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.quick-route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-color: var(--primary);
}

.quick-route-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0a0a0b;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.01em;
}

.quick-route-title .route-arrow {
  color: #2563eb;
  font-weight: 900;
}

.quick-route-action {
  font-size: 0.88rem;
  font-weight: 800;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.quick-route-card:hover .quick-route-action {
  gap: 0.45rem;
  color: #1d4ed8;
}

.tours-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Asymmetric Bento-Card Structure */
.tour-card-featured {
  grid-column: span 2;
}

@media (min-width: 1025px) {
  .tour-card-featured {
    flex-direction: row !important;
  }
  .tour-card-featured .tour-card-media {
    width: 46% !important;
    height: auto !important;
    min-height: 270px;
    flex-shrink: 0;
  }
  .tour-card-featured .tour-card-body {
    width: 54% !important;
  }
}

.tour-card-dark,
.tour-card-white {
  background: #ffffff;
  color: #0a0a0b;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.tour-card-dark:hover,
.tour-card-white:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 196, 1, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(244, 196, 1, 0.2);
}

.tour-card-media {
  position: relative;
  height: 200px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a0a0b;
}

.tour-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.tour-card-dark:hover .tour-card-media img,
.tour-card-white:hover .tour-card-media img {
  transform: scale(1.06);
}

.tour-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.tour-duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(244, 196, 1, 0.3);
}

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  background: #ffffff;
}

.tour-card-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0b;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tour-card-body p {
  font-size: 0.9rem;
  color: #3f3f46;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.tour-highlights-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.tour-pill {
  font-size: 0.75rem;
  font-weight: 600;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 4px 9px;
  border-radius: 6px;
  color: #27272a;
}

.tour-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f2;
}

.tour-price-box .price-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tour-price-box .price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a0a0b;
}

.tour-price-box .price-val small {
  font-size: 0.75rem;
  color: #71717a !important;
  font-weight: 500;
}

.tour-book-btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .tour-book-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 350px) {
  .tour-book-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 280px) {
  .tour-book-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.72rem;
  }
}

/* --------------------------------------------------------------------------
   SECTION 3 (YELLOW): PREMIER FLEET & RATES SHOWCASE (TRANSPARENT PRICING)
   -------------------------------------------------------------------------- */
.fleet-yellow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.fleet-card-dark,
.fleet-card-white,
.fleet-card-yellow {
  background: #ffffff;
  color: #0a0a0b;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.1);
  box-shadow: 0 10px 30px rgba(10, 10, 11, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.fleet-card-dark:hover,
.fleet-card-white:hover,
.fleet-card-yellow:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 10, 11, 0.18);
  border-color: rgba(10, 10, 11, 0.25);
}

.fleet-card-img-wrap {
  position: relative;
  height: 190px;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0b;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card-img-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.fleet-card-dark:hover .fleet-card-img-wrap img,
.fleet-card-white:hover .fleet-card-img-wrap img,
.fleet-card-yellow:hover .fleet-card-img-wrap img {
  transform: scale(1.06);
}

.fleet-card-rate-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary);
  padding: 5px 13px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(244, 196, 1, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fleet-card-content {
  padding: 1.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.fleet-card-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0b;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.fleet-card-meta {
  font-size: 0.85rem;
  color: #3f3f46;
  margin-bottom: 1.15rem;
  font-weight: 500;
}

.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}

.fleet-spec-item {
  font-size: 0.82rem;
  color: #27272a;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
}

.fleet-spec-item i {
  color: #0a0a0b;
  font-size: 0.95rem;
}

.fleet-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}

.fleet-card-actions .btn {
  flex: 1;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
}

/* --------------------------------------------------------------------------
   SECTION 4 (DARK): THE SHREE SHARADA ASSURANCE / WHY CHOOSE US
   -------------------------------------------------------------------------- */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.assurance-card {
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

/* Alternate Card 1: Pure White (#FFFFFF) */
.assurance-card:nth-child(odd),
.assurance-card.card-white {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.assurance-card:nth-child(odd) .assurance-icon,
.assurance-card.card-white .assurance-icon {
  background: #F4C401;
  border: 1px solid #E0B300;
  color: #0A0A0B;
}

.assurance-card:nth-child(odd) h3,
.assurance-card.card-white h3 {
  color: #0A0A0B;
}

.assurance-card:nth-child(odd) p,
.assurance-card.card-white p {
  color: #374151;
}

.assurance-card:nth-child(odd):hover,
.assurance-card.card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-color: #F4C401;
}

/* Alternate Card 2: #F4C401 */
.assurance-card:nth-child(even),
.assurance-card.card-yellow {
  background: #F4C401;
  border: 1px solid rgba(244, 196, 1, 0.6);
  box-shadow: 0 10px 30px rgba(244, 196, 1, 0.2);
}

.assurance-card:nth-child(even) .assurance-icon,
.assurance-card.card-yellow .assurance-icon {
  background: #0A0A0B;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #F4C401;
}

.assurance-card:nth-child(even) h3,
.assurance-card.card-yellow h3 {
  color: #0A0A0B;
}

.assurance-card:nth-child(even) p,
.assurance-card.card-yellow p {
  color: #1A1A1A;
}

.assurance-card:nth-child(even):hover,
.assurance-card.card-yellow:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(244, 196, 1, 0.4);
  background: #fab800;
  border-color: #fab800;
}

.assurance-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.assurance-card:hover .assurance-icon {
  transform: scale(1.08);
}

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

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

/* --------------------------------------------------------------------------
   SECTION 5 (YELLOW): CUSTOMER REVIEWS & TESTIMONIALS (INFINITE LOOP)
   -------------------------------------------------------------------------- */
.reviews-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0.5rem 0 1.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviewsLoopLeft 36s linear infinite;
  will-change: transform;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsLoopLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card-transparent,
.review-card-white,
.review-card-dark {
  background: #ffffff;
  color: #0a0a0b;
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(10, 10, 11, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 380px;
  max-width: 85vw;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(10, 10, 11, 0.08);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card-transparent:hover,
.review-card-white:hover,
.review-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 10, 11, 0.2);
  box-shadow: 0 16px 36px rgba(10, 10, 11, 0.14);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 500;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}

.review-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0a0a0b;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a0a0b;
}

.author-trip {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   SECTION 6 (DARK): FAQ ACCORDION & READY CTA BANNER
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.faq-item {
  background: #F4C401;
  border: 1.5px solid rgba(10, 10, 11, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.faq-item.active {
  border-color: #0a0a0b;
  box-shadow: 0 14px 34px rgba(244, 196, 1, 0.22);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0a0a0b;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question i {
  font-size: 1.25rem;
  color: #0a0a0b;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: #1a1a1e;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  padding-top: 0.85rem;
}

/* CTA Ready Banner */
.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;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  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;
}

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

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

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS FOR INDEX SECTIONS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .quick-routes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .tours-dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .quick-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-yellow-grid,
  .tours-dark-grid,
  .fleet-yellow-grid,
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-yellow,
  .section-dark {
    padding: 4rem 0;
  }
  
  .quick-routes-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .services-yellow-grid,
  .tours-dark-grid,
  .fleet-yellow-grid,
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .review-card-transparent,
  .review-card-white,
  .review-card-dark {
    width: 310px;
    padding: 1.4rem 1.5rem;
  }
  
  .tour-card-featured {
    grid-column: span 1 !important;
    flex-direction: column !important;
  }
  .tour-card-featured .tour-card-media {
    width: 100% !important;
    height: 200px !important;
    min-height: unset !important;
  }
  .tour-card-featured .tour-card-body {
    width: 100% !important;
  }

  .cta-ready-box {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 500px) {
  .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;
  }

  .service-card-media,
  .tour-card-media,
  .fleet-card-img-wrap {
    height: 165px;
  }

  .service-card-body,
  .tour-card-body,
  .fleet-card-content {
    padding: 1.25rem 1rem 1.15rem;
  }

  .service-card-white h3,
  .service-card-dark h3,
  .tour-card-white h3,
  .tour-card-dark h3,
  .fleet-card-content h3 {
    font-size: 1.15rem;
  }

  .assurance-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .review-card-transparent,
  .review-card-white,
  .review-card-dark {
    width: 290px;
    max-width: 82vw;
    padding: 1.25rem 1.15rem;
  }

  .faq-accordion {
    margin-bottom: 2.5rem;
  }

  .faq-question {
    padding: 1rem 1.15rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.15rem;
    font-size: 0.88rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.15rem 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;
  }

  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

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

@media (max-width: 350px) {
  .section-yellow,
  .section-dark {
    padding: 2.25rem 0;
  }

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

  .section-header-yellow .eyebrow-dark,
  .section-header-dark .eyebrow-gold {
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
    margin-bottom: 0.65rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

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

  .services-yellow-grid,
  .tours-dark-grid,
  .fleet-yellow-grid,
  .assurance-grid {
    gap: 1rem;
  }

  .service-card-white,
  .service-card-dark,
  .tour-card-white,
  .tour-card-dark,
  .fleet-card-white,
  .fleet-card-dark {
    border-radius: var(--radius-lg);
  }

  .service-card-media,
  .tour-card-media,
  .fleet-card-img-wrap {
    height: 135px;
  }

  .service-icon-badge {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    top: 8px;
    right: 8px;
    border-radius: 8px;
  }

  .service-card-body,
  .tour-card-body,
  .fleet-card-content {
    padding: 0.95rem 0.75rem 0.85rem;
  }

  .service-card-white h3,
  .service-card-dark h3,
  .tour-card-white h3,
  .tour-card-dark h3,
  .fleet-card-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .service-card-white p,
  .service-card-dark p,
  .tour-card-body p,
  .fleet-card-meta {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }

  .service-feature-list {
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    padding-top: 0.65rem;
  }

  .service-feature-list li {
    font-size: 0.72rem;
    gap: 0.35rem;
    line-height: 1.35;
  }

  .service-card-link {
    font-size: 0.8rem;
    gap: 0.35rem;
  }

  .service-card-popular h3 {
    font-size: 1.05rem !important;
  }

  .btn-popular-service {
    padding: 0.65rem 0.9rem !important;
    font-size: 0.78rem !important;
  }

  .service-popular-features {
    margin-top: 0.6rem;
    margin-bottom: 0.85rem;
    padding-top: 0.6rem;
  }

  .service-card-bg-icon {
    font-size: 3.5rem;
    right: -5px;
    bottom: -8px;
    opacity: 0.12;
  }

  .quick-routes-grid {
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .quick-route-card {
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius-md);
  }

  .quick-route-title {
    font-size: 0.8rem;
    gap: 0.3rem;
  }

  .quick-route-action {
    font-size: 0.75rem;
  }

  .tour-duration-badge,
  .tour-badge-overlay .badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    top: 8px;
    right: 8px;
  }

  .tour-badge-overlay {
    top: 8px;
    left: 8px;
  }

  .tour-highlights-pills {
    gap: 0.25rem;
    margin-bottom: 0.85rem;
  }

  .tour-pill {
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 4px;
  }

  .tour-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding-top: 0.65rem;
  }

  .tour-price-box .price-label {
    font-size: 0.65rem;
  }

  .tour-price-box .price-val {
    font-size: 1.1rem;
  }

  .tour-footer-row .btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  .fleet-card-rate-pill {
    font-size: 0.72rem;
    padding: 3px 8px;
    bottom: 8px;
    right: 8px;
  }

  .fleet-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
    padding-top: 0.6rem;
  }

  .fleet-spec-item {
    font-size: 0.72rem;
    gap: 0.3rem;
  }

  .fleet-spec-item i {
    font-size: 0.82rem;
  }

  .fleet-card-actions {
    margin-top: 0.65rem;
    padding-top: 0.6rem;
  }

  .fleet-card-actions .btn {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
  }

  .assurance-card {
    padding: 1.15rem 0.85rem;
    border-radius: var(--radius-lg);
  }

  .assurance-icon {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
  }

  .assurance-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
  }

  .assurance-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .reviews-marquee-wrapper {
    padding: 0.25rem 0 0.85rem;
  }

  .review-card-transparent,
  .review-card-white,
  .review-card-dark {
    width: min(230px, 78vw);
    padding: 0.95rem 0.8rem;
    border-radius: var(--radius-lg);
  }

  .review-stars {
    font-size: 0.88rem;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
  }

  .review-text {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .review-author-info {
    padding-top: 0.6rem;
    gap: 0.5rem;
  }

  .review-avatar-circle {
    width: 30px;
    height: 30px;
    font-size: 0.72rem;
  }

  .author-name {
    font-size: 0.8rem;
  }

  .author-trip {
    font-size: 0.68rem;
  }

  .faq-accordion {
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .faq-item {
    border-radius: var(--radius-md);
  }

  .faq-question {
    padding: 0.75rem 0.75rem;
    font-size: 0.82rem;
    gap: 0.45rem;
  }

  .faq-question i {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 0.75rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .faq-item.active .faq-answer {
    padding: 0 0.75rem 0.75rem;
    padding-top: 0.55rem;
  }

  .cta-ready-box {
    padding: 1.5rem 0.75rem;
    border-radius: var(--radius-lg);
  }

  .cta-ready-box h2 {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    margin-bottom: 0.4rem;
  }

  .cta-ready-box p {
    font-size: 0.78rem;
    margin-bottom: 1.1rem;
  }

  .cta-buttons-group {
    gap: 0.5rem;
  }

  .cta-buttons-group .btn {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 280px) {
  .section-yellow,
  .section-dark {
    padding: 1.75rem 0;
  }

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

  .service-card-body,
  .tour-card-body,
  .fleet-card-content {
    padding: 0.85rem 0.6rem;
  }

  .assurance-card {
    padding: 0.95rem 0.65rem;
  }

  .review-card-transparent,
  .review-card-white,
  .review-card-dark {
    width: min(200px, 80vw);
    padding: 0.85rem 0.65rem;
  }
}

@media (max-width: 240px) {
  .section-title {
    font-size: 1.05rem;
  }

  .service-card-media,
  .tour-card-media,
  .fleet-card-img-wrap {
    height: 110px;
  }

  .service-card-body,
  .tour-card-body,
  .fleet-card-content {
    padding: 0.75rem 0.5rem;
  }

  .review-card-transparent,
  .review-card-white,
  .review-card-dark {
    width: 170px;
    padding: 0.75rem 0.5rem;
  }
}
