/* Variables CSS pour les couleurs du logo */
:root {
    --primary-blue: #1e3a5f;
    --primary-orange: #ff6b35;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
}

.logo .tagline {
    color: var(--primary-orange);
    font-size: 0.9rem;
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Menu hamburger pour mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
    color: var(--white);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Icône électrique stylisée */
.hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.electric-house {
    position: relative;
    width: 200px;
    height: 200px;
}

.house-outline {
    width: 150px;
    height: 120px;
    border: 4px solid var(--primary-orange);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.house-outline::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -10px;
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-bottom: 40px solid var(--primary-orange);
}

.lightning {
    position: absolute;
    top: 30%;
    left: 45%;
    width: 20px;
    height: 40px;
    background-color: var(--white);
    clip-path: polygon(20% 0%, 60% 0%, 40% 50%, 80% 50%, 20% 100%, 40% 50%, 0% 50%);
}

.plug {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 5px;
}

.plug::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background-color: var(--primary-orange);
}

.plug::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 10px 0 0 var(--white);
}

/* Sections */
section {
    padding: 80px 0;
}

.services-preview {
    background-color: var(--light-gray);
}

.services-preview h2,
.why-choose-us h2,
.contact-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid var(--primary-blue);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Section Pourquoi nous choisir */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Section Contact Preview */
.contact-preview {
    background-color: var(--light-gray);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Styles pour les pages internes */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2c5282 100%);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Portrait dans la page À Propos */
.page-header-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}
.page-header-image {
    text-align: center;
}
.header-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

/* Styles pour la page Services */
.services-detailed {
    padding: 80px 0;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.clientele-brands {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.clientele-section,
.brands-section {
    margin-bottom: 3rem;
}

.clientele-section h2,
.brands-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.clientele-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-type {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-type h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.brand-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-blue);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-2px);
}

.services-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.services-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Styles pour la page À Propos */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: auto 2fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    grid-column: 2;
    margin-top: 1rem;
}

.highlight-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-orange);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.qualities {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.qualities h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quality-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quality-score {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.quality-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.quality-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 0.9rem;
}

.practical-info {
    padding: 80px 0;
}

.practical-info h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.schedule-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: bold;
    color: var(--primary-blue);
}

.hours {
    color: var(--text-gray);
}

.payment-methods,
.clientele-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-item,
.clientele-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.payment-icon,
.clientele-icon {
    font-size: 1.5rem;
}

.about-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Styles pour la page Contact */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail .contact-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    min-width: 50px;
}

.contact-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-text small {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.submit-button {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.emergency-contact {
    background-color: var(--primary-orange);
    padding: 40px 0;
}

.emergency-banner {
    text-align: center;
}

.emergency-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.emergency-content p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.emergency-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-orange);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.service-area {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.service-area h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.service-area > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-feature h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-feature p {
    color: var(--text-gray);
}

/* Responsive pour les pages internes */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .qualities-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Style pour le logo image */
.site-logo {
    height: 50px; /* Ajustez la hauteur selon vos besoins */
    width: auto;
    vertical-align: middle;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a {
    line-height: 0;
}



/* Styles pour la page Avis */
.reviews-display {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.google-reviews-widget {
    margin-bottom: 4rem;
}

.widget-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--border-gray);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
}

.widget-info h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.widget-info ol {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    color: var(--text-gray);
}

.widget-info ol li {
    margin-bottom: 0.5rem;
}

.widget-info a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
}

.widget-info a:hover {
    text-decoration: underline;
}

.static-reviews h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-orange);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stars {
    font-size: 1.2rem;
}

.rating-text {
    color: var(--primary-orange);
    font-weight: bold;
}

.review-text {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--primary-blue);
}

