/* ═══════════════════════════════════════════════════════════
   ADITWA SOLAR ENERGY — Design System
   Palette: Deep Navy + Solar Gold + Clean White + Earth Green
   Fonts: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

:root {
  --navy:        #0A1628;
  --navy-mid:    #112240;
  --navy-light:  #1A3A5C;
  --gold:        #F5A623;
  --gold-light:  #FFD166;
  --gold-dark:   #D4891A;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --cream:       #FDF8EE;
  --green:       #2D7D46;
  --green-light: #4CAF70;
  --text-dark:   #0A1628;
  --text-mid:    #3D5A80;
  --text-light:  #8BA3C0;
  --border:      rgba(245,166,35,0.18);
  --shadow-gold: 0 0 40px rgba(245,166,35,0.25);
  --shadow-navy: 0 20px 60px rgba(10,22,40,0.3);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.full-width { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-tag { background: rgba(245,166,35,0.2); color: var(--gold-light); }

.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(245,166,35,0.25);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 16px rgba(245,166,35,0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--gold-light);
  background: rgba(245,166,35,0.1);
}

.nav-links li a.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
}

.nav-links li a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2137 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Sun animation */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun-container {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-core {
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(245,166,35,0.6), 0 0 120px rgba(245,166,35,0.3);
  animation: sunPulse 4s ease-in-out infinite;
}

.sun-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

.sun-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateSun 30s linear infinite;
}

.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(to top, transparent, rgba(245,166,35,0.7));
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(calc(var(--i) * 30deg)) translateY(-50%);
}

.ray:nth-child(odd)  { height: 180px; margin-top: -180px; opacity: 0.8; }
.ray:nth-child(even) { height: 140px; margin-top: -140px; opacity: 0.5; }

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(245,166,35,0.6), 0 0 120px rgba(245,166,35,0.3); }
  50%       { transform: scale(1.08); box-shadow: 0 0 80px rgba(245,166,35,0.8), 0 0 160px rgba(245,166,35,0.4); }
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.7; }
}
@keyframes rotateSun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.title-line { display: block; }
.title-divider {
  display: block;
  color: var(--gold);
  font-size: 0.6em;
  margin: 4px 0;
}
.title-line.accent { color: var(--gold); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-subtitle strong { color: var(--gold-light); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.9s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: fadeIn 1.5s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ════════════════════════════════════════════
   SCHEME BANNER
════════════════════════════════════════════ */
.scheme-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, #FFB830 100%);
  padding: 40px 0;
}

.scheme-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.scheme-icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(10,22,40,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.scheme-text {
  flex: 1;
  min-width: 260px;
}

.scheme-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.scheme-text p {
  font-size: 0.95rem;
  color: rgba(10,22,40,0.75);
  line-height: 1.6;
}
.scheme-text strong { color: var(--navy); }

.govt-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,22,40,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   SUBSIDY SECTION
════════════════════════════════════════════ */
.subsidy-section {
  padding: 100px 0;
  background: var(--off-white);
}

.subsidy-group {
  margin-bottom: 64px;
}

.subsidy-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

/* Subsidy Cards */
.subsidy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.subsidy-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
}

.subsidy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-navy);
  border-color: rgba(245,166,35,0.3);
}

.subsidy-card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(245,166,35,0.2), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.subsidy-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(10,22,40,0.25), 0 0 0 1px rgba(245,166,35,0.3);
}

.subsidy-card.featured .card-capacity,
.subsidy-card.featured .card-label,
.subsidy-card.featured .card-row-label { color: rgba(255,255,255,0.7); }
.subsidy-card.featured .card-row-value { color: var(--white); }
.subsidy-card.featured .subsidy-val { color: var(--gold-light) !important; }
.subsidy-card.featured .card-divider { background: rgba(255,255,255,0.15); }
.subsidy-card.featured .card-net { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.3); }
.subsidy-card.featured .card-net span { color: rgba(255,255,255,0.7); }
.subsidy-card.featured .card-net strong { color: var(--gold-light); }
.subsidy-card.featured .card-btn { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }

