/* =====================================================
   PRALASH — Service Pages Stylesheet
   ===================================================== */

/* ── SERVICE HERO ── */
.service-hero {
  background: var(--primary-gradient);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.service-hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -5%;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}
.service-hero .breadcrumb { margin-bottom: 1.1rem; }
.service-hero .breadcrumb-item a,
.service-hero .breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.service-hero .breadcrumb-item.active { color: white; }
.service-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.service-hero h1 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
}
.service-hero p.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 0.38rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero-badge i { color: #ffd700; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stat .number {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: white;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero image */
.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 100%;
  /* height: 340px; */
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: white;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-img-badge .hib-icon {
  width: 34px; height: 34px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}
.hero-img-badge .hib-text strong { display: block; font-size: 0.78rem; color: var(--text-dark); font-weight: 700; }
.hero-img-badge .hib-text span { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 767px) {
  .hero-img-wrap { margin-top: 2rem; }
  .hero-img-wrap img { height: 240px; }
}

/* ── PROCESS STEPS ── */
.step-item {
  /* display: flex; */
  gap: 1.1rem;
  margin-bottom: 1.6rem;
  align-items: flex-start;
}
.step-num {
  width: 46px; height: 46px;
  min-width: 46px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(26,75,160,0.3);
}
.step-body h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.step-body p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ── TECHNIQUE CARDS ── */
.technique-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.technique-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--primary-gradient);
  transition: var(--transition);
}
.technique-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.technique-card:hover::before { height: 100%; }
.technique-icon {
  width: 48px; height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  transition: var(--transition);
}
.technique-card:hover .technique-icon { background: var(--primary); color: white; }
.technique-card h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; }
.technique-card p { font-size: 0.855rem; color: var(--text-muted); margin: 0; }

/* ── BENEFITS LIST ── */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 0.9rem;
}
.benefit-icon {
  width: 26px; height: 26px;
  min-width: 26px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.65rem;
  margin-top: 3px;
}
.benefit-item p { font-size: 0.9rem; color: var(--text-body); margin: 0; line-height: 1.55; }

/* ── SUITABILITY LIST ── */
.suitable-list { list-style: none; padding: 0; margin: 0; }
.suitable-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-body);
}
.suitable-list li:last-child { border-bottom: none; }
.suitable-list li i { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; }

/* ── COST CARDS ── */
.cost-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.cost-card.featured { border-color: var(--primary); box-shadow: var(--shadow-md); }
.cost-card .featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.cost-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cost-card .cost-type { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 0.65rem; }
.cost-card .cost-icon { font-size: 2rem; margin-bottom: 0.65rem; }
.cost-card .cost-price { font-size: 1.6rem; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; margin-bottom: 0.4rem; }
.cost-card .cost-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ── WHY CHOOSE US CARDS ── */
.why-card {
  /* display: flex; */
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.why-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-card h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.2rem; }
.why-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* ── COMPARISON TABLE ── */
.compare-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-wrap .table { margin: 0; }
.compare-wrap thead th {
  background: var(--primary-gradient);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 1rem 1.4rem;
  border: none;
  font-size: 0.9rem;
}
.compare-wrap thead th:first-child { background: rgba(26,75,160,0.85); }
.compare-wrap tbody tr:nth-child(even) { background: var(--bg-light); }
.compare-wrap tbody td { padding: 0.85rem 1.4rem; font-size: 0.88rem; border-color: var(--border); vertical-align: middle; }
.compare-wrap tbody td:first-child { font-weight: 600; color: var(--text-dark); }
.check { color: #16a34a; font-size: 1rem; }
.cross { color: #dc2626; font-size: 1rem; }

/* ── TIMELINE ── */
.timeline-item {
  /* display: flex; */
  gap: 1rem;
  margin-bottom: 1.35rem;
  align-items: flex-start;
}
.timeline-dot {
  width: 15px; height: 15px;
  min-width: 15px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 0 4px rgba(26,75,160,0.14);
}
.timeline-body h5 { font-size: 0.93rem; font-weight: 700; margin-bottom: 0.18rem; }
.timeline-body p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── FAQ ACCORDION ── */
.faq-wrap .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq-wrap .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: white;
  padding: 1.15rem 1.4rem;
  box-shadow: none !important;
}
.faq-wrap .accordion-button:not(.collapsed) { color: var(--primary); background: var(--bg-light); }
.faq-wrap .accordion-button::after { flex-shrink: 0; }
.faq-wrap .accordion-body { font-size: 0.88rem; color: var(--text-muted); padding: 0 1.4rem 1.15rem; background: var(--bg-light); line-height: 1.7; }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--primary-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -45%; left: -8%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 540px; margin: 0 auto 2rem; }
.cta-contact-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-contact-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.cta-contact-item i { color: #ffd700; }
.cta-contact-item a { color: white; font-weight: 600; }
.cta-contact-item a:hover { color: rgba(255,255,255,0.8); }

/* ── DENTAL INDEX PAGE ── */
.dental-hero {
  background: var(--primary-gradient);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dental-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.dental-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.dental-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* Service cards on dental index */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 215px; overflow: hidden; flex-shrink: 0; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card-body p { font-size: 0.875rem; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--primary-dark); }

/* Safety box */
.safety-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.safety-box .safety-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.safety-box .safety-item:last-child { border-bottom: none; }
.safety-box .safety-item i { color: #f59e0b; margin-top: 3px; flex-shrink: 0; }
