/* css/style.css - Best Piles Clinic India - Premium Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #0d5c63;
  --primary-dark: #07393c;
  --primary-light: #14808a;
  --secondary: #e87c45;
  --secondary-dark: #c45e28;
  --accent: #f5c518;
  --teal-light: #e6f7f8;
  --teal-mid: #b3e5e8;
  --bg-cream: #fdfaf6;
  --bg-light: #f7f9fa;
  --text-dark: #1a2332;
  --text-mid: #495057;
  --text-light: #868e96;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }

img { max-width: 100%; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 7px 0;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: white; }

/* ===== NAVBAR ===== */
.main-navbar {
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-icon i { color: white; font-size: 20px; }
.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}
.brand-text span {
  font-size: 11px;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.nav-link-item {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-link-item:hover { background: var(--teal-light); color: var(--primary) !important; }
.btn-nav-cta {
  background: var(--secondary);
  color: white !important;
  border-radius: 20px;
  padding: 7px 18px !important;
  font-size: 13px;
  font-weight: 600;
}
.btn-nav-cta:hover { background: var(--secondary-dark); }

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=60') center/cover;
  opacity: 0.08;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: white;
}
.hero-shape-1 { width: 500px; height: 500px; right: -100px; top: -150px; }
.hero-shape-2 { width: 300px; height: 300px; left: -80px; bottom: -100px; }
.hero-shape-3 { width: 200px; height: 200px; right: 30%; top: 20%; }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-search-box {
  background: white;
  border-radius: 14px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border-radius: 10px;
}
.hero-search-btn {
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--secondary-dark); }
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-image-box {
  position: relative;
  z-index: 2;
}
.hero-image-box img {
  border-radius: 20px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-card-1 { bottom: 30px; left: -30px; }
.hero-float-card-2 { top: 30px; right: -20px; }
.hero-float-card i { font-size: 20px; }

/* ===== SECTION STYLES ===== */
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  margin-top: 8px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin: 16px 0;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--teal-light);
  padding: 24px 0;
  border-top: 1px solid var(--teal-mid);
  border-bottom: 1px solid var(--teal-mid);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon i { color: white; font-size: 18px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); }
.trust-text span { font-size: 12px; color: var(--text-light); }

/* ===== TREATMENTS SECTION ===== */
.treatment-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.treatment-icon {
  width: 70px;
  height: 70px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.treatment-icon i { font-size: 28px; color: var(--primary); }
.treatment-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.treatment-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ===== CLINIC LISTING CARD ===== */
.listing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  transition: all 0.3s;
  margin-bottom: 20px;
  position: relative;
}
.listing-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-mid);
  transform: translateY(-2px);
}
.listing-card.featured {
  border-color: var(--secondary);
  border-left: 4px solid var(--secondary);
}
.listing-img-wrap {
  flex-shrink: 0;
  width: 220px;
  position: relative;
  overflow: hidden;
}
.listing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.listing-card:hover .listing-img-wrap img { transform: scale(1.04); }
.listing-img-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.badge-featured {
  background: var(--secondary);
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}
.badge-verified {
  background: #28a745;
  color: white;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.listing-body {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.listing-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.listing-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}
.listing-title:hover { color: var(--primary); }
.listing-doctor {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.listing-rating-box { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.rating-score {
  background: #28a745;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating-count { font-size: 12.5px; color: var(--text-light); }
.listing-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.listing-tag {
  font-size: 11.5px;
  background: var(--teal-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid var(--teal-mid);
}
.listing-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.listing-location {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 5px;
}
.listing-meta { display: flex; gap: 16px; align-items: center; }
.listing-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-mid);
}
.listing-actions { display: flex; gap: 10px; align-items: center; }
.btn-view {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-view:hover { background: var(--primary-dark); color: white; }
.btn-call {
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-call:hover { background: #218838; color: white; }

/* ===== WHY US SECTION ===== */
.why-section { background: var(--bg-cream); }
.why-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon i { font-size: 22px; color: var(--primary); }
.why-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.why-text p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* ===== STEPS SECTION ===== */
.steps-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.step-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: white;
}
.step-icon { font-size: 28px; color: var(--accent); margin-bottom: 14px; display: block; }
.step-title { font-family: var(--font-heading); color: white; font-size: 17px; margin-bottom: 8px; }
.step-desc { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.step-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  transition: box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--teal-light);
  position: absolute;
  top: 8px;
  right: 20px;
  line-height: 1;
}
.testimonial-stars { color: #f5c518; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-mid); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-info strong { display: block; font-size: 14px; color: var(--text-dark); }
.testimonial-info span { font-size: 12px; color: var(--text-light); }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-cream); }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--teal-light); }
.faq-answer {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  display: none;
}
.faq-answer.active { display: block; }

/* ===== BLOG SECTION ===== */
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-img { height: 180px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-tag {
  font-size: 11px;
  background: var(--teal-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
}
.blog-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-title:hover { color: var(--primary); }
.blog-excerpt { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-light); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== STATES GRID ===== */
.state-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text-dark);
}
.state-card:hover {
  background: var(--teal-light);
  border-color: var(--teal-mid);
  color: var(--primary);
  transform: translateX(4px);
}
.state-flag {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.state-name { font-size: 14px; font-weight: 500; }
.state-count { font-size: 11px; color: var(--text-light); }

/* ===== SPECIALIST DOCTORS ===== */
.doctor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doctor-img { height: 200px; overflow: hidden; position: relative; }
.doctor-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  padding: 10px;
}
.doctor-body { padding: 18px; }
.doctor-name { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.doctor-specialty { font-size: 13px; color: var(--primary); font-weight: 500; margin-bottom: 8px; }
.doctor-exp { font-size: 12.5px; color: var(--text-light); }

/* ===== SYMPTOMS CHECKER ===== */
.symptoms-section { background: var(--primary-dark); }
.symptom-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.symptom-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.symptom-icon { font-size: 36px; color: var(--accent); margin-bottom: 14px; }
.symptom-title { font-size: 14px; font-weight: 600; color: white; margin-bottom: 6px; }
.symptom-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ===== STATS BANNER ===== */
.stats-section { background: var(--secondary); }
.stat-box { text-align: center; padding: 16px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.85); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  right: -100px; top: -100px;
}
.cta-title { font-family: var(--font-heading); font-size: 34px; font-weight: 700; color: white; }
.cta-subtitle { font-size: 16px; color: rgba(255,255,255,0.82); margin-top: 10px; }
.btn-cta-white {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-cta-white:hover { background: var(--accent); color: var(--text-dark); }
.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); color: white; }

