/*
Theme Name: Electrosol Solar
Theme URI: https://electrosolsolar.com
Author: Electrosol Solar India Pvt Ltd
Author URI: https://electrosolsolar.com
Description: Premium solar energy company website theme for Electrosol Solar India Pvt Ltd — Pune, Maharashtra.
Version: 1.0.0
License: Proprietary
Text Domain: electrosol-solar
*/

/* ── Brand Tokens ──────────────────────────────── */
:root {
  --primary:   #0B3D91;
  --secondary: #FFC107;
  --accent:    #2E7D32;
  --bg:        #F8FAFC;
  --text:      #1E293B;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --radius:    0.75rem;
}

/* ── Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

/* ── Layout ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-alt { background: #EFF6FF; }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* ── Buttons ───────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .95rem; cursor: pointer; transition: all .2s; border: none; }
.btn-primary   { background: var(--secondary); color: #1a1a1a; }
.btn-primary:hover { background: #e6ac00; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,193,7,.4); }
.btn-outline   { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-dark      { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #0a3580; }

/* ── Cards ─────────────────────────────────────── */
.card { background: #fff; border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }

/* ── Navbar ─────────────────────────────────────── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; padding: 1rem 0; transition: all .3s; border-bottom: 1px solid transparent; }
#navbar.scrolled { padding: .6rem 0; box-shadow: 0 2px 20px rgba(0,0,0,.08); border-color: var(--border); backdrop-filter: blur(8px); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; }
.navbar-logo-img { height: 40px; width: auto; display: block; }
.navbar-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.navbar-links a { font-size: .9rem; font-weight: 500; color: #4B5563; transition: color .2s; }
.navbar-links a:hover, .navbar-links a.active { color: var(--primary); font-weight: 600; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); transition: all .3s; }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 1rem 0; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 1.5rem; }
.mobile-menu ul li { padding: .75rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu ul li:last-child { border: none; }
.mobile-menu a { font-weight: 500; color: var(--text); }

/* ── Hero ────────────────────────────────────────── */
.hero { position: relative; padding: 6.5rem 0 4rem; background: linear-gradient(135deg, var(--primary), #0a2f6b); overflow: hidden; }
.hero .container { max-width: 1400px; }
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.hero-content { position: relative; z-index: 1; color: #fff; }
.hero-image-wrap { border-radius: 1.25rem; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.hero-image { width: 100%; height: 100%; max-height: 480px; object-fit: cover; display: block; }
.hero-badge { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; margin-bottom: 1.5rem; backdrop-filter: blur(4px); }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--secondary); font-style: normal; }
.hero p { font-size: 1.15rem; opacity: .9; margin-bottom: 2rem; max-width: 560px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 1rem 1.25rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero-stat { display: flex; align-items: center; gap: .4rem; font-size: .8rem; white-space: nowrap; opacity: .9; }
.hero-stat svg { color: var(--secondary); }

/* ── Section Headers ────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; background: #EFF6FF; color: var(--primary); padding: .3rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 600px; margin: .75rem auto 0; font-size: 1.05rem; }

/* ── Authorised Distributor ─────────────────────── */
.distributor-strip { padding: 2.5rem 0 1.5rem; }
.distributor-strip .section-header { margin-bottom: 2rem; }
.stats-section { padding-top: 2.5rem; border-top: 1px solid var(--border); }
.distributor-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 1.75rem; }
.distributor-logo-item { display: flex; align-items: center; justify-content: center; height: 80px; flex: 1 1 0; min-width: 0; }
.distributor-logo-item img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; }
@media (min-width: 993px) {
  .distributor-logos { flex-wrap: nowrap; }
}

/* ── Stats ───────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; text-align: center; }
.stat-card { padding: 1.5rem; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; white-space: nowrap; }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: .25rem; }

/* ── Feature Cards ───────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card { background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); transition: all .2s; text-align: center; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(11,61,145,.1); border-color: var(--primary); }
.feature-icon { width: 56px; height: 56px; background: #FFF8E1; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--muted); }

/* ── Services ────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.service-card-img { height: 180px; object-fit: cover; width: 100%; }
.service-card-body { padding: 1.5rem; }
.service-card-icon { font-size: 2rem; margin-bottom: .75rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.service-card a { color: var(--primary); font-weight: 600; font-size: .875rem; }

/* ── Process ─────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; position: relative; }
.process-step { position: relative; }
.step-number { width: 52px; height: 52px; background: var(--secondary); color: #1a1a1a; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.2rem; margin: 0 auto 1rem; }
.process-step h3 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p { font-size: .85rem; color: var(--muted); }

/* ── Calculator ──────────────────────────────────── */
.calc-container { background: #fff; border-radius: 1.5rem; box-shadow: 0 4px 30px rgba(0,0,0,.08); overflow: hidden; }
.calc-inputs { padding: 2.5rem; background: var(--primary); color: #fff; }
.calc-inputs h3 { color: #fff; margin-bottom: 1.5rem; }
.calc-field { margin-bottom: 1.25rem; }
.calc-field label { display: block; font-size: .875rem; margin-bottom: .4rem; opacity: .85; }
.calc-field input, .calc-field select { width: 100%; padding: .6rem 1rem; border-radius: .5rem; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; font-size: .95rem; }
.calc-field input::placeholder { color: rgba(255,255,255,.5); }
.calc-field select option { background: var(--primary); }
.calc-results { padding: 2.5rem; }
.calc-results h3 { color: var(--primary); margin-bottom: 1.5rem; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.result-card { background: var(--bg); border-radius: .75rem; padding: 1.25rem; border: 1px solid var(--border); text-align: center; }
.result-label { font-size: .75rem; color: var(--muted); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .05em; }
.result-value { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.result-unit { font-size: .75rem; color: var(--muted); }

/* ── Projects ────────────────────────────────────── */
.filter-tabs { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: .45rem 1.25rem; border-radius: 50px; border: 2px solid var(--border); background: #fff; font-weight: 600; font-size: .875rem; cursor: pointer; transition: all .2s; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.project-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.project-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .3s; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,61,145,.85), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: #fff; }
.project-badge { display: inline-block; background: var(--secondary); color: #1a1a1a; padding: .2rem .6rem; border-radius: 4px; font-size: .75rem; font-weight: 700; margin-bottom: .5rem; }
.project-overlay h3 { font-size: 1.05rem; color: #fff; margin-bottom: .3rem; }
.project-meta { font-size: .8rem; opacity: .85; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-slider { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 340px; scroll-snap-align: start; background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card p { font-size: .9rem; color: var(--muted); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; }
.author-loc  { font-size: .8rem; color: var(--muted); }

/* ── Subsidy Banner ─────────────────────────────── */
.subsidy-section { background: linear-gradient(135deg, #FFF8E1, #FFFDE7); border-radius: 1.5rem; padding: 3rem; border: 2px solid var(--secondary); }
.subsidy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.subsidy-item h3 { color: var(--primary); margin-bottom: .75rem; font-size: 1.1rem; }
.subsidy-item ul { list-style: none; }
.subsidy-item ul li { font-size: .9rem; color: var(--muted); padding: .3rem 0; display: flex; align-items: flex-start; gap: .5rem; }
.subsidy-item ul li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-item { border: 1px solid var(--border); border-radius: .75rem; margin-bottom: .75rem; overflow: hidden; }
.faq-question { padding: 1.25rem 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background .2s; }
.faq-question:hover { background: #F8FAFC; }
.faq-question.open { background: var(--primary); color: #fff; }
.faq-chevron { font-size: 1.2rem; transition: transform .3s; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 1.25rem 1.5rem; color: var(--muted); font-size: .9rem; background: #fff; border-top: 1px solid var(--border); }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--primary), #0a2f6b); border-radius: 1.5rem; padding: 4rem 3rem; text-align: center; color: #fff; }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { opacity: .85; max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── Contact ─────────────────────────────────────── */
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: .5rem; font-family: 'Inter', sans-serif; font-size: .95rem; color: var(--text); background: #fff; margin-bottom: 1rem; transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,61,145,.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info-box { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 2rem; }
.contact-info-box h3 { color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: .25rem; }
.contact-item p, .contact-item a { font-size: 1rem; color: #fff; font-weight: 500; }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: .75rem; background: #25D366; color: #fff; padding: 1rem; border-radius: .75rem; font-weight: 700; margin-top: 1.5rem; transition: background .2s; }
.wa-btn:hover { background: #20bd5a; }

/* ── Footer ──────────────────────────────────────── */
#footer { background: var(--primary); color: rgba(255,255,255,.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo-img { height: 40px; width: auto; display: block; }
#footer p { font-size: .875rem; line-height: 1.7; }
.footer-heading { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: var(--secondary); }
.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; font-size: .9rem; }
.social-link:hover { background: var(--secondary); color: #1a1a1a; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ── Floating Buttons ────────────────────────────── */
.floating-buttons { position: fixed; bottom: 1.5rem; left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 1.5rem; pointer-events: none; z-index: 999; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; pointer-events: all; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.float-call { background: var(--secondary); color: #1a1a1a; }
.float-wa   { background: #25D366; color: #fff; }

/* ── Success Message ─────────────────────────────── */
.alert-success { background: #D1FAE5; border: 1px solid var(--accent); color: #065F46; padding: 1rem 1.5rem; border-radius: .75rem; margin-top: 1rem; display: none; font-weight: 600; }

/* ── Page Hero ───────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--primary), #0a2f6b); color: #fff; padding: 8rem 0 4rem; text-align: center; margin-top: 72px; }
.page-hero h1 { color: #fff; }
.page-hero p { opacity: .85; max-width: 600px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ── Blog ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag { display: inline-block; background: #EFF6FF; color: var(--primary); padding: .2rem .7rem; border-radius: 4px; font-size: .75rem; font-weight: 600; margin-bottom: .75rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.blog-card p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }

/* ── Map ─────────────────────────────────────────── */
.map-container { height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── Team ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.75rem; text-align: center; }
.team-card { background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem; border: 1px solid var(--border); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.75rem; margin: 0 auto 1rem; }
.team-card h3 { font-size: 1rem; margin-bottom: .25rem; }
.team-card p { font-size: .85rem; color: var(--muted); }

/* ── Timeline ────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--secondary); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.4rem; top: .25rem; width: 14px; height: 14px; border-radius: 50%; background: var(--secondary); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--secondary); }
.timeline-year { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--secondary); font-size: .9rem; margin-bottom: .25rem; }
.timeline-item h3 { font-size: 1rem; margin-bottom: .25rem; }
.timeline-item p { font-size: .875rem; color: var(--muted); }

/* ── Privacy / Terms ─────────────────────────────── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; border-bottom: 2px solid var(--border); padding-bottom: .5rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .5rem; }
.legal-content p  { color: var(--muted); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1rem; line-height: 2; }

/* ── Newsletter ──────────────────────────────────── */
.newsletter-form { display: flex; gap: .75rem; }
.newsletter-form input { flex: 1; padding: .65rem 1rem; border-radius: .5rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: #fff; font-size: .9rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }

/* ── Page Top Padding ────────────────────────────── */
.page-content { padding-top: 88px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-height: 320px; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .calc-container { display: block; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .subsidy-section { padding: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}
