/* =====================================================
   Parivahan Sewa — Ministry of Road Transport & Highways
   Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Sans+Tamil:wght@400;500;600;700&family=Noto+Sans+Telugu:wght@400;500;600;700&family=Noto+Sans+Kannada:wght@400;500;600;700&family=Noto+Sans+Malayalam:wght@400;500;600;700&family=Noto+Sans+Bengali:wght@400;500;600;700&family=Noto+Sans+Gujarati:wght@400;500;600;700&family=Noto+Sans+Gurmukhi:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0f2d5e;
  --navy-dark: #081c3a;
  --navy-mid: #1a4080;
  --navy-light: #2a5298;
  --saffron: #e8541a;
  --saffron-light: #f06b32;
  --saffron-pale: #fef4ef;
  --white: #ffffff;
  --surface: #f4f6f9;
  --surface2: #eaecf0;
  --border: #dde1ea;
  --border-light: #edf0f5;
  --text-primary: #0d1117;
  --text-secondary: #4b5563;
  --text-muted: #8a94a6;
  --success: #0caf60;
  --warning: #f5a623;
  --error: #e53935;
  --info: #2563eb;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ===== GOOGLE TRANSLATE SUPPRESSION ===== */
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }
body { top: 0 !important; }
#goog-gt-tt, .goog-tooltip, .goog-tooltip:hover { display: none !important; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== GOV HEADER ===== */
.gov-bar {
  background: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  font-size: 11.5px;
  color: #555;
}
.gov-bar-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.gov-bar-left { display: flex; align-items: center; gap: 16px; }
.gov-bar-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.gov-emblem { width: 28px; height: 28px; }
.gov-bar-title { font-weight: 700; font-size: 12px; color: #1a3a5c; }
.gov-bar-right { font-size: 11px; color: #777; }

/* ===== TICKER ===== */
.ticker {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.ticker-inner { display: flex; animation: ticker 36s linear infinite; white-space: nowrap; }
.ticker-item { padding: 0 52px; display: flex; align-items: center; gap: 8px; }
.ticker-item::before { content: '▶'; font-size: 8px; opacity: 0.4; color: var(--saffron); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== TOP NAV BAR ===== */
.topnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.topnav-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 52px;
  position: relative;
}
/* FIX: nav items centered, login flush to right edge */
.topnav-items { display: flex; align-items: right; flex: 1; gap: 0; justify-content: right; }
.topnav-item { position: relative; }
.topnav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 14px; height: 52px;
  font-size: 12.5px; font-weight: 600;
  color: #333; cursor: pointer; white-space: nowrap;
  border: none; background: none; font-family: var(--font);
  transition: all 0.15s;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.005em;
}
.topnav-link:hover { color: var(--navy); background: var(--surface); border-bottom-color: var(--navy-light); }
.topnav-link.active { color: var(--navy); border-bottom-color: var(--saffron); }
.topnav-caret { font-size: 8px; opacity: 0.5; margin-top: 1px; }
/* FIX: removed margin-left:auto — right section naturally sits at end of flex row */
.topnav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.topnav-login {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px; background: var(--navy);
  color: white; border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font); transition: all 0.15s;
}
.topnav-login:hover { background: var(--navy-light); }
.topnav-login-arrow { font-size: 13px; }

/* Mega dropdown */
.mega-drop {
  position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 700px; padding: 20px 24px;
  display: none; z-index: 999;
  animation: fadeInDown 0.15s ease;
}
.mega-drop.right { left: auto; right: 0; }
.mega-drop.show { display: block; }
.mega-drop-title { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mega-drop-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mega-drop-cols.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mega-drop-cols.cols-2 { grid-template-columns: repeat(2, 1fr); }
.drop-link {
  display: block; padding: 6px 10px; border-radius: 6px;
  font-size: 12.5px; color: var(--text-secondary); font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all 0.12s;
  white-space: nowrap;
}
.drop-link:hover { background: var(--saffron-pale); color: var(--saffron); }
.drop-link.bold { font-weight: 700; color: var(--text-primary); }
.drop-section { display: flex; flex-direction: column; gap: 2px; }
.drop-section-title { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; padding: 4px 10px; background: var(--surface); border-radius: 5px; }

/* Login submenu */
.login-option {
  padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  text-align: center; font-size: 12.5px; font-weight: 600;
  color: var(--navy); transition: all 0.15s;
}
.login-option:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* User Avatar */
.user-avatar {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 6px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13px; font-weight: 500; transition: all 0.15s;
}
.user-avatar:hover { border-color: var(--navy); }
.avatar-circle {
  width: 26px; height: 26px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 10px; font-weight: 700;
}
.profile-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  width: 190px; padding: 6px; display: none; z-index: 100;
}
.profile-menu.open { display: block; }
.profile-menu-item {
  padding: 9px 11px; border-radius: 5px; cursor: pointer;
  font-size: 13.5px; font-weight: 450; display: flex; align-items: center;
  gap: 8px; transition: background 0.1s;
}
.profile-menu-item:hover { background: var(--surface); }
.profile-menu-item.danger { color: var(--error); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #071a38 0%, #0f2d5e 40%, #1a4a8a 70%, #0d3060 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-bg-circle {
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,84,26,0.15) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1300px; margin: 0 auto; padding: 80px 24px;
  width: 100%; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; color: rgba(255,255,255,0.75);
  font-size: 11.5px; font-weight: 600; margin-bottom: 20px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); }
