/* ============================================================
   ESeva.co – Main Stylesheet
   Mobile-first, Lightweight, SEO-optimized
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:      #1a56db;
  --primary-dark: #1141a8;
  --primary-light:#e8f0fe;
  --secondary:    #f97316;
  --accent:       #10b981;
  --danger:       #ef4444;
  --dark:         #1e293b;
  --dark-2:       #334155;
  --mid:          #64748b;
  --light:        #f1f5f9;
  --lighter:      #f8fafc;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.14);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    18px;
  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition:   .25s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--lighter);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Utility ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section    { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.text-center  { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-accent  { background: #d1fae5; color: #065f46; }
.badge-orange  { background: #fff7ed; color: #c2410c; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.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; }
.mt-1  { margin-top: 4px;  } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4  { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,.35); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #ea6c04; color: var(--white); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: 6px 14px; font-size: .82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ── Section Headings ───────────────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700; color: var(--dark);
  margin-bottom: 8px; line-height: 1.25;
}
.section-subtitle {
  font-size: 1rem; color: var(--mid);
  max-width: 600px; margin: 0 auto 36px;
}

/* ── Announcement Bar ───────────────────────────────────────── */
#announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white); text-align: center;
  padding: 8px 16px; font-size: .82rem; font-weight: 500;
}
#announcement-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }
.marquee-wrapper { overflow: hidden; }

/* ── Top Utility Bar ────────────────────────────────────────── */
#top-bar {
  background: var(--dark); color: #94a3b8;
  padding: 5px 0; font-size: .78rem;
  display: flex; align-items: center;
}
#top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
#top-bar a { color: #94a3b8; }
#top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }

/* ── Language Switcher ──────────────────────────────────────── */
#lang-switcher { position: relative; }
#lang-btn {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #e2e8f0; padding: 3px 10px; border-radius: var(--radius-sm);
  font-size: .78rem; display: flex; align-items: center; gap: 4px;
}
#lang-btn:hover { background: rgba(255,255,255,.2); }
#lang-dropdown {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  min-width: 150px; z-index: 1000;
}
#lang-dropdown a {
  display: block; padding: 8px 14px; color: var(--dark); font-size: .85rem;
  border-bottom: 1px solid var(--border);
}
#lang-dropdown a:last-child { border-bottom: none; }
#lang-dropdown a:hover { background: var(--primary-light); }

/* ── Header / Navbar ────────────────────────────────────────── */
#header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 900;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--white); font-weight: 800;
}
.logo-text { line-height: 1.2; }
.logo-text .brand { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.logo-text .tagline { font-size: .68rem; color: var(--mid); text-transform: uppercase; letter-spacing: .5px; }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--dark-2);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--primary-light); color: var(--primary); }
.nav-link .arrow { font-size: .65rem; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 230px; z-index: 800;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; color: var(--dark-2); font-size: .87rem;
  border-bottom: 1px solid var(--border); transition: all var(--transition);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); padding-left: 22px; }
.dropdown-item .icon { font-size: 1rem; width: 22px; text-align: center; }

/* Mega dropdown for States */
.dropdown.mega { min-width: 640px; padding: 16px; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.mega-grid a { padding: 7px 10px; border-radius: var(--radius-sm); font-size: .82rem; color: var(--dark-2); }
.mega-grid a:hover { background: var(--primary-light); color: var(--primary); }

/* Hamburger */
#hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
#hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* Search bar */
.header-search { position: relative; }
.header-search input {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 24px; padding: 7px 16px 7px 38px;
  font-size: .85rem; width: 220px; color: var(--dark);
  transition: all var(--transition);
}
.header-search input:focus { outline: none; border-color: var(--primary); width: 280px; background: var(--white); }
.header-search .search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--mid); font-size: .9rem;
}

