/* ============================================
   SIVKUSH ENERGY LLP — SHARED DESIGN SYSTEM
   Colors: Dark Navy · Gold/Orange · White
============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0B1827;
  --navy-2:    #0F2035;
  --navy-3:    #162B44;
  --navy-card: rgba(15,32,53,0.8);
  --gold:      #F7931E;
  --gold-2:    #FFAD4A;
  --gold-dark: #D4780F;
  --teal:      #2D8A7A;
  --text:      #E8EDF2;
  --muted:     #7A8FA6;
  --border:    rgba(247,147,30,0.12);
  --border-h:  rgba(247,147,30,0.28);
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ===== MESH BACKGROUND ===== */
.mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(247,147,30,0.12), transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(45,138,122,0.08), transparent 70%); bottom: 100px; left: -100px; animation-delay: -7s; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(247,147,30,0.06), transparent 70%); top: 40%; left: 40%; animation-delay: -3s; }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,25px) scale(1.08); } }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section-alt { background: var(--navy-2); }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.gold { color: var(--gold); }
.gold-grad {
  background: linear-gradient(135deg, #F7931E 0%, #FFAD4A 50%, #F7931E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 1px; }

.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--muted); font-size: 1rem; max-width: 580px; margin-bottom: 3rem; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #F7931E, #FFAD4A);
  color: #0B1827; font-weight: 700; font-family: 'Syne', sans-serif;
  font-size: 0.95rem; padding: 0.85rem 1.8rem; border-radius: 50px;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(247,147,30,0.3);
  position: relative; overflow: hidden;
}
.btn-gold::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); opacity: 0; transition: opacity 0.3s; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,147,30,0.45); }
.btn-gold:hover::after { opacity: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--text);
  font-weight: 600; font-family: 'Syne', sans-serif;
  font-size: 0.95rem; padding: 0.85rem 1.8rem; border-radius: 50px;
  border: 1px solid var(--border-h);
  transition: all 0.3s; backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(247,147,30,0.08); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== CARDS ===== */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(247,147,30,0.04), transparent); opacity: 0; transition: opacity 0.3s; }
.card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(247,147,30,0.08); }
.card:hover::before { opacity: 1; }

/* ===== FADE UP ===== */
.fu { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fu.in { opacity: 1; transform: translateY(0); }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: calc(100% - 2rem); max-width: 1100px;
}
.nav-wrap {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(11,24,39,0.82); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(247,147,30,0.15); border-radius: 50px;
  padding: 0.55rem 0.55rem 0.55rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.3s;
}
#navbar.scrolled .nav-wrap { background: rgba(11,24,39,0.96); border-color: rgba(247,147,30,0.2); }

.nav-logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-logo-icon { width: 34px; height: 34px; }
.nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.02em; }
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 0; margin-left: auto; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  padding: 0.4rem 0.75rem; border-radius: 50px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(247,147,30,0.1); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, #F7931E, #FFAD4A);
  color: #0B1827; font-weight: 700; font-family: 'Syne', sans-serif;
  font-size: 0.82rem; padding: 0.55rem 1.1rem; border-radius: 50px;
  transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { box-shadow: 0 4px 15px rgba(247,147,30,0.4); transform: translateY(-1px); }

.nav-burger { display: none; color: var(--text); padding: 0.4rem; }

/* Mobile Drawer */
.drawer {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(11,24,39,0.97); backdrop-filter: blur(20px);
  flex-direction: column; padding: 5rem 2rem 2rem;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.drawer.open { transform: none; }
.drawer a { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--muted); padding: 0.8rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.drawer a:hover { color: var(--text); }
.drawer-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; }
.drawer-close:hover { color: var(--text); border-color: var(--border-h); }

/* ===========================
   PAGE HERO (shared)
=========================== */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(to bottom, var(--navy-2), var(--navy));
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,147,30,0.1), transparent 60%);
}
.page-hero-tag { margin-bottom: 1rem; justify-content: center; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; max-width: 280px; }
.footer-cert { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.footer-cert span { font-size: 0.7rem; font-weight: 700; background: rgba(247,147,30,0.08); border: 1px solid rgba(247,147,30,0.2); color: var(--gold); padding: 0.2rem 0.6rem; border-radius: 4px; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1.1rem; color: var(--text); letter-spacing: 0.05em; }
.footer-col a { display: block; font-size: 0.83rem; color: var(--muted); padding: 0.22rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-info a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; color: var(--muted); transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--gold); }

