 /*footer
/* Footer Simple */
.footer-section {
    background: #f8fafc;
    padding: 40px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenu principal */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

/* Services */
.solar-services1 {
    list-style: none;
    padding: 0;
}

.solar-services1 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #475569;
}

.service-icon1 {
    width: 20px;
    height: 20px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Contact */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px;
}

.contact-details p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.contact-details a {
    color: #10b981;
    text-decoration: none;
}

.contact-details a:hover {
    color: #f59e0b;
}

/* Expertise */
.expertise-grid {
    display: grid;
    gap: 15px;
}

.expertise-card {
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.expertise-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.expertise-icon {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.expertise-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.expertise-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Séparateur */
.footer-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.copyright {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info li {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
}