/* ── Hero Section ───────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, #0f2460 0%, #1a56db 60%, #1e40af 100%);
  color: var(--white); padding: 72px 0 80px; position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--lighter);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 4px 14px; font-size: .78rem; font-weight: 600; margin-bottom: 16px; }
.hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-title span { color: #fde68a; }
.hero-desc { font-size: 1.05rem; opacity: .88; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-item .num { font-size: 1.6rem; font-weight: 800; color: #fde68a; }
.hero-stat-item .label { font-size: .78rem; opacity: .8; }

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg); padding: 28px;
}
.hero-search-box h3 { font-size: 1.1rem; margin-bottom: 16px; }
.search-form { display: flex; flex-direction: column; gap: 12px; }
.search-form select, .search-form input {
  background: rgba(255,255,255,.9); border: none; border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: .9rem; color: var(--dark); width: 100%;
}
.search-form select:focus, .search-form input:focus { outline: 2px solid #fde68a; }
.quick-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.quick-link { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: 4px 12px; border-radius: 20px; font-size: .78rem; transition: all var(--transition); }
.quick-link:hover { background: rgba(255,255,255,.3); color: var(--white); }

/* ── Stats Bar ──────────────────────────────────────────────── */
#stats-bar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  padding: 20px 0;
}
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-item .label { font-size: .8rem; color: var(--mid); margin-top: 4px; }

/* ── Category Cards ─────────────────────────────────────────── */
.cat-card {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid var(--border); padding: 24px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cat-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.cat-desc { font-size: .85rem; color: var(--mid); margin-bottom: 16px; line-height: 1.5; }
.cat-link { color: var(--primary); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.cat-link:hover { gap: 8px; }

/* ── Scheme Cards ───────────────────────────────────────────── */
.scheme-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.scheme-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.scheme-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.scheme-title { font-size: .95rem; font-weight: 700; color: var(--dark); }
.scheme-desc { font-size: .83rem; color: var(--mid); flex: 1; margin-bottom: 14px; line-height: 1.5; }
.scheme-meta { display: flex; justify-content: space-between; align-items: center; }
.scheme-tag { font-size: .72rem; padding: 3px 8px; border-radius: 20px; background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* ── State Grid ─────────────────────────────────────────────── */
.state-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 12px;
  text-align: center; transition: all var(--transition); cursor: pointer;
}
.state-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.state-card .emoji { font-size: 1.8rem; margin-bottom: 6px; }
.state-card .name { font-size: .82rem; font-weight: 600; color: var(--dark); }
.state-card .count { font-size: .72rem; color: var(--mid); margin-top: 2px; }

/* ── Info Cards ─────────────────────────────────────────────── */
.info-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 24px;
  transition: box-shadow var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white); padding: 48px 0 56px;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 8px; }
.page-hero p  { font-size: 1rem; opacity: .88; max-width: 600px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: .83rem; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; color: var(--mid); }
.breadcrumb li a { color: var(--primary); }
.breadcrumb li + li::before { content: '›'; color: var(--mid); }
.breadcrumb li:last-child { color: var(--dark); font-weight: 500; }

/* ── Sidebar ────────────────────────────────────────────────── */
.page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; margin-bottom: 20px;
}
.sidebar-title { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.sidebar-link { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: var(--radius-sm); font-size: .85rem; color: var(--dark-2); transition: all var(--transition); }
.sidebar-link:hover, .sidebar-link.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

/* ── Accordion / FAQ ────────────────────────────────────────── */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden; }
.accordion-header {
  width: 100%; text-align: left; padding: 14px 16px;
  background: var(--white); font-size: .9rem; font-weight: 600;
  color: var(--dark); display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: background var(--transition);
}
.accordion-header:hover { background: var(--primary-light); }
.accordion-header .acc-icon { font-size: .8rem; transition: transform var(--transition); }
.accordion-header.open { background: var(--primary-light); color: var(--primary); }
.accordion-header.open .acc-icon { transform: rotate(180deg); }
.accordion-body { display: none; padding: 14px 16px; background: var(--lighter); font-size: .88rem; color: var(--dark-2); line-height: 1.65; }
.accordion-body.show { display: block; }

/* ── Table ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--primary); color: var(--white); }
th { padding: 12px 16px; font-size: .85rem; text-align: left; font-weight: 600; }
td { padding: 11px 16px; font-size: .85rem; border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--lighter); }
tbody tr:nth-child(even) { background: #fafbfc; }

/* ── Step List ──────────────────────────────────────────────── */
.steps { counter-reset: step; }
.step-item { display: flex; gap: 16px; margin-bottom: 20px; }
.step-num {
  counter-increment: step;
  min-width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem; flex-shrink: 0;
}
.step-content h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: .88rem; color: var(--mid); }

