/* Solar Energy Highlight Section */
.solar-highlight {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.solar-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="solar-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%237ED321" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23solar-pattern)"/></svg>');
    opacity: 0.3;
}

.solar-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solar-badge {
    display: inline-block;
    background: rgba(126, 211, 33, 0.1);
    color: #7ED321;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(126, 211, 33, 0.3);
}

.solar-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solar-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.solar-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

.solar-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solar-calculator {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.solar-calculator h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.solar-calculator p {
    color: #cccccc;
    margin-bottom: 25px;
}

.calculator-result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(126, 211, 33, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(126, 211, 33, 0.3);
}

.result-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.result-label {
    color: #cccccc;
    font-weight: 500;
}

.result-value {
    color: #7ED321;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: #0f0f0f;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #2a2a2a;
    border-radius: 12px;
    border: 2px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: #7ED321;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(126, 211, 33, 0.2);
}

.contact-option.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.contact-option.phone:hover {
    background: rgba(59, 130, 246, 0.1);
}

.contact-option.email:hover {
    background: rgba(239, 68, 68, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
}

.contact-text h3 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.contact-text p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
}

.business-hours-cta {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 0 auto;
}

.business-hours-cta h4 {
    color: #7ED321;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.business-hours-cta p {
    color: #cccccc;
    margin: 5px 0;
    font-size: 0.95rem;
}

.business-hours-cta strong {
    color: #7ED321;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .solar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solar-text h2 {
        font-size: 2rem;
    }
    
    .solar-benefits {
        grid-template-columns: 1fr;
    }
    
    .solar-buttons {
        justify-content: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        justify-content: center;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