.hero h1 {
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800; color: white;
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hero h1 em { color: #ffc57a; font-style: normal; }
.hero-desc {
  font-size: 15.5px; color: rgba(255,255,255,0.6);
  max-width: 460px; margin-bottom: 32px;
  line-height: 1.7; font-weight: 400;
}
.hero-stats { display: flex; gap: 28px; margin-top: 8px; }
.hero-stat-val { font-size: 22px; font-weight: 800; color: white; font-family: var(--font-mono); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* Hero Search Card */
.hero-search-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hero-search-card h2 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.02em; }
.hero-search-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.search-bar {
  display: flex; align-items: center;
  background: var(--surface); border-radius: 10px;
  border: 1.5px solid var(--border); margin-bottom: 16px;
  transition: border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--navy); }
.search-icon-wrap { padding: 0 12px 0 16px; display: flex; align-items: center; }
.search-icon-wrap svg { width: 15px; height: 15px; stroke: var(--text-muted); fill: none; stroke-width: 2; }
.search-input {
  flex: 1; border: none; outline: none;
  font-size: 14px; font-family: var(--font);
  color: var(--text-primary); padding: 13px 0;
  background: transparent;
}
.search-input::placeholder { color: var(--text-muted); }
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: white; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: none; z-index: 10; border: 1px solid var(--border);
}
.search-suggestions.show { display: block; }
.suggestion-item {
  padding: 10px 16px; cursor: pointer; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.1s; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: var(--surface); color: var(--navy); }
.sugg-item {
  padding: 10px 16px; cursor: pointer; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); transition: background 0.1s;
  border-bottom: 1px solid var(--border-light);
}
.sugg-item:last-child { border-bottom: none; }
.sugg-item:hover { background: #f0f5ff; color: var(--navy); }
.search-wrap { position: relative; }
.quick-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.quick-link-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 9px;
  font-size: 12.5px; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: all 0.15s;
  font-family: var(--font);
}
.quick-link-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.quick-link-icon { font-size: 15px; }

