/* ==========================================================================
   SHREE SHARADA TAXI - SERVICES PAGE STYLESHEET
   Dedicated stylesheet for services.html following strict
   #0A0A0B (Obsidian Dark) and #F4C401 (Brand Yellow) alternating section rhythm.
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HERO SUB-BANNER (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/servicehero.jpg');
  background-size: cover;
  background-position: center ;
  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.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.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: 2rem;
}

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

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

.services-jump-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.jump-link:hover {
  color: var(--primary);
  background: rgba(244, 196, 1, 0.12);
  border-color: rgba(244, 196, 1, 0.4);
  transform: translateY(-2px);
}

/* 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.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

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

/* --------------------------------------------------------------------------
   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;
}

/* --------------------------------------------------------------------------
   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: #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;
}

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

.service-card-white.service-card-dark {
  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;
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

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

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

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

.service-card-white: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-white h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a0a0b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-white p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 1rem;
}

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

.service-feature-list li {
  font-size: 0.85rem;
  color: #1f2937;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature-list li i {
  color: #16a34a;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #0a0a0b;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.service-card-link:hover {
  background: #1f1f23;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 8rem;
  color: rgba(10, 10, 11, 0.12);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.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): DEEP-DIVE SOLUTIONS
   -------------------------------------------------------------------------- */
