/* =========================================
   SWARA SOLAR — Main Stylesheet
   Design: Clean Modern, Tesla-inspired
   Colors: Green + White + Yellow
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green: #1e7e34;
  --green-dark: #145a24;
  --green-light: #28a745;
  --green-pale: #e8f5ec;
  --yellow: #f5c518;
  --yellow-dark: #d4a017;
  --yellow-light: #fff3cd;
  --white: #ffffff;
  --off-white: #f8fdf9;
  --dark: #0f1f13;
  --text: #1a2e1c;
  --text-light: #5a7a60;
  --border: #d0e8d5;
  --shadow: 0 4px 24px rgba(30,126,52,0.10);
  --shadow-md: 0 8px 40px rgba(30,126,52,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 70px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(30,126,52,0.3);
}
.btn-primary:hover {
  background: var(--green-dark); border-color: var(--green-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,126,52,0.4);
}
.btn-yellow {
  background: var(--yellow); color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.btn-yellow:hover {
  background: var(--yellow-dark); border-color: var(--yellow-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.45);
}
.btn-outline {
  background: transparent; color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-2px); }
.btn-white {
  background: white; color: var(--green);
  border-color: white;
}
.btn-white:hover { background: var(--green-pale); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-dark);
  padding: 6px 16px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.highlight { color: var(--green); }
.highlight-yellow { color: var(--yellow-dark); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(30,126,52,0.1);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem;
  color: var(--green-dark);
}
.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.navbar-logo-icon {
  width: 40px; height: 40px; background: var(--green);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.navbar-logo span { color: var(--yellow-dark); }
.navbar-nav {
  display: flex; align-items: center; gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 8px 14px;
  font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.95rem;
  color: var(--text); border-radius: 8px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-pale); }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius); min-width: 220px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--green-pale); color: var(--green); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-cta .phone-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--green-dark); font-weight: 600; font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; background: var(--dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0; bottom: 0;
  background: white; z-index: 999; overflow-y: auto; padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--text);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.page-offset { padding-top: var(--navbar-h); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a1f 50%, #0f2a14 100%);
  position: relative; overflow: hidden; padding-top: var(--navbar-h);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e7e34' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,126,52,0.3) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: calc(100vh - var(--navbar-h)); padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.15); border: 1px solid rgba(245,197,24,0.4);
  color: var(--yellow); padding: 6px 16px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}
.hero h1 {
  color: white; font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 .yellow { color: var(--yellow); }
.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { }
.hero-stat-number {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2rem; color: var(--yellow);
}
.hero-stat-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 2px; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 32px; width: 100%; max-width: 420px;
}
.hero-card-title {
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.savings-display {
  text-align: center; padding: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius); margin-bottom: 20px;
}
.savings-amount {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3rem; color: white;
}
.savings-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 4px; }
.hero-card-list { }
.hero-card-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-item::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--yellow); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */
.trust-bar {
  background: var(--green); padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; color: white;
}
.trust-icon { font-size: 1.8rem; }
.trust-text { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem; }
.trust-divider {
  width: 1px; height: 30px; background: rgba(255,255,255,0.3);
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition); overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 32px; }
.card-icon {
  width: 56px; height: 56px; background: var(--green-pale);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-light); }

/* Service Cards */
.service-card {
  position: relative; overflow: hidden;
}
.service-card-img {
  height: 200px; background: linear-gradient(135deg, var(--green-pale), var(--green-pale));
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  border-bottom: 1px solid var(--border);
}
.service-card-body { padding: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.service-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 16px;
}

/* ========================================
   BENEFITS
   ======================================== */
