/* Energy Wise Solar Ltd - Main Stylesheet */

:root {
    --primary-blue: #1D4F91;
    --primary-green: #7CB342;
    --accent-orange: #FF8C42;
    --accent-yellow: #FFB800;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #F5F7FA;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.phone-link-top {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
}

.phone-link-top:hover {
    color: var(--primary-green);
}

.top-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-green);
}

.phone-number {
    font-weight: 600;
    font-size: 15px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
}

/* Mobile Menu Toggle - Hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-blue);
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 12px 0;
    z-index: 1000;
    margin-top: 0;
    padding-top: 15px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-blue) !important;
    border-left-color: var(--primary-green);
    padding-left: 25px;
}

.hero {
    background: url('../images/iStock-1405880267-1200x800.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-yellow);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero .features {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #E3F2FD;
}

/* Page-specific hero backgrounds */
.hero-solar-panels {
    background: linear-gradient(135deg, rgba(29, 79, 145, 0.75) 0%, rgba(42, 106, 184, 0.7) 100%), 
                url('../images/hero-solar-panels.svg') center/cover;
}

.hero-battery {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.75) 0%, rgba(52, 73, 94, 0.7) 100%), 
                url('../images/hero-battery.svg') center/cover;
}

.hero-packages {
    background: linear-gradient(135deg, rgba(29, 79, 145, 0.75) 0%, rgba(124, 179, 66, 0.7) 100%), 
                url('../images/hero-packages.svg') center/cover;
}

.hero-finance {
    background: linear-gradient(135deg, rgba(46, 92, 138, 0.75) 0%, rgba(124, 179, 66, 0.7) 100%), 
                url('../images/hero-finance.svg') center/cover;
}

.hero-about {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.75) 0%, rgba(29, 79, 145, 0.7) 100%), 
                url('../images/hero-about.svg') center/cover;
}

.hero-quote {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.75) 0%, rgba(124, 179, 66, 0.7) 100%), 
                url('../images/hero-quote.svg') center/cover;
}

.hero-faq {
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.75) 0%, rgba(29, 79, 145, 0.7) 100%), 
                url('../images/hero-faq.svg') center/cover;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--white);
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-item .icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.trust-item h4 {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.trust-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0rimary-blue);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ab8 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero .features {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #E3F2FD;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.btn-primary:hover {
    background-color: #6fa031;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
    margin: 20px auto 0;
    border-radius: 2px;
}

section h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Background Colors */
.bg-light {
    background-color: var(--background-light);
}

.bg-white {
    background-color: var(--white);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Cards */
.card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 79, 145, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(29, 79, 145, 0.15);
    border-color: rgba(29, 79, 145, 0.15);
}

.card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.card p:last-child {
    margin-bottom: 0;
}

/* Pricing Packages */
.pricing-section {
    background-color: var(--background-light);
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 10;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ab8 100%);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-price small {
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-footer {
    padding: 0 25px 30px;
    text-align: center;
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-dark);
    font-size: 1rem;
}

.card ul {
    margin-top: 15px;
    padding-left: 20px;
}

.card li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Icon Cards */
.icon-card {
    text-align: center;
}

.icon-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 30px auto;
}

.benefits-list li {
    padding: 15px 15px 15px 45px;
    margin-bottom: 10px;
    background-color: var(--background-light);
    border-radius: 8px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #6fa031 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section h2::after {
    background-color: var(--white);
}

.cta-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-box {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-box .phone-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
    display: block;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* FAQ Section - Accordion Style */
.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: var(--white);
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Info */
.contact-info {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-info-item p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: #B0BEC5;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

/* Content Images */
.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-caption {
    padding: 15px;
    background-color: var(--white);
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
}

.hero-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-items {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        height: 60px;
    }

    .hero-with-image {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-right: 0;
    }

    .image-card img {
        height: 200px;
    }

    .hero-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-items-inline {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-solar-grid {
        grid-template-columns: 1fr;
    }

    .quote-options {
        grid-template-columns: 1fr 1fr;
    }
}

/* Trust Banner */
.trust-banner {
    background-color: var(--background-light);
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-green);
}

.trust-items-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.trust-item-inline .icon {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hero with Form */
.hero-with-form {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a6ab8 100%);
    padding: 60px 20px;
    color: var(--white);
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.hero-features span {
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

/* Quote Form Card */
.hero-form-container {
    position: relative;
}

.quote-form-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    color: var(--text-dark);
}

.quote-form-card h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.quote-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quote-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.quote-option {
    position: relative;
}

.quote-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.quote-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    text-align: center;
    height: 100%;
}

.quote-option input[type="radio"]:checked + .quote-option-label {
    border-color: var(--primary-green);
    background: rgba(124, 179, 66, 0.05);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.2);
}

.quote-option-label:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.option-image {
    font-size: 3rem;
    margin-bottom: 10px;
}

.option-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Trustpilot Section */
.trustpilot-section {
    background: var(--white);
    padding: 50px 20px;
    border-bottom: 1px solid var(--border-color);
}

.trustpilot-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.rating-display {
    margin-top: 20px;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--background-light);
    padding: 70px 20px;
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.step-number {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Solar Section */
.why-solar-section {
    background: var(--white);
    padding: 70px 20px;
}

.why-solar-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.why-solar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.why-solar-card {
    background: var(--background-light);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-solar-card:hover {
    background: var(--white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.solar-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.why-solar-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}

.why-solar-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Choose Us Accordion */
.why-choose-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(29, 79, 145, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(29, 79, 145, 0.15);
    box-shadow: 0 4px 15px rgba(29, 79, 145, 0.08);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(29, 79, 145, 0.03);
}

.accordion-header h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.why-choose-image {
    position: sticky;
    top: 100px;
    height: 600px;
}

@media (max-width: 968px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-image {
        position: relative;
        top: 0;
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    display: flex;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(29, 79, 145, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 79, 145, 0.15);
    border-color: rgba(29, 79, 145, 0.15);
}

.product-image {
    flex: 0 0 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-content .btn {
    align-self: flex-start;
}
    .cta-box {
        padding: 30px 20px;
    }

    .cta-box .phone-large {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 50px 15px;
    }

    .card {
        padding: 25px;
    }
}
