/* ============================================================
   JAIPURSOLAR.IN — MAIN STYLESHEET
   ============================================================ */

/* Fonts loaded via HTML <link> for performance — @import removed */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --sun: #F5A623;
  --sun-deep: #E8920A;
  --sun-glow: #FFC857;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #242424;
  --border: #2A2A2A;
  --text: #E8E8E8;
  --muted: #777;
  --muted-2: #555;
  --green: #34D399;
  --wa-green: #25D366;
  --white: #ffffff;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sun: 0 0 40px rgba(245,166,35,0.15);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--sun); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--sun);
  border-radius: 2px;
}
.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-wa:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-wa svg { width: 16px; height: 16px; fill: white; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── PAGE WRAPPER ───────────────────────────────────────────── */
.page { padding-top: 68px; min-height: 100vh; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title span { color: var(--sun); }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--sun);
  color: #000;
}
.btn-primary:hover { background: var(--sun-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.3); }
.btn-wa {
  background: var(--wa-green);
  color: #fff;
}
.btn-wa:hover { background: #20b954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--sun); color: var(--sun); }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}

/* ── FLOATING WHATSAPP ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--sun); }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted-2); }

/* ── HERO (HOME) ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 70%), var(--dark);
}
.hero-sun-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, rgba(245,166,35,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--sun);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--sun); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── WHY CARDS ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.why-card { text-align: center; }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.why-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── BRANDS ──────────────────────────────────────────────────── */
.brands-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.brands-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.brands-label { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; margin-right: 16px; }
.brands-list { display: flex; gap: 32px; align-items: center; }
.brand-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--muted-2);
  white-space: nowrap;
  transition: color 0.2s;
}
.brand-item:hover { color: var(--sun); }