.benefit-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 24px;
  background: white; border-radius: var(--radius); border: 1px solid var(--border);
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--green); box-shadow: var(--shadow); }
.benefit-icon {
  width: 52px; height: 52px; background: var(--green); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0; color: white;
}
.benefit-text h4 { margin-bottom: 6px; }
.benefit-text p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'Outfit', sans-serif;
  font-size: 6rem; color: var(--green-pale); line-height: 1;
  position: absolute; top: 16px; right: 24px; font-weight: 900;
}
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text { color: var(--text-light); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 2px; }
.testimonial-location { color: var(--text-light); font-size: 0.85rem; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '☀'; position: absolute; font-size: 300px; opacity: 0.05;
  right: -50px; top: 50%; transform: translateY(-50%);
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .section-label {
  background: rgba(245,197,24,0.2); color: var(--yellow); border: 1px solid rgba(245,197,24,0.3);
}
.cta-banner .section-label::before { background: var(--yellow); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #142e1c;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: white;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-logo span { color: var(--yellow); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--green); color: white; }
.footer-col h5 {
  color: white; font-family: 'Outfit', sans-serif; font-weight: 700;
  margin-bottom: 20px; font-size: 1rem;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; margin-bottom: 14px;
}
.footer-contact-icon { color: var(--yellow); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-cert { display: flex; align-items: center; gap: 8px; }

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.float-buttons {
  position: fixed; bottom: 28px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--transition);
  font-size: 1.4rem; text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; color: white; }
.float-call { background: var(--green); color: white; }
.float-label {
  background: var(--dark); color: white; padding: 6px 12px; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600; white-space: nowrap; margin-right: 8px;
  opacity: 0; transition: var(--transition);
}
.float-btn-wrap { display: flex; align-items: center; }
.float-btn-wrap:hover .float-label { opacity: 1; }

/* ========================================
   CALCULATOR
   ======================================== */
.calculator-section { background: var(--off-white); }
.calculator-card {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.calc-form-group { margin-bottom: 24px; }
.calc-label {
  display: block; font-family: 'Outfit', sans-serif; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.calc-input, .calc-select {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 1rem; color: var(--text);
  transition: var(--transition); background: white;
}
.calc-input:focus, .calc-select:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,126,52,0.1);
}
.calc-slider { width: 100%; accent-color: var(--green); margin-top: 8px; }
.calc-result {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white; border-radius: var(--radius-lg); padding: 32px; margin-top: 32px;
}
.calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.calc-result-item { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px; }
.calc-result-label { font-size: 0.8rem; opacity: 0.8; margin-bottom: 6px; }
.calc-result-value { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.5rem; }

/* ========================================
   PROCESS STEPS
   ======================================== */
.steps-grid { display: flex; gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: var(--border); z-index: 0;
}
.step-item { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; background: var(--green);
  color: white; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  border: 4px solid white; box-shadow: var(--shadow);
}
.step-item h4 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { color: var(--text-light); font-size: 0.85rem; }

/* ========================================
   FAQ
   ======================================== */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px; transition: var(--transition);
}
.faq-item.open { border-color: var(--green); box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  transition: var(--transition);
}
.faq-question:hover { background: var(--green-pale); }
.faq-item.open .faq-question { background: var(--green-pale); color: var(--green-dark); }
.faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-light);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ========================================
   SUBSIDY PAGE
   ======================================== */
