/* ============================================================
   service.css —  Dwarkadhish Cab  Services Page
   ============================================================ */

/* ── Service Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-tab {
  padding: 9px 22px;
  border-radius: 40px;
  border: 2px solid var(--gray-300);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all .25s var(--ease-expo);
  background: transparent;
  font-family: var(--font-body);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

/* ── Service detail card (full-width horizontal) ── */
.service-detail-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease-expo);
  margin-bottom: 32px;
}
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }
.service-detail-card:hover { box-shadow: var(--shadow-lg); }
.sdc-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.sdc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-silk);
}
.service-detail-card:hover .sdc-img img { transform: scale(1.05); }
.sdc-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sdc-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sdc-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.service-detail-card:hover .sdc-icon { background: var(--gold); color: var(--white); }
.sdc-body h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 10px; }
.sdc-body p { font-size: .9rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 18px; }
.sdc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.sdc-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.sdc-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Vehicle fleet grid ── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Process steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
  opacity: .5;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transition: all .3s var(--ease-back);
}
.process-step:hover .step-num {
  background: var(--gold);
  transform: scale(1.1) translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.process-step h4 { font-size: .9rem; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .8rem; color: var(--gray-500); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .sdc-img { min-height: 240px; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sdc-body { padding: 24px 22px; }
}
@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}