/* ===== STATS BAND ===== */
.stats-band {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-band-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 24px; text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s;
}
.stat-item:hover { border-bottom-color: var(--navy-light); }
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 26px; font-weight: 800; color: var(--navy); font-family: var(--font-mono); letter-spacing: -0.02em; display: block; }
.stat-label { font-size: 10.5px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== MAIN CONTENT ===== */
.main-content { max-width: 1300px; margin: 0 auto; padding: 56px 24px; }
.section-header { margin-bottom: 28px; }
.section-eyebrow { font-size: 11px; font-weight: 700; color: var(--saffron); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.section-title { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.section-sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* Service Grid */
.services-section { margin-bottom: 64px; }
.service-category-label {
  font-size: 10.5px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px; margin-top: 32px;
  display: flex; align-items: center; gap: 10px;
}
.service-category-label:first-of-type { margin-top: 0; }
.service-category-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-bottom: 4px; }
.service-card {
  background: white; border-radius: var(--radius-md);
  padding: 20px; cursor: pointer;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 10px; position: relative;
}
.service-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; letter-spacing: -0.01em; }
.service-card p { font-size: 11.5px; color: var(--text-muted); line-height: 1.4; font-weight: 400; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
}
.badge-green { background: #f0fdf4; color: #16a34a; }
.badge-gray { background: var(--surface2); color: var(--text-muted); }
.badge-orange { background: var(--saffron-pale); color: var(--saffron); }
.card-badge { position: absolute; top: 12px; right: 12px; }
.service-card-indicator { width: 20px; height: 3px; border-radius: 2px; background: var(--border); }
.service-card-indicator.live { background: var(--success); }

/* ===== NEWS + RESOURCES SECTION ===== */
.two-col-section {
  display: grid; grid-template-columns: 1fr 340px; gap: 24px;
  margin-bottom: 64px;
}
.news-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.news-card-header {
  padding: 20px 24px 0; display: flex; align-items: center;
  justify-content: space-between;
}
.news-card-header h3 { font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.news-item {
  padding: 18px 24px; border-bottom: 1px solid var(--border-light);
  display: flex; gap: 16px; align-items: flex-start;
  transition: background 0.1s; cursor: pointer;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--surface); }
.news-date-badge {
  padding: 8px 10px; border-radius: 8px; text-align: center;
  min-width: 54px; flex-shrink: 0;
}
.news-date-badge .day { font-size: 18px; font-weight: 800; font-family: var(--font-mono); display: block; line-height: 1; }
.news-date-badge .month { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.news-badge-blue { background: #eff6ff; color: #1d4ed8; }
.news-badge-orange { background: var(--saffron-pale); color: var(--saffron); }
.news-badge-green { background: #f0fdf4; color: #16a34a; }
.news-content h4 { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.news-content p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.resources-card {
  background: var(--navy); border-radius: var(--radius-lg);
  overflow: hidden;
}
.resources-card-header { padding: 24px 24px 0; }
.resources-card-header h3 { font-size: 17px; font-weight: 800; color: white; letter-spacing: -0.02em; }
.resource-list { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.resource-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  transition: all 0.15s;
}
.resource-item:hover { background: rgba(255,255,255,0.1); color: white; }
.resource-icon { font-size: 15px; opacity: 0.6; }
.resource-item:hover .resource-icon { opacity: 1; }
.resources-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 16px; }
.emergency-btn {
  margin: 12px 16px 20px; width: calc(100% - 32px);
  padding: 13px; background: white; color: var(--navy);
  border: none; border-radius: 10px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font); transition: all 0.15s;
}
.emergency-btn:hover { background: var(--saffron-pale); }

/* ===== ADVISORY BANNER ===== */
.advisory-banner {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 64px;
}
.advisory-content { padding: 48px 40px; }
.advisory-content h2 { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.2; }
.advisory-content p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.advisory-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.advisory-tag { padding: 5px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--navy); }
.advisory-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.advisory-visual-inner { text-align: center; position: relative; z-index: 1; }
.advisory-visual-icon { font-size: 64px; margin-bottom: 12px; }
.advisory-visual h3 { color: white; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.advisory-visual p { color: rgba(255,255,255,0.6); font-size: 12.5px; margin-top: 4px; }
.advisory-circles {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.07) 0%, transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(232,84,26,0.15) 0%, transparent 50%);
}

/* ===== BUTTONS ===== */
.btn-ghost {
  padding: 9px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: none;
  font-size: 13.5px; font-weight: 600; color: var(--text-primary);
  cursor: pointer; transition: all 0.15s; font-family: var(--font);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--surface); }
.btn-primary {
  padding: 9px 20px; border: none;
  border-radius: var(--radius-sm); background: var(--saffron);
  color: var(--white); font-size: 13.5px; font-weight: 700;
  cursor: pointer; transition: all 0.15s; font-family: var(--font);
}
.btn-primary:hover { background: var(--saffron-light); }
.btn-navy {
  padding: 12px 28px; border: none;
  border-radius: var(--radius-sm); background: var(--navy);
  color: var(--white); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.15s; font-family: var(--font);
}
.btn-navy:hover { background: var(--navy-light); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,37,64,0.4);
  backdrop-filter: blur(6px); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); max-width: 500px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(16px); transition: transform 0.22s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 24px 24px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.modal-header h2 { font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.modal-close {
  width: 30px; height: 30px; border: none;
  background: var(--surface2); border-radius: 50%;
  cursor: pointer; font-size: 14px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--text-secondary); transition: all 0.15s;
}
.modal-close:hover { background: var(--border); color: var(--navy); }
.modal-body { padding: 20px 24px 24px; }