.subsidy-hero { background: linear-gradient(135deg, #1a4d2e, #2d7d46); color: white; padding: 100px 0; }
.subsidy-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.subsidy-table th {
  background: var(--green); color: white; padding: 14px 20px;
  font-family: 'Outfit', sans-serif; font-weight: 600; text-align: left;
}
.subsidy-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.subsidy-table tr:hover td { background: var(--green-pale); }
.subsidy-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: white; border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 16px;
  transition: var(--transition);
}
.subsidy-step:hover { border-color: var(--green); box-shadow: var(--shadow); }
.subsidy-step-num {
  width: 44px; height: 44px; background: var(--green); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; flex-shrink: 0;
}

/* ========================================
   BLOG
   ======================================== */
.blog-card { cursor: pointer; }
.blog-card-img {
  height: 220px; background: linear-gradient(135deg, var(--green-pale), #d4f0dd);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.blog-card-body { padding: 28px; }
.blog-meta {
  display: flex; gap: 16px; color: var(--text-light); font-size: 0.85rem; margin-bottom: 12px;
}
.blog-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  padding: 3px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3:hover { color: var(--green); }
.blog-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.read-more { color: var(--green); font-weight: 600; font-size: 0.9rem; font-family: 'Outfit', sans-serif; }

/* Blog Article */
.blog-article { max-width: 800px; margin: 0 auto; }
.blog-article h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; }
.blog-article h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--green-dark); border-left: 4px solid var(--green); padding-left: 16px; }
.blog-article h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-article p { color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.blog-article ul { margin: 16px 0 20px 24px; list-style: disc; }
.blog-article ul li { color: var(--text-light); margin-bottom: 8px; }
.blog-article table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.blog-article table th { background: var(--green); color: white; padding: 12px 16px; text-align: left; font-size: 0.9rem; }
.blog-article table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }

/* ========================================
   CONTACT
   ======================================== */
.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: 'Outfit', sans-serif; font-weight: 600; margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 1rem; transition: var(--transition);
  background: var(--off-white);
}
.form-control:focus { outline: none; border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(30,126,52,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--green); color: white; border-radius: var(--radius-lg); padding: 40px;
}
.contact-info-card h3 { color: white; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-text a { color: white; font-weight: 600; }
.contact-info-text small { opacity: 0.75; font-size: 0.85rem; display: block; margin-top: 2px; }

/* ========================================
   PAGE HEADERS
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a20 100%);
  padding: 80px 0 60px; color: white;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ========================================
   LOCATION PAGES
   ======================================== */
.location-map {
  background: var(--green-pale); border-radius: var(--radius-lg);
  padding: 60px; text-align: center; font-size: 5rem;
  border: 2px dashed var(--border);
}

/* ========================================
   PROJECTS / GALLERY
   ======================================== */
.project-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-img {
  height: 220px; background: linear-gradient(135deg, var(--green-pale), #c8efd4);
  display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative;
}
.project-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white; padding: 4px 12px;
  border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.project-body { padding: 24px; }
.project-body h4 { margin-bottom: 6px; }
.project-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }
.project-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--text-light); }
.project-meta span { display: flex; align-items: center; gap: 4px; }

/* ========================================
   STAT BLOCKS
   ======================================== */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-block {
  text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stat-number {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.5rem;
  color: var(--green); margin-bottom: 8px;
}
.stat-label { color: var(--text-light); font-size: 0.9rem; }

/* ========================================
   POPUP / MODAL
   ======================================== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup {
  background: white; border-radius: var(--radius-lg); padding: 40px;
  max-width: 480px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(0.9); transition: var(--transition);
}
.popup-overlay.active .popup { transform: scale(1); }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  background: var(--green-pale); border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.popup { position: relative; }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* ========================================
   UTILS
   ======================================== */
.bg-light { background: var(--off-white); }
.bg-green-pale { background: var(--green-pale); }
.bg-dark { background: var(--dark); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow-dark); }
.text-light-color { color: var(--text-light); }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-8 { gap: 8px; }
.w-full { width: 100%; }
.badge {
  display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; font-family: 'Outfit', sans-serif;
}
.badge-green { background: var(--green-pale); color: var(--green-dark); }
.badge-yellow { background: var(--yellow-light); color: #7a6000; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .navbar-cta .btn { display: none; }
  .navbar-cta .phone-link { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .btn-group { justify-content: center; }
  .trust-bar-inner { justify-content: center; gap: 16px; }
  .trust-divider { display: none; }
  .steps-grid { flex-direction: column; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .calc-result-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .float-buttons { bottom: 16px; right: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .btn { padding: 12px 22px; }
  .btn-lg { padding: 14px 28px; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print { .navbar, .float-buttons, .popup-overlay { display: none; } }
