/* ============================================================
   SARTH LEGAL APP — WEBSITE STYLESHEET
   Brand: Sarth — Find It. Know It. Act On It.
   Developed by: Sun Integrated Technologies Pvt. Ltd.
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #0d2147;
  --navy-light:  #2E5FA3;
  --teal:        #0F7862;
  --teal-light:  #e6f5f1;
  --gold:        #B7950B;
  --gold-light:  #fef9e7;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f4;
  --gray-200:    #e8eaed;
  --gray-400:    #9aa0a6;
  --gray-600:    #5f6368;
  --gray-800:    #3c4043;
  --white:       #ffffff;
  --red:         #c0392b;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --nav-height:  64px;
  --max-width:   1140px;
  --section-pad: 80px 20px;
}

/* ── Typography ───────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.7; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--section-pad); }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy-dark); }
.section--teal { background: var(--teal); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Section Headers ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 12px;
}
.section-eyebrow--white { color: rgba(255,255,255,0.6); }
.section-title { color: var(--navy-dark); margin-bottom: 12px; }
.section-title--white { color: #ffffff; }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 48px;
}
.section-sub--white { color: rgba(255,255,255,0.7); }
.section-sub--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0a6050; transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-group--center { justify-content: center; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
}
.nav-logo-text { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: -0.5px; }
.nav-logo-tagline { font-size: 10px; color: var(--gray-400); display: block; margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  font-weight: 500;
  cursor: pointer;
}
.nav-link:hover { background: var(--gray-100); color: var(--navy); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  display: none;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-dropdown-item:hover { background: var(--gray-100); color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-download-btn {
  background: var(--navy);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.nav-download-btn:hover { background: var(--navy-light); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.2s;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero Sections ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 80px 20px 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-badge-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; flex-shrink: 0; }
.hero-title { color: #ffffff; margin-bottom: 8px; }
.hero-title span { color: #93c5fd; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 16px; }
.hero-sub--center { margin-left: auto; margin-right: auto; }
.hero-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.tagline-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.tagline-step { font-size: 1.1rem; font-weight: 700; color: #fff; }
.tagline-separator { color: rgba(255,255,255,0.3); font-size: 18px; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stats--center { justify-content: center; }
.hero-stat-num { font-size: 1.75rem; font-weight: 700; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.hero-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ── Court Page Hero ──────────────────────────────────────── */
.court-hero { padding: 60px 20px 72px; }
.court-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.court-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.court-hero-breadcrumb span { color: rgba(255,255,255,0.3); }
.court-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Search Widget ────────────────────────────────────────── */
.search-widget {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 640px;
  margin: 32px auto 0;
}
.search-widget--white {
  background: #fff;
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
}
.search-widget-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.search-widget-title--dark { color: var(--navy-dark); }
.search-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 16px;
  overflow-x: auto;
}
.search-tabs--light { background: var(--gray-100); }
.search-tab {
  flex: 1;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  text-align: center;
  transition: all 0.15s;
  border: none;
  background: transparent;
}
.search-tab--light { color: var(--gray-600); }
.search-tab.active { background: #fff; color: var(--navy); }
.search-tab--light.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.search-row { display: flex; gap: 10px; margin-bottom: 10px; }
.search-input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-size: 14px;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.15s;
}
.search-input--light { background: var(--gray-50); border-color: var(--gray-200); }
.search-input:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(46,95,163,0.1); }
.search-select {
  padding: 11px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-size: 13px;
  color: #1a1a2e;
  cursor: pointer;
  outline: none;
}
.search-select--light { background: var(--gray-50); border-color: var(--gray-200); }
.search-btn {
  padding: 11px 22px;
  background: var(--navy-light);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.search-btn:hover { background: var(--navy); }
.search-btn--teal { background: var(--teal); }
.search-btn--teal:hover { background: #0a6050; }
.search-hint { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 8px; }
.search-hint--dark { color: var(--gray-400); }
.search-hint a { color: var(--navy-light); text-decoration: underline; }

/* ── Feature Cards ────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.2s;
}
.feature-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.feature-icon--blue { background: #e8f0fe; }
.feature-icon--teal { background: var(--teal-light); }
.feature-icon--gold { background: var(--gold-light); }
.feature-icon--red  { background: #fdf0ef; }
.feature-icon--purple { background: #f3e8fd; }
.feature-icon--green { background: #e6f4ea; }
.feature-title { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── Court Cards ──────────────────────────────────────────── */
.court-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
  cursor: pointer;
}
.court-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.court-card-header { display: flex; align-items: center; gap: 12px; }
.court-card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.court-card-name { font-size: 15px; font-weight: 700; color: var(--navy-dark); }
.court-card-location { font-size: 12px; color: var(--gray-400); }
.court-card-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.court-pill {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.court-pill--blue { background: #e8f0fe; color: var(--navy-light); }
.court-card-link { font-size: 13px; font-weight: 600; color: var(--navy-light); display: flex; align-items: center; gap: 4px; }

/* ── Steps / Process ──────────────────────────────────────── */
.steps-row { display: flex; gap: 0; position: relative; align-items: flex-start; }
.steps-line {
  position: absolute;
  top: 24px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: var(--gray-200);
}
.step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--gray-200);
}
.step-number--teal { background: var(--teal); }
.step-label { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ── Info Cards / Stats ───────────────────────────────────── */
.stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--gray-600); margin-top: 4px; }
.stat-card--navy { background: var(--navy); border-color: var(--navy); }
.stat-card--navy .stat-num { color: #fff; }
.stat-card--navy .stat-label { color: rgba(255,255,255,0.6); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q-icon { font-size: 20px; color: var(--navy-light); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 0 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── Testimonials ─────────────────────────────────────────── */
.testi-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--navy-dark); }
.testi-role { font-size: 11px; color: var(--gray-400); }

/* ── Find My Case / Premium ───────────────────────────────── */
.no-fee-banner {
  background: linear-gradient(135deg, #0a4d3a 0%, #0f7862 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: #fff;
}
.no-fee-title { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.no-fee-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.trust-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin: 24px 0; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.trust-badge-icon { font-size: 20px; }

/* ── Download App Strip ───────────────────────────────────── */
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.app-btn--play { background: #fff; color: var(--navy); }
.app-btn--play:hover { background: var(--gray-100); }
.app-btn--apple { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.app-btn--apple:hover { background: rgba(255,255,255,0.18); }
.app-btn-icon { font-size: 22px; }
.app-btn-sub { font-size: 10px; font-weight: 400; display: block; opacity: 0.7; }
.app-btn-main { font-size: 15px; display: block; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { height: 160px; background: var(--gray-100); position: relative; }
.blog-card-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-body { padding: 20px; }
.blog-card-tag { font-size: 11px; font-weight: 700; color: var(--navy-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.4; }
.blog-card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }

/* ── Table ────────────────────────────────────────────────── */
.sarth-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.sarth-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.sarth-table th:first-child { border-radius: 8px 0 0 0; }
.sarth-table th:last-child { border-radius: 0 8px 0 0; }
.sarth-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); color: var(--gray-800); }
.sarth-table tr:hover td { background: var(--gray-50); }
.sarth-table tr:last-child td { border-bottom: none; }
.sarth-table-wrap { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }

/* ── Notice / Alert ───────────────────────────────────────── */
.notice {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
}
.notice--info { background: #e8f0fe; border-left: 4px solid var(--navy-light); color: var(--navy-dark); }
.notice--success { background: var(--teal-light); border-left: 4px solid var(--teal); color: #0a4d3a; }
.notice--warning { background: var(--gold-light); border-left: 4px solid var(--gold); color: #7d6608; }
.notice-icon { font-size: 18px; flex-shrink: 0; }

/* ── Courts Strip ─────────────────────────────────────────── */
.courts-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 20px;
  overflow: hidden;
}
.courts-strip-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.courts-strip-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.courts-strip-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.court-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.15s;
}
.court-strip-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 60px 20px 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-mark {
  width: 32px;
  height: 32px;
  background: var(--navy-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.footer-brand-name { font-size: 18px; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); font-style: italic; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.45); padding: 4px 0; transition: color 0.15s; text-decoration: none; }
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.25); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Chips / Badges ───────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge--blue { background: #e8f0fe; color: var(--navy-light); }
.badge--teal { background: var(--teal-light); color: var(--teal); }
.badge--gold { background: var(--gold-light); color: var(--gold); }
.badge--red  { background: #fdf0ef; color: var(--red); }
.badge--new  { background: #e8f5e9; color: #1b5e20; }

/* ── Keyword / SEO Content Lists ─────────────────────────── */
.info-block { padding: 40px 0; }
.info-block h2 { color: var(--navy-dark); margin-bottom: 16px; }
.info-block h3 { color: var(--navy); margin-bottom: 10px; margin-top: 24px; }
.info-block p { color: var(--gray-600); margin-bottom: 14px; }
.info-block ul { margin: 10px 0 16px 20px; }
.info-block li { color: var(--gray-600); margin-bottom: 6px; font-size: 15px; }
.info-block li::marker { color: var(--navy-light); }

/* ── Page-specific Helpers ────────────────────────────────── */
.page-header { padding: 40px 20px 32px; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-400); margin-bottom: 16px; }
.breadcrumb a { color: var(--navy-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--gray-200); }

/* ── Responsive Adjustments ───────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }
  .hero { padding: 56px 20px 64px; }
  .hero-stats { gap: 24px; }
  .steps-row { flex-direction: column; gap: 24px; }
  .steps-line { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
  .no-fee-banner { padding: 32px 24px; }
  .search-row { flex-direction: column; }
  .tagline-steps { flex-wrap: wrap; gap: 6px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-divider { display: none; }
}

/* ── Print / Accessibility ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 3px solid var(--navy-light); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
