/* Reset et variables CSS */
:root {
    --primary-green: #4A9B3E;
    --primary-green-light: #6BB85A;
    --primary-green-dark: #3A7B2E;
    --secondary-blue: #4A9B3E;
    --accent-orange: #E06E38;
    --accent-purple: #4F398F;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E9ECEF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.phone-number:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: #0192d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 162, 232, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Menu mobile caché par défaut */
.mobile-menu {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-dark);
    margin-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-accent {
    color: var(--secondary-blue);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    max-width: 600px;
}

.hero-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 500px;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-solar {
    background: #4F398F;
    color: var(--white);
}

.hero-btn-heating {
    background: var(--accent-orange);
    color: var(--white);
}

.hero-btn-isolation {
    background: var(--primary-green);
    color: var(--white);
}

.hero-btn-contact {
    background: #E91E63;
    color: var(--white);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Votre rénovation clé en main */
.key-services {
    background: var(--light-gray);
    padding: 80px 0;
}

.key-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-blue);
    font-weight: 500;
}

.key-point svg {
    color: var(--secondary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #0192d8;
    transform: translateY(-2px);
}

/* Nos produits vedettes */
.featured-products {
    padding: 80px 0;
}

.product-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--secondary-blue);
    background: var(--secondary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.product-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.product-benefits svg {
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Processus d'installation */
.installation-process {
    background: var(--light-gray);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Témoignages */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-blue);
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-author {
    color: var(--primary-green);
    font-weight: 600;
}

/* Aides financières */
.financial-aids {
    background: var(--light-gray);
    padding: 80px 0;
}

.aids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.aid-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.aid-card:hover {
    transform: translateY(-5px);
}

.aid-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

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

/* Contact */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
}

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

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(2, 162, 232, 0.1);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-blue);
}

.footer-address {
    margin-top: 20px;
    color: #BDC3C7;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
    color: #BDC3C7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .key-points {
        flex-direction: column;
        gap: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}



/* Petites images des réalisations */
.realisation-image-small {
    margin-top: 20px;
    text-align: center;
}

.realisation-image-small img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Amélioration de la présentation du texte */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Amélioration des cartes produits */
.product-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light);
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.spec-item {
    text-align: center;
}

.spec-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(74, 155, 62, 0.05);
    border-radius: 6px;
}

.advantages-list li svg {
    color: var(--primary-green);
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantages-list li span {
    line-height: 1.5;
}

/* Amélioration des processus */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-step ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.process-step ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
}

.process-step ul li:last-child {
    border-bottom: none;
}


/* Espacement des sections */
.advantages-section {
    padding: 100px 0;
    background: var(--white);
}

.products-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.installation-process {
    padding: 100px 0;
    background: var(--white);
}

.financial-aids {
    padding: 100px 0;
    background: var(--light-gray);
}

/* Amélioration de la visibilité du texte sur les photos */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}

.hero-content h1,
.hero-content p {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Header sur une seule ligne */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    flex-wrap: nowrap;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
}

.phone-number {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    white-space: nowrap;
}

/* Amélioration des packs rénovation */
.product-card.featured {
    position: relative;
    border: 3px solid var(--primary-green);
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pack-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-before {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}

.price-after {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin: 10px 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.pack-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pack-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    background: rgba(74, 155, 62, 0.05);
    border-radius: 6px;
}

.pack-list li svg {
    color: var(--primary-green);
    margin-right: 12px;
    flex-shrink: 0;
}

.pack-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.benefit-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}


/* Réalisations compactes 2 par 2 */
.realisations-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.realisation-card-small {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.realisation-card-small h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.realisation-card-small .realisation-specs {
    margin-bottom: 15px;
}

.realisation-card-small .spec {
    font-size: 0.9rem;
    color: var(--text-light);
}

.realisation-card-small p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-light);
}

.realisation-card-small .realisation-highlight {
    background: var(--primary-green);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.realisation-image-compact {
    margin-top: 15px;
}

.realisation-image-compact img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .realisations-grid-compact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Statistiques réalisations */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Images du guide "Tout comprendre" */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 50px;
}

.guide-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
}

.guide-icon {
    position: relative;
    overflow: hidden;
}

.guide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.guide-content {
    padding: 40px;
}

.guide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.guide-section-content {
    margin-bottom: 30px;
}

.guide-section-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.guide-section-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(74, 155, 62, 0.05);
    border-radius: 6px;
    line-height: 1.5;
}

.installation-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.type-card {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.type-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Cadres fins pour les packs rénovation */
.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 3px solid var(--primary-green);
    transform: scale(1.02);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Header fixe sur une seule ligne */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    flex-wrap: nowrap;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo-img {
    height: 45px;
    width: auto;
}

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

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 12px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.phone-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    white-space: nowrap;
}

.btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .nav-list {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    
    .phone-number {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .guide-card {
        grid-template-columns: 1fr;
    }
    
    .guide-image {
        height: 200px;
    }
    
    .installation-types {
        grid-template-columns: 1fr;
    }
}


/* Amélioration des aides financières */
.aids-guide {
    padding: 80px 0;
    background: var(--light-gray);
}

.aids-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.aid-detail-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.aid-detail-card:hover {
    transform: translateY(-5px);
}

.aid-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.aid-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.aid-detail-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.aid-detail-card ul {
    list-style: none;
    padding: 0;
}

.aid-detail-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.aid-detail-card ul li:last-child {
    border-bottom: none;
}

/* Footer avec vraie couleur du logo */
.footer {
    background: #4A9B3E !important;
    color: white !important;
    padding: 60px 0 20px;
}

.footer * {
    color: white !important;
}

.footer a {
    color: white !important;
    text-decoration: none;
}

.footer a:hover {
    color: rgba(255,255,255,0.8) !important;
}

.footer h4 {
    color: white !important;
    margin-bottom: 20px;
}

.footer p {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: white !important;
}

/* Espacement photovoltaïque */
.product-specs-section {
    margin-top: 60px;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .aids-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}


/* Menu mobile correct */
@media (max-width: 768px) {
    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-item {
        margin-bottom: 15px;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 10px 0;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-dropdown {
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .mobile-dropdown a {
        display: block;
        padding: 8px 0;
        color: var(--primary-green);
        text-decoration: none;
        font-size: 0.9rem;
    }
    
    .mobile-contact {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .mobile-contact a {
        display: block;
        padding: 10px 0;
        color: var(--primary-green);
        text-decoration: none;
        font-weight: 600;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .nav {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}


/* Correction finale - cacher la bannière mobile indésirable */
.mobile-menu {
    display: none !important;
}

.mobile-nav-list,
.mobile-nav-item,
.mobile-nav-link,
.mobile-dropdown,
.mobile-contact {
    display: none !important;
}


/* Menu mobile simple et fonctionnel */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-content {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-content a {
    padding: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-nav-content a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.mobile-nav-content .mobile-phone {
    background: var(--primary-green);
    color: white;
    text-align: center;
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav-overlay {
        display: none !important;
    }
}