.deep-dive-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-detail-card {
  background: linear-gradient(145deg, #141417 0%, #0f0f11 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.service-detail-card:hover {
  border-color: rgba(244, 196, 1, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.service-detail-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #0a0a0b;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.service-detail-card:hover .service-detail-media img {
  transform: scale(1.05);
}

.service-detail-content {
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-detail-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.service-detail-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-specs-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.detail-spec-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-white);
  font-weight: 600;
}

.detail-spec-item i {
  color: var(--primary);
  font-size: 1.15rem;
}

.detail-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   DEEP-DIVE CARDS: ALTERNATING PURE-WHITE / #0A0A0B BACKGROUNDS
   -------------------------------------------------------------------------- */
/* Odd cards (1, 3) → pure white background */
.deep-dive-grid .service-detail-card:nth-child(odd) {
  background: #ffffff !important;
  color: #0A0A0B;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.deep-dive-grid .service-detail-card:nth-child(odd):hover {
  border-color: rgba(244, 196, 1, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}
.deep-dive-grid .service-detail-card:nth-child(odd) .badge-gold {
  background: rgba(244, 196, 1, 0.22);
  color: #855800;
  border: 1px solid rgba(244, 196, 1, 0.6);
  font-weight: 700;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .service-detail-content h3 {
  color: #0A0A0B;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .service-detail-content p {
  color: #374151;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .detail-specs-row {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.deep-dive-grid .service-detail-card:nth-child(odd) .detail-spec-item {
  color: #111827;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .detail-spec-item i {
  color: #b45309;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .btn-secondary {
  background: #f3f4f6;
  color: #0A0A0B;
  border: 1px solid #d1d5db;
}
.deep-dive-grid .service-detail-card:nth-child(odd) .btn-secondary:hover {
  background: #0A0A0B;
  color: #ffffff;
  border-color: #0A0A0B;
}

/* Even cards (2, 4) → pure dark #0A0A0B background */
.deep-dive-grid .service-detail-card:nth-child(even) {
  background: #0A0A0B !important;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}
.deep-dive-grid .service-detail-card:nth-child(even):hover {
  border-color: rgba(244, 196, 1, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}
.deep-dive-grid .service-detail-card:nth-child(even) .badge-gold {
  background: rgba(244, 196, 1, 0.15);
  color: var(--primary);
  border: 1px solid rgba(244, 196, 1, 0.35);
}
.deep-dive-grid .service-detail-card:nth-child(even) .service-detail-content h3 {
  color: #ffffff;
}
.deep-dive-grid .service-detail-card:nth-child(even) .service-detail-content p {
  color: rgba(255, 255, 255, 0.75);
}
.deep-dive-grid .service-detail-card:nth-child(even) .detail-specs-row {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.deep-dive-grid .service-detail-card:nth-child(even) .detail-spec-item {
  color: #f3f4f6;
}
.deep-dive-grid .service-detail-card:nth-child(even) .detail-spec-item i {
  color: var(--primary);
}
.deep-dive-grid .service-detail-card:nth-child(even) .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid var(--border-light);
}
.deep-dive-grid .service-detail-card:nth-child(even) .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--primary);
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   SECTION 3 (YELLOW): CORPORATE MOBILITY SOLUTIONS
   -------------------------------------------------------------------------- */
.corporate-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.corp-card-dark {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  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;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

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

.corp-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.15);
  border: 1px solid rgba(244, 196, 1, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.35rem;
  transition: transform var(--transition-fast);
}

.corp-card-dark:hover .corp-icon-box {
  transform: scale(1.08);
}

.corp-card-dark h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.corp-card-dark p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.corp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.corp-feature-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.corp-feature-list li i {
  color: var(--primary);
  font-size: 1rem;
}

.corp-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 7rem;
  color: #ffffff;
  opacity: 0.03;
  pointer-events: none;
}

/* Corporate Card (Pure White) */
.corp-card-white {
  background: #ffffff;
  color: #0A0A0B;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.corp-card-white:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.16);
}

.corp-card-white .corp-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.22);
  border: 1px solid rgba(244, 196, 1, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #855800;
  margin-bottom: 1.35rem;
  transition: transform var(--transition-fast);
}

.corp-card-white:hover .corp-icon-box {
  transform: scale(1.08);
}

.corp-card-white h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0A0A0B;
  margin-bottom: 0.75rem;
}

.corp-card-white p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.corp-card-white .corp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.corp-card-white .corp-feature-list li {
  font-size: 0.85rem;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.corp-card-white .corp-feature-list li i {
  color: #b45309;
  font-size: 1rem;
}

.corp-card-white .corp-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 7rem;
  color: #0A0A0B;
  opacity: 0.04;
  pointer-events: none;
}

/* Corporate Highlights Bar */
.corp-highlights-bar {
  background: #0a0a0b;
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(10, 10, 11, 0.3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.corp-hl-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.corp-hl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 196, 1, 0.12);
  border: 1px solid rgba(244, 196, 1, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.corp-hl-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.corp-hl-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   SECTION 4 (DARK): COMMITMENTS & DISPATCH READY CTA
   -------------------------------------------------------------------------- */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.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.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.card-white .assurance-icon {
  background: #F4C401;
  border: 1px solid #E0B300;
  color: #0A0A0B;
}

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

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

.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 Yellow */
.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.card-yellow .assurance-icon {
  background: #0A0A0B;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #F4C401;
}

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

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

.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.22rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

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

/* CTA Ready Banner (Pattern 7 in designandcolor.md) */
.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
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-yellow-grid,
  .corporate-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  .service-detail-media {
    min-height: 240px;
  }
  .assurance-grid,
  .corp-highlights-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-yellow-grid,
  .corporate-solutions-grid,
  .assurance-grid,
  .corp-highlights-bar {
    grid-template-columns: 1fr;
  }
  .section-yellow,
  .section-dark {
    padding: 4rem 0;
  }
  .page-hero {
    padding: 7rem 0 3.5rem;
  }
  .service-detail-content {
    padding: 2rem 1.5rem;
  }
  .corp-highlights-bar {
    padding: 1.75rem 1.5rem;
  }
}

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

  .services-jump-bar {
    gap: 0.45rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

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

  .service-card-media {
    height: 170px;
  }

  .service-card-body {
    padding: 1.35rem 1.15rem 1.25rem;
  }

  .service-card-white h3 {
    font-size: 1.15rem;
  }

  .service-detail-content {
    padding: 1.6rem 1.15rem;
  }

  .service-detail-content h3 {
    font-size: 1.3rem;
  }

  .corp-card-white,
  .corp-card-yellow,
  .corp-card-dark {
    padding: 1.6rem 1.15rem;
  }

  .corp-highlights-bar {
    padding: 1.5rem 1.15rem;
    gap: 1.25rem;
  }

  .assurance-card {
    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;
  }

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

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

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

  .service-card-media {
    height: 140px;
  }

  .service-card-body {
    padding: 1.15rem 0.85rem 1rem;
  }

  .service-card-white h3 {
    font-size: 1.05rem;
  }

  .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-white p {
    font-size: 0.85rem;
  }

  .service-detail-content {
    padding: 1.25rem 0.85rem;
  }

  .service-detail-content h3 {
    font-size: 1.15rem;
  }

  .service-detail-content p {
    font-size: 0.85rem;
  }

  .corp-card-white,
  .corp-card-yellow,
  .corp-card-dark {
    padding: 1.25rem 0.85rem;
  }

  .corp-card-white h3,
  .corp-card-yellow h3,
  .corp-card-dark h3 {
    font-size: 1.1rem;
  }

  .corp-highlights-bar {
    padding: 1.15rem 0.75rem;
  }

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

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

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

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

  .service-card-body,
  .service-detail-content,
  .corp-card-white,
  .corp-card-yellow,
  .corp-card-dark,
  .assurance-card {
    padding: 1rem 0.65rem;
  }
}