/* ===========================
   TICKER BAR
=========================== */
.ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(247,147,30,0.03); padding: 0.65rem 0; }
.ticker-inner { display: flex; gap: 3rem; animation: tickScroll 28s linear infinite; white-space: nowrap; }
.ticker-inner span { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ticker-inner .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes tickScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================
   WHATSAPP FLOAT
=========================== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s;
  animation: waPulse 2s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===========================
   STATS BAR
=========================== */
.stats-bar { background: var(--navy-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.sbar-item strong { display: block; font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.3rem; }
.sbar-item span { font-size: 0.82rem; color: var(--muted); }

/* ===========================
   PM SURYA GHAR BANNER
=========================== */
.pm-banner {
  background: linear-gradient(135deg, rgba(247,147,30,0.12), rgba(45,138,122,0.08));
  border: 1px solid rgba(247,147,30,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  position: relative; overflow: hidden;
}
.pm-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 0% 50%, rgba(247,147,30,0.08), transparent 60%); }
.pm-icon { font-size: 3rem; flex-shrink: 0; }
.pm-text h3 { color: var(--gold); margin-bottom: 0.3rem; }
.pm-text p { color: var(--muted); font-size: 0.9rem; }

/* ===========================
   SERVICE ICON BOX
=========================== */
.svc-icon-box {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
  background: rgba(247,147,30,0.1); border: 1px solid rgba(247,147,30,0.2);
  transition: all 0.3s;
}
.card:hover .svc-icon-box { background: rgba(247,147,30,0.18); transform: scale(1.08) rotate(5deg); }

/* ===========================
   PROCESS STEPS
=========================== */
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 0;
}
.pstep { text-align: center; padding: 0 0.5rem; position: relative; z-index: 1; }
.pstep-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #F7931E, #FFAD4A);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--navy); margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(247,147,30,0.4);
}
.pstep-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.pstep h4 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.pstep p { font-size: 0.78rem; color: var(--muted); }

/* ===========================
   FEATURES GRID (Why Choose Us)
=========================== */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.feature-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
  transition: all 0.3s;
}
.feature-item:hover { border-color: var(--border-h); background: rgba(15,32,53,0.95); }
.feature-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(247,147,30,0.1); border: 1px solid rgba(247,147,30,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0; color: var(--gold;)
}
.feature-item p { font-size: 0.85rem; font-weight: 600; color: var(--text); line-height: 1.4; }

/* ===========================
   ACCORDION (FAQ)
=========================== */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.acc-item {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s;
}
.acc-item.open { border-color: var(--border-h); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem; gap: 1rem; text-align: left;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text);
  transition: color 0.2s;
}
.acc-trigger:hover { color: var(--gold); }
.acc-item.open .acc-trigger { color: var(--gold); }
.acc-arrow { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; color: var(--gold); opacity: 0.6; }
.acc-item.open .acc-arrow { transform: rotate(180deg); opacity: 1; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25,0.8,0.25,1); }
.acc-body-inner { padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.acc-item.open .acc-body { max-height: 300px; }

/* ===========================
   CONTACT FORM
=========================== */
.cform { display: flex; flex-direction: column; gap: 1.2rem; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cfield label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; letter-spacing: 0.05em; text-transform: uppercase; }
.cfield input, .cfield select, .cfield textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm, 8px); padding: 0.8rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none; transition: all 0.2s;
}
.cfield select { -webkit-appearance: none; cursor: pointer; }
.cfield select option { background: var(--navy-2); }
.cfield input:focus, .cfield select:focus, .cfield textarea:focus {
  border-color: rgba(247,147,30,0.5); background: rgba(247,147,30,0.04);
  box-shadow: 0 0 0 3px rgba(247,147,30,0.08);
}
.cfield input::placeholder, .cfield textarea::placeholder { color: rgba(122,143,166,0.5); }
.cfield textarea { resize: vertical; }
.form-success { text-align: center; padding: 2rem; }
.form-success .fsicon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }

/* ===========================
   GALLERY
=========================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.gal-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer; background: var(--navy-3);
  transition: all 0.35s;
}
.gal-card:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.gal-inner {
  width: 100%; height: 100%; position: relative;
  background-size: cover; background-position: center;
}
.gal-inner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(247,147,30,0.07) 0px, rgba(247,147,30,0.07) 1px, transparent 1px, transparent 36px),
              repeating-linear-gradient(90deg, rgba(247,147,30,0.07) 0px, rgba(247,147,30,0.07) 1px, transparent 1px, transparent 54px);
}
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,24,39,0.95) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem; opacity: 0; transition: opacity 0.3s;
}
.gal-card:hover .gal-overlay { opacity: 1; }
.gal-badge {
  align-self: flex-start; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; background: rgba(247,147,30,0.15);
  border: 1px solid rgba(247,147,30,0.3); color: var(--gold);
  padding: 0.25rem 0.7rem; border-radius: 50px; backdrop-filter: blur(10px);
}
.gal-info h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.gal-info p { font-size: 0.75rem; color: rgba(232,237,242,0.65); }
.gal-kw {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--gold); background: rgba(11,24,39,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(247,147,30,0.25); padding: 0.3rem 0.7rem; border-radius: 50px;
}

/* Project image classes by topic */
.gc-residential { background-image: linear-gradient(to bottom, rgba(11, 24, 39, 0.1), rgba(11, 24, 39, 0.7)), url('images/residential.png'); background-size: cover; background-position: center; }
.gc-commercial { background-image: linear-gradient(to bottom, rgba(11, 24, 39, 0.1), rgba(11, 24, 39, 0.7)), url('images/commercial.png'); background-size: cover; background-position: center; }
.gc-industrial { background-image: linear-gradient(to bottom, rgba(11, 24, 39, 0.1), rgba(11, 24, 39, 0.7)), url('images/industrial.png'); background-size: cover; background-position: center; }

/* ===========================
   CONTACT INFO CARDS
=========================== */
.contact-info-grid { display: flex; flex-direction: column; gap: 1rem; }
.ci-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem 1.4rem;
  transition: all 0.25s;
}
.ci-card:hover { border-color: var(--border-h); transform: translateX(4px); }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.ci-card strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.1rem; }
.ci-card span { font-size: 0.82rem; color: var(--muted); }
.ci-card a { color: var(--gold); }

/* ===========================
   LOAN / SUBSIDY SPECIFIC
=========================== */
.loan-highlight {
  background: linear-gradient(135deg, rgba(247,147,30,0.1), rgba(45,138,122,0.06));
  border: 1px solid rgba(247,147,30,0.2);
  border-radius: var(--radius-xl); padding: 3rem;
  text-align: center;
}
.loan-highlight h2 { margin-bottom: 1rem; }
.loan-highlight p { color: var(--muted); max-width: 500px; margin: 0 auto 2rem; }

.benefit-list { display: flex; flex-direction: column; gap: 0.6rem; }
.benefit-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; }
.benefit-item::before { content: '✓'; color: var(--gold); font-weight: 800; width: 20px; flex-shrink: 0; }

/* ===========================
   BREADCRUMB
=========================== */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text); }