/* ── PRICE CARDS ─────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.price-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.4); }
.price-card.featured {
  border-color: var(--sun);
  background: linear-gradient(160deg, #1a1200 0%, var(--dark-2) 100%);
  box-shadow: var(--shadow-sun);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-kw {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 4px;
}
.plan-type { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.plan-price-row { margin-bottom: 6px; }
.plan-before { font-size: 12px; color: var(--muted-2); }
.plan-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}
.plan-after {
  display: inline-block;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li::before {
  content: '✓';
  color: var(--sun);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.plan-cta {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
}
.price-card.featured .plan-cta {
  background: var(--sun);
  color: #000;
  border-color: var(--sun);
}
.price-card.featured .plan-cta:hover { background: var(--sun-deep); }
.plan-cta:hover { border-color: var(--sun); color: var(--sun); }

/* ── SUBSIDY SECTION ─────────────────────────────────────────── */
.subsidy-box {
  background: linear-gradient(135deg, #0d1f00 0%, #111900 50%, var(--dark-2) 100%);
  border: 1px solid #2a4000;
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.subsidy-amounts { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.subsidy-amt {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  min-width: 100px;
}
.subsidy-amt-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.subsidy-amt-label { font-size: 12px; color: var(--muted); }
.subsidy-right { text-align: center; }
.subsidy-big {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
}
.subsidy-right small { font-size: 14px; color: var(--muted); display: block; margin-top: 4px; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--sun) 0%, rgba(245,166,35,0.2) 100%);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--sun);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--sun);
}
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.about-text h2 span { color: var(--sun); }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.about-visual {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--sun);
  display: block;
}
.about-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── CONTACT FORM ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-top: 48px; }
.form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sun); }
.form-group textarea { resize: none; height: 100px; }
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: var(--wa-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: #20b954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.contact-info-stack { display: flex; flex-direction: column; gap: 16px; justify-content: flex-start; padding-top: 0; }
.info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-card.wa-card { background: linear-gradient(135deg, #064e3b, #065f46); border-color: rgba(37,211,102,0.3); }
.info-icon { font-size: 26px; flex-shrink: 0; }
.info-title { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.info-val { font-size: 16px; color: var(--white); font-weight: 600; margin-top: 2px; }
.info-card.wa-card .info-val { color: var(--green); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(245,166,35,0.04) 0%, transparent 70%);
}
.page-hero .tag { margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 12px; }
.page-hero h1 span { color: var(--sun); }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.7; }

/* ── NOTICE BOX ──────────────────────────────────────────────── */
.notice {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 32px;
  line-height: 1.6;
}
.notice strong { color: var(--sun); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 20px;
    z-index: 999;
  }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section-title { font-size: 32px; }
  .subsidy-box { grid-template-columns: 1fr; text-align: center; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .subsidy-big { font-size: 60px; }
}

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--sun);
  color: #000;
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
  font-size: 14px;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── BREADCRUMBS ────────────────────────────────────────────── */
.breadcrumbs {
  padding: 12px 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  color: var(--muted-2);
  margin-left: 2px;
}
.breadcrumbs li a { color: var(--muted); transition: color 0.2s; }
.breadcrumbs li a:hover { color: var(--sun); }
.breadcrumbs li.active { color: var(--text); }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(245,166,35,0.1);
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--sun);
  font-size: 15px;
  letter-spacing: 1px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--sun);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-location { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonial-kw {
  display: inline-block;
  font-size: 10px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--sun);
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────── */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(245,166,35,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sun); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 10px;
  color: var(--sun);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(245,166,35,0.2);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer[hidden] { display: block; visibility: hidden; max-height: 0; }
.faq-answer.open { visibility: visible; }
.faq-answer-inner {
  padding: 16px 22px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer-inner a { color: var(--sun); text-decoration: underline; text-decoration-color: rgba(245,166,35,0.3); }
.faq-answer-inner a:hover { text-decoration-color: var(--sun); }
.faq-answer-inner strong { color: var(--text); }

/* ── LOCATION & MAP ─────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 16px; }
.nap-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.nap-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.nap-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.nap-row:last-child { border-bottom: none; padding-bottom: 0; }
.nap-row strong { color: var(--text); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.area-tag {
  font-size: 12px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.2s;
}
.area-tag:hover { border-color: rgba(245,166,35,0.3); color: var(--sun); }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  padding-bottom: 60%;
  height: 0;
}
.map-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 998;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  gap: 10px;
  transition: bottom 0.3s ease;
}
.sticky-mobile-cta.visible { bottom: 0; }
.sticky-call-btn,
.sticky-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
}
.sticky-call-btn {
  background: var(--sun);
  color: #000;
}
.sticky-call-btn:hover { background: var(--sun-deep); }
.sticky-wa-btn {
  background: var(--wa-green);
  color: #fff;
}
.sticky-wa-btn:hover { background: #20b954; }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}
.blog-card-thumb {
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.03));
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border-bottom: 1px solid var(--border);
  min-height: 120px;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sun);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 2px 9px;
  border-radius: 50px;
}
.blog-date { font-size: 12px; color: var(--muted-2); }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card p { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--sun);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.blog-card:hover .blog-read-more { gap: 9px; }

/* ── BLOG ARTICLE ───────────────────────────────────────────── */
.blog-article { max-width: 800px; margin: 0 auto; padding: 60px 0 80px; }
.blog-article-header { margin-bottom: 36px; }
.blog-article-header h1 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.blog-article-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 40px 0 14px;
}
.blog-article-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}
.blog-article-content p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.blog-article-content ul,
.blog-article-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article-content li { font-size: 15px; color: var(--muted); line-height: 1.7; list-style: disc; }
.blog-article-content ol li { list-style: decimal; }
.blog-article-content strong { color: var(--text); }
.blog-article-content a { color: var(--sun); text-decoration: underline; text-decoration-color: rgba(245,166,35,0.3); }
.blog-article-content a:hover { text-decoration-color: var(--sun); }
.blog-toc {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sun);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.blog-toc h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sun);
  margin-bottom: 12px;
  font-weight: 700;
}
.blog-toc ol { padding-left: 16px; display: flex; flex-direction: column; gap: 8px; }
.blog-toc li { font-size: 14px; color: var(--muted); list-style: decimal; }
.blog-toc li a { color: var(--muted); transition: color 0.2s; text-decoration: none; }
.blog-toc li a:hover { color: var(--sun); }
.blog-info-box {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.blog-info-box strong { color: var(--sun); }
.blog-cta-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.02));
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin: 40px 0;
}
.blog-cta-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.blog-cta-box p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
  overflow-x: auto;
  display: block;
}
.data-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}
.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { color: var(--sun); font-weight: 700; font-family: var(--font-display); font-size: 16px; }

/* ── 404 PAGE ───────────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.error-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.error-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}
.error-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────────── */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  .wa-float { bottom: 28px; transition: bottom 0.3s; }
  .blog-article-header h1 { font-size: 30px; }
}
@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .error-code { font-size: 80px; }
  .data-table { font-size: 13px; }
}