.popular-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.card-capacity {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.card-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.card-divider {
  height: 1px;
  background: rgba(10,22,40,0.08);
  margin-bottom: 20px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.card-row-label {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.card-row-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.subsidy-val { color: var(--green) !important; }
.cost-val { color: var(--navy-mid) !important; }

.card-net {
  background: rgba(45,125,70,0.08);
  border: 1px solid rgba(45,125,70,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-net span { font-size: 0.78rem; color: var(--text-mid); }
.card-net strong { font-size: 1rem; color: var(--green); }

.card-note {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  margin: 12px 0;
}

.card-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 8px;
}

.card-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-color: transparent;
  transform: translateY(-1px);
}

/* RWA Card */
.rwa-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: var(--transition);
}

.rwa-card:hover {
  box-shadow: var(--shadow-navy);
  border-color: rgba(245,166,35,0.3);
}

.rwa-left { flex: 1; min-width: 180px; }
.rwa-capacity {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.rwa-left p { font-size: 0.9rem; color: var(--text-mid); }

.rwa-mid, .rwa-right { flex: 1; min-width: 160px; }

.rwa-stat { display: flex; flex-direction: column; gap: 4px; }
.rwa-label { font-size: 0.82rem; color: var(--text-mid); }
.rwa-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.rwa-btn { flex-shrink: 0; }

/* Hybrid Cards */
.hybrid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.hybrid-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  transition: var(--transition);
}

.hybrid-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.hybrid-icon { font-size: 2.4rem; margin-bottom: 16px; }
.hybrid-type {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.hybrid-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.hybrid-price span { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 400; }
.hybrid-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(245,166,35,0.2);
  box-shadow: 0 0 20px rgba(245,166,35,0.2);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   BENEFITS SECTION
════════════════════════════════════════════ */
.benefits-section {
  padding: 100px 0;
  background: var(--cream);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.benefits-visual {
  display: flex;
  justify-content: center;
}

.benefit-sun-graphic {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-sun {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245,166,35,0.25) 0%, rgba(245,166,35,0.08) 50%, transparent 70%);
  border-radius: 50%;
  border: 2px dashed rgba(245,166,35,0.3);
  animation: rotateSun 20s linear infinite;
}

.bg-sun::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 2px dashed rgba(245,166,35,0.2);
}

.benefit-center-text {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--white);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(245,166,35,0.2);
  border: 3px solid var(--gold);
}

.big-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.big-label {
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-top: 4px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(10,22,40,0.08);
  border-color: rgba(245,166,35,0.2);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon.green  { background: rgba(45,125,70,0.1);  color: var(--green); }
.benefit-icon.gold   { background: rgba(245,166,35,0.1); color: var(--gold-dark); }
.benefit-icon.blue   { background: rgba(61,90,128,0.1);  color: var(--text-mid); }
.benefit-icon.orange { background: rgba(245,130,35,0.1); color: #E07820; }
.benefit-icon.purple { background: rgba(100,60,180,0.1); color: #6B3FC0; }

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   DOCUMENTS SECTION
════════════════════════════════════════════ */
.documents-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.doc-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.doc-item:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.35);
  transform: translateY(-4px);
}

.doc-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.doc-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.docs-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.docs-note svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.docs-note strong { color: var(--gold-light); }

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-main-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 4px 30px rgba(10,22,40,0.06);
}

.contact-logo-area {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}

.contact-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(245,166,35,0.3);
}

.contact-logo-area h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,125,70,0.1);
  border: 1px solid rgba(45,125,70,0.25);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.office-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.office-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-num-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: var(--transition);
}

.contact-num-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245,166,35,0.15);
  transform: translateY(-2px);
}

.contact-num-card.whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}

.num-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.contact-num-card.whatsapp .num-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}

.num-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.num-val {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

/* Enquiry Form */
.enquiry-form-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.enquiry-form-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}

.enquiry-form-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.6;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(245,166,35,0.08);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.form-group select option { background: var(--navy); color: var(--white); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  border-top: 1px solid rgba(245,166,35,0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.footer-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
}

.footer-links-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul li,
.footer-links-group ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links-group ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(45,125,70,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* AOS-like scroll animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-layout { grid-template-columns: 1fr; }
  .benefits-visual { display: none; }
  .contact-layout  { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 8px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 1rem; padding: 12px 0; }
  .hamburger { display: flex; z-index: 1000; }

  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats   { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }

  .sun-container { width: 300px; height: 300px; top: -40px; right: -60px; opacity: 0.5; }

  .scheme-inner { flex-direction: column; text-align: center; }

  .subsidy-cards { grid-template-columns: 1fr; }
  .rwa-card      { flex-direction: column; }
  .hybrid-cards  { grid-template-columns: 1fr; }

  .offices-grid      { grid-template-columns: 1fr; }
  .contact-numbers   { grid-template-columns: 1fr; }

  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .toast { right: 16px; left: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-card, .enquiry-form-card { padding: 28px 20px; }
}