/* ===== FLOW PAGES ===== */
.flow-page { display: none; }
.flow-page.active { display: block; animation: fadeIn 0.2s ease; }
.flow-container { max-width: 740px; margin: 40px auto; padding: 0 24px 80px; }
.flow-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; margin-bottom: 28px;
  background: none; border: none; font-family: var(--font);
  transition: color 0.15s;
}
.flow-back:hover { color: var(--navy); }
.flow-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Stepper */
.stepper { display: flex; align-items: center; margin-bottom: 36px; overflow-x: auto; padding-bottom: 4px; }
.step-item { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; min-width: 70px; position: relative; }
.step-item:not(:last-child)::after {
  content: ''; position: absolute; top: 15px;
  left: 50%; right: -50%; height: 1.5px;
  background: var(--border); z-index: 0;
}
.step-item.done:not(:last-child)::after { background: var(--success); }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  z-index: 1; transition: all 0.2s; flex-shrink: 0; font-family: var(--font-mono);
}
.step-item.active .step-dot { border-color: var(--navy); background: var(--navy); color: white; }
.step-item.done .step-dot { border-color: var(--success); background: var(--success); color: white; }
.step-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-align: center; white-space: nowrap; }
.step-item.active .step-label { color: var(--navy); font-weight: 700; }

/* Form Card */
.form-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 32px; border: 1px solid var(--border); }
.form-card h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.02em; }
.form-card p.subtitle { font-size: 13.5px; color: var(--text-secondary); margin-bottom: 28px; }
.form-section { margin-bottom: 28px; }
.form-section-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12.5px; font-weight: 700; color: var(--text-primary); }
.form-label .required { color: var(--error); }
.form-input {
  padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: var(--font); color: var(--text-primary);
  outline: none; transition: border-color 0.15s; background: white;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,37,64,0.07); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px;
}
.form-hint { font-size: 11.5px; color: var(--text-muted); }

/* Radio Pills */
.radio-group { display: flex; flex-wrap: wrap; gap: 7px; }
.radio-pill input { display: none; }
.radio-pill label {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); cursor: pointer; transition: all 0.15s;
}
.radio-pill input:checked + label { border-color: var(--navy); background: var(--navy); color: white; }

/* Vehicle Class Cards */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.vehicle-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 16px; text-align: center; cursor: pointer; transition: all 0.15s;
}
.vehicle-card:hover { border-color: var(--saffron); }
.vehicle-card.selected { border-color: var(--navy); background: var(--navy); color: white; }
.vehicle-card-icon { font-size: 26px; margin-bottom: 8px; }
.vehicle-card-name { font-size: 12px; font-weight: 700; }
.vehicle-card-sub { font-size: 11px; opacity: 0.6; margin-top: 2px; }