/* ── Alert / Note ───────────────────────────────────────────── */
.alert { border-radius: var(--radius-sm); padding: 14px 16px; font-size: .87rem; margin-bottom: 16px; display: flex; gap: 10px; align-items: flex-start; }
.alert-info  { background: var(--primary-light); border-left: 4px solid var(--primary); color: #1e40af; }
.alert-warn  { background: #fff7ed; border-left: 4px solid var(--secondary); color: #9a3412; }
.alert-success { background: #d1fae5; border-left: 4px solid var(--accent); color: #065f46; }

/* ── Tag Chips ──────────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 500; background: var(--light); color: var(--dark-2); transition: all var(--transition); cursor: pointer; }
.tag:hover { background: var(--primary-light); color: var(--primary); }
.tag.active { background: var(--primary); color: var(--white); }

/* ── Search Results ─────────────────────────────────────────── */
#search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); z-index: 500; max-height: 340px; overflow-y: auto;
}
.search-result-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: .88rem; cursor: pointer; }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--primary-light); }
.result-icon { font-size: 1.1rem; width: 28px; text-align: center; }
.result-name { font-weight: 600; color: var(--dark); }
.result-cat { font-size: .75rem; color: var(--mid); }

/* ── Floating Contact Widget ────────────────────────────────── */
#float-contact-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  background: var(--secondary); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(249,115,22,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: all var(--transition);
}
#float-contact-btn:hover { transform: scale(1.1); background: #ea6c04; }

#float-contact-panel {
  position: fixed; bottom: 96px; right: 28px; z-index: 1000;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); width: 320px;
  border: 1px solid var(--border); overflow: hidden;
  display: none;
}
#float-contact-panel.open { display: block; animation: slideUp .25s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.panel-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.panel-header h3 { font-size: .95rem; }
.panel-close { color: var(--white); font-size: 1.1rem; opacity: .8; }
.panel-close:hover { opacity: 1; }
.panel-body { padding: 16px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 4px; color: var(--dark-2); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 9px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .85rem; color: var(--dark);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 70px; }

/* ── Disclaimer ─────────────────────────────────────────────── */
#disclaimer {
  background: #fffbeb; border-top: 2px solid #fcd34d;
  padding: 14px 0;
}
#disclaimer .disclaimer-text { font-size: .82rem; color: #78350f; line-height: 1.6; }
#disclaimer strong { color: #92400e; }

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--dark); color: #94a3b8;
  padding: 48px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: #64748b; }
.footer-desc { font-size: .85rem; margin-top: 12px; line-height: 1.6; color: #94a3b8; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: .9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-links a { display: block; font-size: .83rem; color: #94a3b8; padding: 3px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem; }
.footer-bottom a { color: #64748b; }
.footer-bottom a:hover { color: #94a3b8; }

/* ── Scroll to top ──────────────────────────────────────────── */
#scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  background: var(--primary); color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
#scroll-top.show { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Page-specific ──────────────────────────────────────────── */
.scheme-detail-header { background: var(--primary-light); border-radius: var(--radius); padding: 24px; margin-bottom: 28px; border-left: 5px solid var(--primary); }
.scheme-detail-header h1 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.scheme-meta-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.scheme-meta-item { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: var(--dark-2); background: var(--white); padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); }

/* Filter Bar */
.filter-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 24px; }
.filter-bar .filter-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }
.filter-bar select, .filter-bar input { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .87rem; color: var(--dark); background: var(--white); }
.filter-bar select:focus, .filter-bar input:focus { outline: none; border-color: var(--primary); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-search-box { display: none; }
  .header-search input { width: 160px; }
  .header-search input:focus { width: 200px; }
}
@media (max-width: 768px) {
  #main-nav { display: none; position: fixed; inset: 0; top: 60px; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; overflow-y: auto; z-index: 800; }
  #main-nav.open { display: flex; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; min-width: unset; }
  .dropdown.mega { min-width: unset; }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  #hamburger { display: flex; }
  .header-search { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  #hero { padding: 48px 0 60px; }
  .stats-inner { justify-content: flex-start; }
  #float-contact-panel { right: 12px; bottom: 90px; width: calc(100vw - 24px); }
  #float-contact-btn { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .section { padding: 40px 0; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-in { animation: fadeInUp .45s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  #header, #float-contact-btn, #float-contact-panel, #scroll-top, #announcement-bar, #top-bar { display: none !important; }
  body { font-size: 12pt; }
}