.review-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-submission {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.review-submission h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.review-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-option {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.review-option h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.review-option p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.review-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.google-review {
    background-color: #4285f4;
    color: white;
}

.google-review:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

.local-review {
    background-color: var(--primary-orange);
    color: white;
}

.local-review:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.review-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.review-form h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star-rating .star {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.star-rating .star:hover,
.star-rating .star.active {
    opacity: 1;
    transform: scale(1.1);
}

.review-stats {
    padding: 80px 0;
}

.review-stats h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid var(--primary-orange);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.stat-stars,
.stat-icon {
    font-size: 1.5rem;
}

.review-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.review-cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.review-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive pour la page avis */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-options {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .widget-placeholder {
        padding: 2rem 1rem;
    }
    
    .review-form-container {
        padding: 2rem 1rem;
    }
}


/* Styles pour le nouveau layout du hero avec logo */
.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-section {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.company-name {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-right {
    flex: 2;
}

.hero-right h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Responsive pour le nouveau layout hero */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-logo {
        width: 120px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .hero-right h1 {
        font-size: 2rem;
    }
}


/* Styles pour les marques partenaires cliquables */
.brand-link {
    text-decoration: none;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-link:hover {
    color: var(--white);
    background-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.brand-link::before {
    content: '🔗';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-link:hover::before {
    opacity: 1;
}


/* Correction du style du numéro de téléphone sur iPhone */
/* Désactiver la détection automatique des numéros de téléphone sur iOS */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    background-color: transparent !important;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

/* Style spécifique pour les liens téléphone dans le footer */
.footer-section a[href^="tel:"] {
    color: var(--white);
    opacity: 0.9;
}

.footer-section a[href^="tel:"]:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Style spécifique pour les liens téléphone dans les sections de contact */
.contact-item a[href^="tel:"],
.contact-text a[href^="tel:"] {
    color: var(--primary-orange);
    font-weight: bold;
}

.contact-item a[href^="tel:"]:hover,
.contact-text a[href^="tel:"]:hover {
    text-decoration: underline;
}

/* Désactiver la mise en forme automatique des numéros sur iOS Safari */
@supports (-webkit-touch-callout: none) {
    a[href^="tel:"] {
        -webkit-text-decoration-color: transparent !important;
        text-decoration-color: transparent !important;
        background-color: transparent !important;
        color: inherit !important;
    }
    
    .footer-section a[href^="tel:"] {
        color: var(--white) !important;
    }
    
    .contact-item a[href^="tel:"],
    .contact-text a[href^="tel:"] {
        color: var(--primary-orange) !important;
    }
}


/* Styles pour les liens email */
.footer-section a[href^="mailto:"],
.contact-text a[href^="mailto:"] {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: bold;
}

.footer-section a[href^="mailto:"]:hover,
.contact-text a[href^="mailto:"]:hover {
    text-decoration: underline;
}

.footer-section a[href^="mailto:"] {
    color: var(--white);
    opacity: 0.9;
}

.footer-section a[href^="mailto:"]:hover {
    opacity: 1;
}


/* Styles pour la page mentions légales */
.legal-content {
    padding: 80px 0;
}

.legal-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-item {
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 5px;
    border-left: 4px solid var(--primary-orange);
}

.info-item strong {
    color: var(--primary-blue);
}

.contact-legal p {
    margin-bottom: 0.5rem;
}

.contact-legal strong {
    color: var(--primary-blue);
}

.legal-section ul {
    margin-left: 1.5rem;
    color: var(--text-gray);
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive pour mentions légales */
@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}



/* Styles pour les liens dans le footer */
.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

/* Styles pour les liens téléphone et email dans le footer */
.footer-section a[href^="tel:"] {
    color: var(--white);
    text-decoration: none;
}

.footer-section a[href^="tel:"]:hover {
    text-decoration: underline;
}

.footer-section a[href^="mailto:"] {
    color: var(--white);
    text-decoration: none;
}

.footer-section a[href^="mailto:"]:hover {
    text-decoration: underline;
}

/* Styles pour les liens téléphone et email dans la section contact */
.contact-text a[href^="tel:"] {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-text a[href^="tel:"]:hover {
    text-decoration: underline;
}

.contact-text a[href^="mailto:"] {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-text a[href^="mailto:"]:hover {
    text-decoration: underline;
}

/* Style pour la photo dans la section À Propos */
.about-photo {
    grid-row: 1 / span 2;
}

.about-photo-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin-bottom: 2rem;
}

.about-text {
    grid-column: 2;
}

.about-highlights {
    grid-column: 2;
    margin-top: 1rem;
}


/* Styles pour les logos partenaires autour du logo principal */
.hero-logo-section {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.partner-logos-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.partner-logos-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-logo-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.company-name {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.partner-logos-left .partner-logo,
.partner-logos-right .partner-logo {
    height: 30px;
    width: auto;
    transition: opacity 0.3s ease;
    filter: brightness(0.8);
}

/* Logos spécifiques plus grands */
.partner-logos-right a[href*="yesss-electrique"] .partner-logo,
.partner-logos-right a[href*="deltadore"] .partner-logo {
    height: 35px;
    width: auto;
}

.partner-logos-left .partner-logo:hover,
.partner-logos-right .partner-logo:hover {
    opacity: 1;
    filter: brightness(1);
}

/* Responsive pour les logos partenaires */
@media (max-width: 1200px) {
    .hero-logo-section {
        gap: 1.5rem;
    }
    
    .partner-logos-left .partner-logo,
    .partner-logos-right .partner-logo {
        height: 25px;
    }
    
    /* Logos spécifiques plus grands sur tablette */
    .partner-logos-right a[href*="yesss-electrique"] .partner-logo,
    .partner-logos-right a[href*="deltadore"] .partner-logo {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .hero-logo-section {
        flex-direction: row;
        gap: 1rem;
    }
    
    .partner-logos-left,
    .partner-logos-right {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .partner-logos-left .partner-logo,
    .partner-logos-right .partner-logo {
        height: 20px;
    }
    
    /* Logos spécifiques plus grands sur mobile */
    .partner-logos-right a[href*="yesss-electrique"] .partner-logo,
    .partner-logos-right a[href*="deltadore"] .partner-logo {
        height: 25px;
    }
    
    .hero-logo-large {
        width: 150px;
        height: 150px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
}

/* Styles pour les logos partenaires */
.partner-logos {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    height: 25px;
    width: auto;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.8;
}

/* Styles pour les icônes de réseaux sociaux */
.social-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    height: 25px;
    width: 25px;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

/* Styles pour le logo du site */
.site-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Styles pour le logo agrandi dans l'accueil */
.hero-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Mise à jour de la navigation pour accommoder les nouveaux éléments */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-menu {
    flex: 1;
    justify-content: center;
}

/* Styles pour les icônes de réseaux sociaux dans le footer */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-icon {
    height: 30px;
    width: 30px;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
    opacity: 0.8;
}

/* Style pour la photo ovale du dirigeant */
.about-photo-img-oval {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Styles pour répliquer le layout hero sur les autres pages */
.page-title-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-logo-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-logo-large {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.page-title-content {
    flex: 2;
}

.page-title-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-blue);
}

.page-title-content .page-subtitle {
    color: var(--primary-orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Responsive pour le layout des pages */
@media (max-width: 768px) {
    .page-title-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-logo-section {
        order: 1;
    }
    
    .page-title-content {
        order: 2;
    }
    
    .page-logo-large {
        width: 150px;
        height: 150px;
    }
    
    .page-title-content h1 {
        font-size: 2rem;
    }
    
    .page-title-content .page-subtitle {
        font-size: 1rem;
    }
}