/* Upload Zone */
.upload-zone {
  border: 1.5px dashed var(--border); border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center; cursor: pointer;
  transition: all 0.15s; background: var(--surface);
}
.upload-zone:hover { border-color: var(--saffron); background: var(--saffron-pale); }
.upload-zone p { font-size: 13px; color: var(--text-secondary); font-weight: 600; margin-bottom: 4px; }
.upload-zone span { font-size: 11.5px; color: var(--text-muted); }
.upload-preview {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; background: var(--surface);
  border-radius: var(--radius-sm); border: 1px solid var(--border); margin-top: 8px;
}
.upload-preview-icon { width: 36px; height: 36px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.upload-preview-info { flex: 1; font-size: 13px; font-weight: 700; }
.upload-preview-size { font-size: 11px; color: var(--text-muted); }

/* Payment */
.payment-methods { display: flex; gap: 8px; margin-bottom: 20px; }
.pay-tab {
  flex: 1; padding: 10px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); text-align: center; cursor: pointer;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  transition: all 0.15s; background: white; font-family: var(--font);
}
.pay-tab.active { border-color: var(--navy); color: var(--navy); background: #f0f4ff; }
.fee-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.fee-table td { padding: 10px 0; font-size: 13.5px; border-bottom: 1px solid var(--border); color: var(--text-secondary); }
.fee-table td:last-child { text-align: right; font-weight: 700; color: var(--text-primary); }
.fee-table tr:last-child td { border-bottom: 2px solid var(--navy); font-weight: 800; font-size: 15px; color: var(--navy); }
.upi-field { display: flex; gap: 10px; }
.upi-qr { width: 72px; height: 72px; background: var(--surface2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }

/* Calendar */
.calendar { border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.calendar-header { background: var(--navy); color: white; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.calendar-header h3 { font-size: 15px; font-weight: 700; }
.cal-nav { background: rgba(255,255,255,0.12); border: none; color: white; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 14px; font-family: var(--font); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; padding: 14px; }
.cal-day-header { text-align: center; font-size: 10.5px; font-weight: 700; color: var(--text-muted); padding: 4px 0; text-transform: uppercase; letter-spacing: 0.05em; }
.cal-day { text-align: center; padding: 7px 4px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.12s; font-family: var(--font-mono); }
.cal-day.empty { cursor: default; }
.cal-day.available { color: var(--navy); }
.cal-day.available:hover { background: var(--saffron-pale); color: var(--saffron); }
.cal-day.selected { background: var(--navy); color: white; }
.cal-day.unavailable { color: var(--text-muted); cursor: not-allowed; text-decoration: line-through; opacity: 0.5; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 14px; }
.time-slot {
  padding: 9px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); text-align: center;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: all 0.15s; font-family: var(--font-mono);
}
.time-slot:hover { border-color: var(--navy); color: var(--navy); }
.time-slot.selected { background: var(--navy); color: white; border-color: var(--navy); }
.time-slot.booked { opacity: 0.35; cursor: not-allowed; }

/* Confirmation */
.confirm-screen { text-align: center; padding: 16px 0; }
.confirm-icon {
  width: 64px; height: 64px; background: #f0fdf4;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 28px; margin: 0 auto 18px;
  border: 2px solid #bbf7d0;
}
.confirm-screen h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.02em; }
.confirm-screen p { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px; }
.app-number-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; background: var(--navy); color: white;
  border-radius: var(--radius-md); font-size: 15px; font-weight: 700;
  margin-bottom: 22px; font-family: var(--font-mono); letter-spacing: 0.04em;
}
.timeline { text-align: left; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 22px; }
.timeline-item { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { border-bottom: none; }
.timeline-dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.tl-done { background: #f0fdf4; }
.tl-active { background: var(--saffron-pale); }
.tl-pending { background: var(--surface2); }
.timeline-text { font-size: 13px; font-weight: 700; }
.timeline-date { font-size: 12px; color: var(--text-muted); margin-left: auto; font-family: var(--font-mono); }
.action-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border);
}

/* Challan */
.tab-switcher { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 20px; background: var(--surface); }
.tab-btn {
  flex: 1; padding: 9px; background: none; border: none;
  border-right: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; font-family: var(--font); transition: all 0.15s;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active { background: var(--navy); color: white; }
.challan-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; }
.challan-header { background: var(--surface); padding: 13px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.challan-header h4 { font-size: 13.5px; font-weight: 700; }
.challan-body { padding: 14px 16px; }
.challan-detail { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: 13px; }
.challan-detail:last-child { border-bottom: none; }
.challan-detail-label { color: var(--text-muted); }
.challan-detail-value { font-weight: 700; }
.challan-amount { background: var(--navy); color: white; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; }

/* Vehicle Lookup */
.vehicle-result { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border); }
.vehicle-result-header { background: var(--navy); padding: 22px 24px; color: white; }
.vehicle-number-plate {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--navy); padding: 7px 14px;
  border-radius: 5px; font-size: 18px; font-weight: 800;
  letter-spacing: 0.08em; margin-bottom: 10px;
  font-family: var(--font-mono);
}
.vehicle-result-body { padding: 22px 24px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.info-item { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 10.5px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.info-value { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.status-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.status-card { padding: 13px; border-radius: var(--radius-md); border: 1px solid; text-align: center; }
.status-card.valid { border-color: #bbf7d0; background: #f0fdf4; }
.status-card.expired { border-color: #fecaca; background: #fef2f2; }
.status-card.soon { border-color: #fde68a; background: #fffbeb; }
.status-card-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.status-card-val { font-size: 12px; font-weight: 700; font-family: var(--font-mono); }
.valid .status-card-type, .valid .status-card-val { color: #16a34a; }
.expired .status-card-type, .expired .status-card-val { color: #dc2626; }
.soon .status-card-type, .soon .status-card-val { color: #d97706; }

/* DL Status */
.dl-timeline { position: relative; padding-left: 30px; }
.dl-timeline::before { content: ''; position: absolute; left: 10px; top: 16px; bottom: 16px; width: 1.5px; background: var(--border); }
.dl-step { position: relative; padding: 0 0 26px 0; }
.dl-step:last-child { padding-bottom: 0; }
.dl-step-dot { position: absolute; left: -30px; top: 2px; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; z-index: 1; }
.dl-done .dl-step-dot { background: var(--success); color: white; }
.dl-active .dl-step-dot { background: var(--saffron); color: white; }
.dl-pending .dl-step-dot { background: var(--surface2); border: 1.5px solid var(--border); color: var(--text-muted); }
.dl-step-content h4 { font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.dl-pending .dl-step-content h4 { color: var(--text-muted); }
.dl-step-content p { font-size: 12px; color: var(--text-muted); }

/* Mock Test */
.test-header {
  background: var(--navy); color: white;
  padding: 16px 22px; border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex; align-items: center; justify-content: space-between;
}
.test-timer { font-size: 20px; font-weight: 700; font-family: var(--font-mono); }
.test-timer.danger { color: var(--saffron); }
.question-card { background: white; padding: 26px; border-left: 3px solid var(--navy); }
.question-text { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.5; }
.options-grid { display: flex; flex-direction: column; gap: 8px; }
.option {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  font-size: 13.5px; font-weight: 500; transition: all 0.15s;
  display: flex; align-items: center; gap: 10px;
}
.option:hover { border-color: var(--navy); background: var(--surface); }
.option.selected { border-color: var(--navy); background: var(--navy); color: white; }
.option.correct { border-color: var(--success); background: #f0fdf4; color: #16a34a; }
.option.wrong { border-color: var(--error); background: #fef2f2; color: #dc2626; }
.option-letter {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface2); display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700;
  flex-shrink: 0; font-family: var(--font-mono);
}
.option.selected .option-letter { background: rgba(255,255,255,0.2); }
.test-progress {
  padding: 11px 22px; background: var(--surface);
  border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.progress-bar { flex: 1; height: 4px; background: var(--surface2); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--saffron); border-radius: 100px; transition: width 0.3s; }
.result-score { font-size: 56px; font-weight: 800; font-family: var(--font-mono); letter-spacing: -0.02em; }
.result-score.pass { color: var(--success); }
.result-score.fail { color: var(--error); }

/* Auth */
.auth-card { max-width: 420px; margin: 60px auto; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border); }
.auth-header { background: var(--navy); padding: 26px 28px; text-align: center; color: white; }
.auth-header h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.auth-header p { font-size: 13.5px; opacity: 0.65; }
.auth-body { padding: 28px; }
.aadhaar-input { display: flex; gap: 8px; }
.aadhaar-part { flex: 1; text-align: center; letter-spacing: 0.12em; font-size: 17px; font-weight: 700; font-family: var(--font-mono); }
.otp-inputs { display: flex; gap: 8px; justify-content: center; }
.otp-input {
  width: 46px; height: 54px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); text-align: center;
  font-size: 20px; font-weight: 700; font-family: var(--font-mono);
  outline: none; transition: border-color 0.15s;
}
.otp-input:focus { border-color: var(--navy); }
.pin-display { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.pin-dot { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border); background: transparent; transition: all 0.15s; }
.pin-dot.filled { background: var(--navy); border-color: var(--navy); }
.numpad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.numpad-key {
  padding: 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: none;
  font-size: 19px; font-weight: 700; font-family: var(--font-mono);
  cursor: pointer; transition: all 0.15s;
}
.numpad-key:hover { background: var(--surface); border-color: var(--navy); }
.numpad-key:active { transform: scale(0.96); background: var(--navy); color: white; border-color: var(--navy); }
.numpad-key.action { font-size: 13px; font-weight: 700; color: var(--saffron); font-family: var(--font); }
.security-badge { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: var(--text-muted); justify-content: center; }

/* Info Banners */
.info-banner {
  display: flex; align-items: flex-start; gap: 10px;
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-size: 13px; color: #1e40af; margin-bottom: 14px;
}
.nudge-banner {
  background: var(--saffron-pale); border: 1px solid rgba(232,84,26,0.2);
  border-radius: var(--radius-sm); padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #9a3b00; margin-bottom: 20px;
}
.nudge-banner a { color: var(--saffron); font-weight: 700; cursor: pointer; }
.visit-btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  padding: 13px; border: none; border-radius: var(--radius-sm);
  background: var(--navy); color: white; font-size: 14px;
  font-weight: 700; cursor: pointer; justify-content: center;
  font-family: var(--font); transition: all 0.15s; margin-top: 14px;
}
.visit-btn:hover { background: var(--navy-light); }

/* Utilities */
.divider { height: 1px; background: var(--border); margin: 18px 0; }
.position-relative { position: relative; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-16 { margin-bottom: 16px; }
.w-full { width: 100%; }

/* ===== FOOTER ===== */
.tricolor-bar { height: 4px; background: linear-gradient(90deg, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #138808 66.66%); }
footer { background: var(--navy-dark); color: rgba(255,255,255,0.55); padding: 52px 24px 28px; }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: white; font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.65; }
.footer-col h4 { color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-link { display: block; color: rgba(255,255,255,0.45); font-size: 13px; margin-bottom: 8px; cursor: pointer; text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12.5px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-search-card { display: none; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .two-col-section { grid-template-columns: 1fr; }
  .advisory-banner { grid-template-columns: 1fr; }
  .advisory-visual { min-height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topnav-items .topnav-link { padding: 0 9px; font-size: 11.5px; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.cols-2, .form-row.cols-3 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .status-cards { grid-template-columns: 1fr; }
  .topnav-items { display: none; }
}

/* =====================================================
   SITEMAP, FAQ, CONTACT ADDITIONAL STYLES
   ===================================================== */

/* Sitemap links */
.sitemap-link {
  display: block;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.15s;
}
.sitemap-link:hover { color: var(--saffron); text-decoration: underline; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  transition: background 0.15s;
}
.faq-q:hover { background: #f0f5ff; }
.faq-caret { font-size: 10px; color: var(--text-secondary); flex-shrink: 0; margin-left: 12px; }
.faq-a {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  background: #fafbff;
}

/* Challan status badge variants */
.badge-orange { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

/* Service Flow Result Card */
.challan-result-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.challan-result-header { background: var(--surface); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.challan-status-badge { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.badge-green { background: #dcfce7; color: #16a34a; }
.challan-ref { font-size: 13px; font-weight: 700; color: var(--navy); font-family: var(--font-mono); }
.challan-result-grid { padding: 4px 0; }
.challan-row { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 18px; border-bottom: 1px dashed var(--border); font-size: 13px; }
.challan-row:last-child { border-bottom: none; }
.challan-key { color: var(--text-secondary); text-transform: capitalize; flex: 0 0 40%; }
.challan-val { font-weight: 600; color: var(--text-primary); text-align: right; }