/* ===== FOOTER ===== */
.footer-top {
  background: var(--primary-dark);
  padding: 60px 0 40px;
}
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  font-size: 14px;
}
.footer-social a:hover { background: var(--primary-light); color: white; }
.footer-heading { font-family: var(--font-heading); color: white; font-size: 16px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: white; }
.footer-states-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 12px; }
.footer-state-link { font-size: 12.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; padding: 3px 0; }
.footer-state-link:hover { color: var(--accent); }
.footer-bottom {
  background: #061417;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ===== STATE PAGE ===== */
.state-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.state-hero h1 { font-family: var(--font-heading); color: white; font-size: 40px; font-weight: 700; }
.state-hero p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 10px; }
.breadcrumb-custom { font-size: 13px; color: rgba(255,255,255,0.65); }
.breadcrumb-custom a { color: rgba(255,255,255,0.65); }
.breadcrumb-custom a:hover { color: white; }
.breadcrumb-custom span { color: rgba(255,255,255,0.9); }

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card-header {
  background: var(--primary);
  color: white;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-body { padding: 16px 18px; }
.sidebar-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.sidebar-link-item:last-child { border-bottom: none; }
.sidebar-link-item:hover { color: var(--primary); }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: linear-gradient(90deg, #ff4757, #c0392b);
  padding: 14px 0;
  text-align: center;
}
.emergency-banner p {
  color: white;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
.emergency-banner a {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* ===== INSURANCE SECTION ===== */
.insurance-section { background: var(--bg-cream); }
.insurance-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  transition: box-shadow 0.2s;
}
.insurance-logo:hover { box-shadow: var(--shadow-sm); }
.insurance-logo span { font-size: 15px; font-weight: 600; color: var(--text-mid); }

/* ===== BADGES & ACCREDITATIONS ===== */
.accreditation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.accreditation-icon { font-size: 28px; color: var(--primary); }
.accreditation-text h5 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.accreditation-text p { font-size: 12.5px; color: var(--text-light); }

/* ===== SEARCH RESULTS ===== */
.search-header {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: white;
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--primary); }
.results-count { font-size: 14px; color: var(--text-mid); }
.results-count strong { color: var(--text-dark); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 999;
}
#backToTop:hover { background: var(--primary-dark); }
#backToTop.visible { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 34px; }
  .section-title { font-size: 26px; }
  .listing-card { flex-direction: column; }
  .listing-img-wrap { width: 100%; height: 200px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 28px; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 22px; }
  .hero-search-box { flex-direction: column; }
  .top-bar .col-md-6:last-child { display: none; }
  .stat-num { font-size: 30px; }
}