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

/* CSS RESET & VARIABLES */
:root {
    --primary: #1b4332;
    --primary-light: #2d6a4f;
    --accent: #52b788;
    --accent-dark: #40916c;
    --light-bg: #f4f9f4;
    --white: #ffffff;
    --text-dark: #1b262c;
    --text-muted: #5a6b5c;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER & NAVIGATION */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo svg {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.nav-links li {
    display: inline-flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 0.5rem 0.25rem;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-dark);
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* MOBILE NAV */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* FOOTER */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 5px solid var(--accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--light-bg);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #c7d1c9;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* ENVIRONMENTAL COUNTER IN FOOTER */
.env-counter {
    background-color: var(--primary-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px dashed var(--accent);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.env-counter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.env-counter-icon {
    background-color: var(--accent);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.env-counter-info h5 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
}

.env-counter-info p {
    color: #c7d1c9;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #c7d1c9;
    flex-wrap: wrap;
    gap: 1rem;
}

/* HERO COMMON */
.hero {
    position: relative;
    padding: 6rem 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27,67,50,0.45) 0%, rgba(45,106,79,0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-bg);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* SECTION COMMON */
.section {
    padding: 6rem 1.5rem;
}

.section-bg {
    background-color: var(--light-bg);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* 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;
}

/* CARDS */
.card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background-color: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* TABLES (PRODUCT COMPARISONS) */
.table-wrapper {
    overflow-x: auto;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.product-table th {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.product-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.product-table tr:last-child td {
    border-bottom: none;
}

.product-table tbody tr {
    transition: var(--transition);
}

.product-table tbody tr:hover {
    background-color: #f0f7f3;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-green {
    background-color: var(--accent);
    color: var(--primary);
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--primary-light);
}

.bonus-highlight {
    font-weight: 700;
    color: var(--primary-light);
    font-size: 1.1rem;
}

/* IMAGE MEDIA CONTAINER */
.image-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.image-container:hover img {
    transform: scale(1.03);
}

/* MLM / BUSINESS SPECIFICS */
.mlm-pillar {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mlm-pillar .pillar-num {
    background-color: var(--accent);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mlm-pillar-info h3 {
    margin-bottom: 0.5rem;
}

.mlm-pillar-info p {
    color: var(--text-muted);
}

/* RANKS CARD LAYOUT */
.rank-card {
    border-top: 6px solid var(--border);
}

.rank-silver {
    border-top-color: #c0c0c0;
}

.rank-gold {
    border-top-color: #ffd700;
}

.rank-platinum {
    border-top-color: #e5e4e2;
}

/* STEPS/TIMELINE ON PARTNERSHIP PAGE */
.steps-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-row::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 15px);
    background-color: var(--border);
    z-index: 1;
}

.step-row:last-child::before {
    display: none;
}

.step-num {
    background-color: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
}

/* BLOG GRID & POSTS */
.blog-post {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 200px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-readmore {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.blog-readmore svg {
    transition: var(--transition);
}

.blog-post:hover .blog-readmore svg {
    transform: translateX(3px);
}

/* CONTACT PAGE FORM & SPECIFICS */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.25);
}

/* STATS COUNTER FOR GENERAL SITES */
.stats-banner {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    color: var(--accent);
    font-size: 3rem;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.stat-item p {
    color: #c7d1c9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ABOUT SECTION DETAIL (CORE IDEA) */
.about-core-idea {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-core-idea h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-core-idea p {
    font-size: 1.15rem;
    color: var(--light-bg);
    margin-bottom: 2rem;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.about-core-idea svg.decor {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    color: rgba(82, 183, 136, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* ALERT STYLES (FROM PM SURYA GHAR) */
.notice-box {
    background-color: #eaf6ff;
    border-left: 5px solid #0066cc;
    border-radius: 4px;
    padding: 1.25rem;
    margin-bottom: 0rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notice-box svg {
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 3px;
}

.notice-box-content h4 {
    color: #004499;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.notice-box-content p {
    font-size: 0.95rem;
    color: #333333;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) and (min-width: 769px) {
    .nav-links {
        gap: 0.75rem;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-ctas {
        gap: 0.5rem;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-ctas {
        display: none;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-core-idea {
        padding: 2rem;
    }
    
    .step-row::before {
        left: 20px;
    }
    
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* NEW TRANSLATED IMAGE SECTIONS */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(82, 183, 136, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge svg {
    color: var(--accent);
}

/* Environment & Economy Section */
.pillars-section {
    padding: 1.5rem 1.5rem 4rem 1.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.pillar-card.pillar-env::before {
    background-color: var(--accent);
}

.pillar-card.pillar-econ::before {
    background-color: #f39c12;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pillar-env .pillar-icon-wrapper {
    background-color: rgba(82, 183, 136, 0.15);
    color: var(--accent-dark);
}

.pillar-econ .pillar-icon-wrapper {
    background-color: rgba(243, 156, 18, 0.15);
    color: #d35400;
}

.pillar-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pillar-illustration {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.pillar-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

/* What is SolarFintech Section */
.venn-section {
    background-color: var(--light-bg);
    padding: 6rem 1.5rem;
}

.venn-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.venn-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.venn-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.venn-diagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.venn-circle-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.venn-circle-hover:hover {
    filter: brightness(1.05);
}

/* Why Solar Section */
.why-solar-section {
    padding: 6rem 1.5rem;
    background-color: var(--white);
}

.why-solar-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-solar-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-solar-benefit {
    background-color: var(--light-bg);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-solar-benefit:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.benefit-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.why-solar-image {
    display: flex;
    justify-content: center;
}

.why-solar-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.why-solar-image img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .venn-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .why-solar-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* SUBSIDY PAGE INTERACTIVE ELEMENTS */

/* Search bar styling */
.subsidy-search-wrapper {
    margin: 0 auto 2.5rem auto;
    max-width: 500px;
    display: flex;
    position: relative;
}

.subsidy-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    outline: none;
}

.subsidy-search-input:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.2);
}

.subsidy-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Calculator card styling */
.calculator-section {
    padding: 4rem 1.5rem 6rem 1.5rem;
    background-color: var(--light-bg);
}

.calculator-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 900px;
    margin: 0 auto;
}

.calculator-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.calculator-card .calc-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.calc-select {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.calc-select:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}

.calc-outputs {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.calc-output-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.calc-output-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-output-label {
    font-size: 0.95rem;
    color: #c7d1c9;
}

.calc-output-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--accent);
}

.calc-output-val.total-val {
    font-size: 1.8rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .calculator-card {
        padding: 2rem 1.5rem;
    }
}


