/* ============================================
   Nueva Energy Solar - Static Site Styles
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   Colors
   ============================================ */
:root {
  --emerald-dark: #004D26;
  --emerald: #008A45;
  --emerald-light: #00B35A;
  --gold: #FFD700;
  --gold-dark: #E5C200;
  --navy: #0A192F;
  --orange: #FF6B35;
  --teal: #2A9D8F;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,138,69,0.4); }
  50% { box-shadow: 0 0 40px rgba(255,215,0,0.6); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.anim-fade-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }
.anim-fade-in { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.anim-slide-left { opacity: 0; animation: slideInLeft 0.7s ease forwards; }
.anim-slide-right { opacity: 0; animation: slideInRight 0.7s ease forwards; }
.anim-scale { opacity: 0; animation: scaleIn 0.5s ease forwards; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}
.header .nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; color: var(--emerald-dark); }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: #fff; }
.logo-sub { display: block; font-size: 0.7rem; font-weight: 600; color: var(--gold); }
.header.scrolled .logo-text { color: var(--emerald-dark); }
.header.scrolled .logo-sub { color: var(--emerald); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  padding: 0.5rem 0.875rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  color: rgba(255,255,255,0.9); transition: all 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--gold); }
.header.scrolled .nav-links a { color: var(--emerald-dark); }
.header.scrolled .nav-links a:hover { background: rgba(0,138,69,0.08); }
.header.scrolled .nav-links a.active { color: var(--emerald); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: #fff; }
.header.scrolled .nav-phone { color: var(--emerald-dark); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger svg { width: 28px; height: 28px; color: #fff; }
.header.scrolled .hamburger svg { color: var(--emerald-dark); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.5rem;
  padding: 1rem 0; border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 1rem; border-radius: 8px; font-weight: 600; color: #fff; font-size: 1rem;
}
.header.scrolled .mobile-menu a { color: var(--emerald-dark); }
.mobile-menu a.active { color: var(--gold); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.3s ease; font-family: 'Space Grotesk', sans-serif;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--emerald); color: #fff; box-shadow: 0 4px 15px rgba(0,138,69,0.3); }
.btn-primary:hover { background: #006B36; box-shadow: 0 6px 25px rgba(0,138,69,0.4); }

.btn-secondary { background: var(--gold); color: var(--emerald-dark); box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
.btn-secondary:hover { background: var(--gold-dark); box-shadow: 0 6px 25px rgba(255,215,0,0.4); }

.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--emerald-dark); }

.btn-outline-green { background: transparent; border: 2px solid var(--emerald); color: var(--emerald); }
.btn-outline-green:hover { background: var(--emerald); color: #fff; }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

.btn svg { width: 20px; height: 20px; }

/* ============================================
   Cards
   ============================================ */
.card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.card-body { padding: 2rem; }

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.badge-gold { background: var(--gold); color: var(--emerald-dark); }
.badge-green { background: rgba(0,138,69,0.1); color: var(--emerald); }
.badge-teal { background: var(--teal); color: #fff; }
.badge-orange { background: var(--orange); color: #fff; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,77,38,0.95) 0%, rgba(0,138,69,0.85) 50%, rgba(0,138,69,0.7) 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 720px; padding: 8rem 0; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; margin-bottom: 1.5rem; font-weight: 900; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; max-width: 580px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Stats Strip */
.stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--emerald-dark); padding: 1.5rem 0;
  border-top: 4px solid var(--gold);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stats-grid .stat-value { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stats-grid .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============================================
   Page Hero (sub pages)
   ============================================ */
.page-hero { padding: 10rem 0 5rem; background: var(--navy); text-align: center; }
.page-hero .subtitle { color: #FFC107; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.page-hero p { color: #9CA3AF; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================
   Sections
   ============================================ */
.section { padding: 6rem 0; }
.section-white { background: #fff; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--emerald-dark); }
.section-navy { background: var(--navy); }
.section-green { background: var(--emerald); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 3rem); color: var(--emerald-dark); margin-bottom: 1rem; font-weight: 900; }
.section-header h2 span { color: var(--emerald); }
.section-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.section-dark .section-header h2,
.section-navy .section-header h2 { color: #fff; }
.section-dark .section-header h2 span { color: var(--gold); }
.section-dark .section-header p,
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================
   Urgency Banner
   ============================================ */
.urgency-banner {
  background: var(--gold); padding: 1rem 0; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.urgency-banner p { color: var(--emerald-dark); font-weight: 700; font-size: 1.1rem; }
.urgency-banner .btn { padding: 0.5rem 1.25rem; font-size: 0.85rem; background: var(--emerald-dark); color: #fff; }
.urgency-banner .btn:hover { background: #003319; }

/* ============================================
   Grid Layouts
   ============================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

/* ============================================
   Value Props
   ============================================ */
.value-card .card-body { padding: 2rem; }
.value-card .icon-box {
  width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: transform 0.3s;
}
.value-card:hover .icon-box { transform: scale(1.1); }
.value-card .icon-box svg { width: 28px; height: 28px; }
.icon-green { background: var(--emerald); }
.icon-green svg { color: #fff; }
.icon-gold { background: var(--gold); }
.icon-gold svg { color: var(--emerald-dark); }
.value-card h3 { font-size: 1.2rem; color: var(--emerald-dark); margin-bottom: 0.75rem; }
.value-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ============================================
   Service Cards
   ============================================ */
.service-card { cursor: pointer; }
.service-card .icon-box {
  width: 64px; height: 64px; border-radius: 12px; background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: all 0.3s;
}
.service-card .icon-box svg { width: 32px; height: 32px; color: #fff; }
.service-card:hover .icon-box { background: var(--gold); }
.service-card:hover .icon-box svg { color: var(--emerald-dark); }
.service-card h3 { font-size: 1.2rem; color: var(--emerald-dark); margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1rem; }
.service-card .learn-more {
  color: var(--emerald); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.25rem; transition: all 0.3s;
}
.service-card:hover .learn-more { color: var(--gold); gap: 0.5rem; }

/* ============================================
   Steps / How It Works
   ============================================ */
.step { text-align: center; position: relative; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%; background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,138,69,0.3);
}
.step:hover .step-circle { background: var(--gold); }
.step-circle span { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 900; color: #fff; }
.step:hover .step-circle span { color: var(--emerald-dark); }
.step h3 { font-size: 1.1rem; color: var(--emerald-dark); margin-bottom: 0.5rem; }
.step p { color: var(--gray-600); font-size: 0.9rem; }

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-card .stars svg { width: 24px; height: 24px; color: var(--gold); fill: var(--gold); }
.testimonial-card blockquote { color: var(--gray-700); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.testimonial-card .author-name { font-weight: 700; color: var(--emerald-dark); }
.testimonial-card .author-loc { font-size: 0.85rem; color: var(--gray-500); }

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-item {
  border: 2px solid var(--gray-100); border-radius: 12px; margin-bottom: 1rem;
  background: #fff; overflow: hidden; transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.faq-question {
  width: 100%; padding: 1.5rem; border: none; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--emerald-dark);
  text-align: left;
}
.faq-question svg { width: 20px; height: 20px; color: var(--emerald); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem; color: var(--gray-600); font-size: 1rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }

/* ============================================
   CTA Sections
   ============================================ */
.cta-section { padding: 6rem 0; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.5rem; font-weight: 900; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.solar-gradient { background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%); }

/* ============================================
   Check List
   ============================================ */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-list .check-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-list .check-icon svg { width: 16px; height: 16px; color: var(--emerald-dark); }
.check-list span { color: #fff; font-weight: 500; }

.check-list-dark .check-icon { background: var(--teal); }
.check-list-dark .check-icon svg { color: #fff; }
.check-list-dark span { color: var(--gray-600); }

/* ============================================
   Image with floating stat
   ============================================ */
.img-container { position: relative; }
.img-container img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); width: 100%; }
.floating-stat {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--gold); padding: 1.5rem; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.floating-stat .stat-value { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--emerald-dark); }
.floating-stat .stat-label { font-size: 0.85rem; color: var(--emerald-dark); font-weight: 600; }

/* ============================================
   Contact Cards
   ============================================ */
.contact-card { display: flex; align-items: flex-start; gap: 1rem; }
.contact-card .contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,107,53,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .contact-icon svg { width: 24px; height: 24px; color: var(--orange); }
.contact-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--gray-600); }
.contact-card a:hover { color: var(--orange); }

/* ============================================
   Form Styles
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.5rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem; border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s; background: #fff;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,138,69,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--emerald-dark); color: #fff; padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer h4 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.social-links a:hover { background: var(--gold); }
.social-links a svg { width: 20px; height: 20px; color: #fff; }
.social-links a:hover svg { color: var(--emerald-dark); }

.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding: 2rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: #fff; }

/* ============================================
   Service Detail (alternating layout)
   ============================================ */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
.service-detail:nth-child(even) img { order: -1; }
.service-detail .svc-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.service-detail .svc-icon svg { width: 28px; height: 28px; color: #fff; }
.service-detail h2 { font-size: 1.75rem; color: var(--navy); margin-bottom: 1rem; }
.service-detail > div > p { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.7; }

/* ============================================
   Projects Grid
   ============================================ */
.project-card { cursor: pointer; }
.project-card .project-img {
  position: relative; height: 224px; overflow: hidden;
}
.project-card .project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-img img { transform: scale(1.1); }
.project-card .project-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.project-card .project-badge { position: absolute; bottom: 1rem; left: 1rem; }
.project-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.project-card .project-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.project-card .project-loc { color: var(--gray-500); display: flex; align-items: center; gap: 0.25rem; }
.project-card .project-cap { color: var(--orange); font-weight: 600; }

/* ============================================
   Comparison Table
   ============================================ */
.comparison-table { width: 100%; }
.comparison-table .table-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 0.75rem 0;
  border-bottom: 2px solid var(--gray-200); font-size: 0.85rem; font-weight: 600; color: var(--gray-500);
}
.comparison-table .table-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100); font-size: 0.95rem;
}
.comparison-table .table-row .period { font-weight: 600; color: var(--navy); }
.comparison-table .table-row .with-solar { text-align: center; color: var(--teal); font-weight: 600; }
.comparison-table .table-row .without-solar { text-align: right; color: #ef4444; font-weight: 600; }

/* ============================================
   Search Input
   ============================================ */
.search-wrap { position: relative; max-width: 560px; margin: 0 auto; }
.search-wrap input {
  width: 100%; padding: 1rem 1rem 1rem 3rem; border-radius: 50px; border: none;
  font-size: 1rem; font-family: 'Space Grotesk', sans-serif; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.search-wrap input:focus { outline: none; box-shadow: 0 4px 30px rgba(0,138,69,0.2); }
.search-wrap svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--gray-400); }

/* ============================================
   Map Placeholder
   ============================================ */
.map-placeholder {
  background: var(--gray-200); border-radius: 16px; height: 400px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--gray-400); }
.map-placeholder p { color: var(--gray-500); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .service-detail { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats-grid .stat-value { font-size: 1.75rem; }
  .hero-content { padding: 6rem 0 10rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-stat { bottom: -1rem; left: auto; right: 1rem; padding: 1rem; }
  .floating-stat .stat-value { font-size: 1.75rem; }
  .service-detail:nth-child(even) img { order: 0; }
}

@media (max-width: 480px) {
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .hero h1 { font-size: 2rem; }
}