/* ===========================
   RESPONSIVE
=========================== */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .process-grid::before { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .container { max-width: 100%; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  /* Hero (index page) */
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-right { order: -1; }
  .hero-card { max-width: 480px; margin: 0 auto; }

  /* Why Choose grid */
  .why-grid { grid-template-columns: 1fr !important; }

  /* Services mini grid */
  .svc-mini-grid { grid-template-columns: 1fr 1fr !important; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; }
  .quick-contact { grid-template-columns: 1fr 1fr; }

  /* Loan features */
  .loan-features-grid { grid-template-columns: 1fr 1fr; }
  .emi-inputs { grid-template-columns: 1fr 1fr; }
  .emi-result { grid-template-columns: 1fr 1fr; }

  /* About mission */
  .mission-grid { grid-template-columns: 1fr !important; }

  /* Services detail */
  .svc-detail-grid { grid-template-columns: 1fr !important; }
  .svc-full { grid-column: span 1 !important; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }

  /* FAQ layout */
  .faq-layout { grid-template-columns: 1fr !important; }
  .faq-sidebar { position: static !important; display: flex; gap: 1rem; flex-wrap: wrap; }
  .faq-sidebar .card { flex: 1; min-width: 240px; }

  /* PM banner */
  .pm-banner { flex-direction: column; text-align: center; }

  /* Subsidy calc */
  .sub-calc-row { flex-direction: column; }
  .sub-calc-field, .sub-result-box { width: 100%; min-width: unset; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .drawer { display: flex; }

  /* Page hero */
  .page-hero { padding: 8rem 0 3.5rem; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .page-hero p { font-size: .9rem; }

  /* Sections */
  .section { padding: 4rem 0; }

  /* Typography */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }

  /* Process */
  .process-grid { grid-template-columns: repeat(2,1fr); }

  /* Stats */
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

  /* Eligibility grid (subsidy page) */
  .eligibility-grid { grid-template-columns: 1fr 1fr; }

  /* Cert grid (about page) */
  .cert-grid { grid-template-columns: 1fr 1fr; }

  /* Values grid (about page) */
  .values-grid { grid-template-columns: 1fr 1fr !important; }

  /* Subsidy table */
  .subsidy-table { font-size: .82rem; }
  .subsidy-table th, .subsidy-table td { padding: .75rem .8rem; }

  /* Hero section adjustments */
  .hero { padding: 7rem 0 4rem; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.5rem) !important; }
  .hero-trust { gap: 1rem; }
  .hcard-stats { grid-template-columns: 1fr 1fr; }

  /* Contact form row */
  .cform-row { grid-template-columns: 1fr; }

  /* EMI inputs */
  .emi-inputs { grid-template-columns: 1fr; }
  .emi-result { grid-template-columns: 1fr; }

  /* Loan features */
  .loan-features-grid { grid-template-columns: 1fr; }

  /* Services mini */
  .svc-mini-grid { grid-template-columns: 1fr !important; }

  /* Benefits grid */
  .benefits-grid { grid-template-columns: 1fr !important; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  /* Navbar */
  #navbar { width: calc(100% - 1.5rem); top: 0.75rem; }
  .nav-cta { display: none; }
  .nav-logo-text { font-size: .95rem; }

  /* Typography */
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.65rem; }
  .section-subtitle { font-size: .9rem; }

  /* Sections */
  .section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* Hero */
  .hero { padding: 6rem 0 3rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-gold, .hero-btns .btn-outline { width: 100%; justify-content: center; }

  /* Stats bar */
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .sbar-item strong { font-size: 1.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr; }

  /* Eligibility */
  .eligibility-grid { grid-template-columns: 1fr; }

  /* Cert grid */
  .cert-grid { grid-template-columns: 1fr 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr !important; }

  /* About team inner grid */
  .team-inner-grid { grid-template-columns: 1fr !important; }

  /* Contact */
  .quick-contact { grid-template-columns: 1fr; }
  .contact-grid { gap: 2rem; }

  /* Loan */
  .loan-features-grid { grid-template-columns: 1fr; }
  .emi-result { grid-template-columns: 1fr; }
  .partners-grid { gap: .5rem; }
  .partner-badge { font-size: .8rem; padding: .6rem 1rem; }

  /* CTA buttons */
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-gold, .cta-btns .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  /* Cards */
  .card { padding: 1.4rem; }
  .svc-detail-card { padding: 1.5rem; }

  /* WhatsApp float */
  .wa-float { width: 48px; height: 48px; bottom: 1.2rem; right: 1.2rem; }
  .wa-float svg { width: 26px; height: 26px; }

  /* PM Banner */
  .pm-banner { padding: 1.5rem; }
  .pm-icon { font-size: 2.2rem; }

  /* Subsidy table: hide less important columns on tiny screens */
  .subsidy-table th:nth-child(3),
  .subsidy-table td:nth-child(3) { display: none; }

  /* Loan highlight */
  .loan-highlight { padding: 2rem 1.4rem; }

  /* FAQ sidebar goes to bottom on mobile */
  .faq-sidebar { flex-direction: column; }

  /* Hero card */
  .hero-card { padding: 1.4rem; }
  .hstat-val { font-size: 1.5rem; }
}

/* ---- Touch/hover improvements ---- */
@media (hover: none) {
  /* Ensure tap targets are large enough */
  .nav-links a { padding: .55rem .85rem; }
  .btn-gold, .btn-outline { min-height: 44px; }
  .acc-trigger { min-height: 52px; }
  .gf-btn { min-height: 40px; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
