/* ===================================
   MMG 3D - Styles CSS
   Design: Minimaliste, Aéré, High-Tech
   =================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --navy-blue: #8BA888;
    --coral-orange: #8BA888;
    --anthracite: #2C3E50;
    --off-white: #F8F9FA;
    --light-gray: #E8ECEF;
    --medium-gray: #DEE2E6;
    --orange-hover: #6B8A6B;
    
    /* Nouvelle palette sobre & néo-pro */
    --sage-green: #8BA888;
    --sage-green-dark: #6B8A6B;
    --sage-green-light: #A8C5A5;
    --grey-anthracite: #3A3A3A;
    --grey-light: #F5F5F5;
    --grey-medium: #E0E0E0;
    
    /* Aliases pour compatibilité */
    --electric-blue: #8BA888;
    --dark-gray: #2C3E50;
    --blue-hover: #6B8A6B;
    
    /* Couleurs fonctionnelles (transition progressive) */
    --primary-color: var(--sage-green);
    --primary-dark: var(--sage-green-dark);
    --accent-color: var(--sage-green);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--anthracite);
    background-color: var(--off-white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--navy-blue);
    font-weight: 800;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.15s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--anthracite);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sage-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--sage-green);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--sage-green);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary:hover {
    background-color: var(--sage-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 168, 136, 0.3);
}

.btn-emergency {
    background-color: var(--sage-green);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-emergency:hover {
    background-color: var(--sage-green-dark);
    transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--sage-green) 0%, #2C3E50 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0.9;
}

/* Services Overview */
.services-overview {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-icon {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--anthracite);
    opacity: 0.85;
}

.service-link {
    color: var(--sage-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--sage-green-dark);
}

/* Reassurance Section */
.reassurance {
    padding: 6rem 0;
    background-color: var(--white);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.reassurance-badge {
    text-align: center;
}

.reassurance-icon {
    color: var(--sage-green);
    margin-bottom: 1rem;
}

.reassurance-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
}

.reassurance-text {
    color: var(--anthracite);
    opacity: 0.8;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

.content-section.alt {
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--anthracite);
    opacity: 0.8;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.content-box ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sage-green);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-error {
    color: #DC3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    background-color: #D4EDDA;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn-submit {
    width: 100%;
    background-color: var(--sage-green);
    color: var(--white);
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-submit:hover {
    background-color: var(--sage-green-dark);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Info */
.contact-info {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
}

.contact-info-item p {
    color: var(--anthracite);
    opacity: 0.8;
}

.contact-info-item a {
    color: var(--sage-green);
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--sage-green-dark);
}

/* Footer */
.footer {
    background-color: var(--grey-anthracite);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sage-green);
}

.footer-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-text {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    color: var(--sage-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .btn-emergency {
        display: none;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services-overview,
    .content-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .reassurance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}


/* ===================================
   Pricing Page Styles
   =================================== */

/* Pricing Introduction */
.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.pricing-intro p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.pricing-intro p:last-child {
    margin-bottom: 0;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 12px 32px rgba(0, 123, 255, 0.15);
    transform: translateY(-5px);
}

.pricing-icon {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.popular {
    background-color: var(--electric-blue);
    color: var(--white);
}

.pricing-badge.urgence {
    background-color: #FF6B6B;
    color: var(--white);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--dark-gray);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--electric-blue);
    font-family: 'Montserrat', sans-serif;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Forfait Pro */
.forfait-pro {
    background: linear-gradient(135deg, var(--electric-blue) 0%, #0056b3 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 4rem;
    color: var(--white);
}

.forfait-pro-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.forfait-pro-icon {
    flex-shrink: 0;
}

.forfait-pro-icon svg {
    stroke: var(--white);
}

.forfait-pro-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.forfait-pro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.forfait-pro-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.forfait-pro-text ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.forfait-pro-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Zone Géographique */
.zone-geo {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.zone-geo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.zone-geo p {
    line-height: 1.8;
    margin: 0;
}

/* Garantie Section */
.garantie-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
    margin-top: 6rem;
}

.garantie-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.garantie-box svg {
    color: var(--electric-blue);
    margin-bottom: 1.5rem;
}

.garantie-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.garantie-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-gray);
    opacity: 0.85;
}

/* Large Button */
.btn-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 1fr;
    }

    .forfait-pro {
        padding: 2rem 1.5rem;
    }

    .forfait-pro-content {
        flex-direction: column;
        text-align: center;
    }

    .forfait-pro-icon {
        margin: 0 auto;
    }

    .forfait-pro-text ul {
        text-align: left;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .garantie-box h3 {
        font-size: 1.5rem;
    }

    .btn-large {
        font-size: 1.125rem;
        padding: 1.25rem 2rem;
        width: 100%;
    }
}


/* ===================================
   WhatsApp Floating Button - Version Urgence
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--sage-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 168, 136, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 20px rgba(139, 168, 136, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 168, 136, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(139, 168, 136, 0.4);
    }
}

.whatsapp-float:hover {
    background-color: var(--sage-green-dark);
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* Badge Urgence sur WhatsApp */
.whatsapp-float::before {
    content: "Urgence";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #E74C3C;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        left: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float::before {
        font-size: 0.5625rem;
        padding: 3px 6px;
    }
}


/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2B48;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 72, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 72, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--sage-green);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2C3E50;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 2px solid #F8F9FA;
    padding-top: 16px;
}

.author-name {
    font-weight: 600;
    color: #1A2B48;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.875rem;
    color: var(--sage-green);
    font-weight: 500;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }
}


/* ===================================
   About Page Styles
   =================================== */

.about-hero {
    background: linear-gradient(135deg, var(--sage-green) 0%, #2C3E50 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
}

/* Section Styles */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-section-reverse {
    direction: rtl;
}

.about-section-reverse > * {
    direction: ltr;
}

.about-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #1A2B48;
    margin-bottom: 24px;
}

.about-section-title-center {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2B48;
    text-align: center;
    margin-bottom: 16px;
}

.about-subtitle-center {
    font-size: 1.125rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
}

.about-paragraph {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 20px;
}

.about-paragraph strong {
    color: #1A2B48;
    font-weight: 600;
}

/* Values */
.about-values {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 3px solid var(--sage-green);
}

.about-value-item svg {
    color: var(--sage-green);
    min-width: 24px;
}

.about-value-item span {
    font-weight: 600;
    color: #1A2B48;
}

/* Image Placeholder */
.about-image-placeholder {
    background: linear-gradient(135deg, #1A2B48 0%, #2C3E50 100%);
    border-radius: 12px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 350px;
}

.about-image-placeholder svg {
    color: var(--sage-green);
}

.about-image-placeholder p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

/* Why Section */
.about-why-section {
    margin-bottom: 100px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.about-feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 72, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 72, 0.12);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-feature-icon svg {
    color: white;
}

.about-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2B48;
    margin-bottom: 12px;
}

.about-feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2C3E50;
}

/* List */
.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #2C3E50;
}

.about-list li svg {
    color: var(--sage-green);
    min-width: 20px;
    margin-top: 4px;
}

.about-highlight {
    font-size: 1.125rem;
    font-style: italic;
    color: #1A2B48;
    font-weight: 600;
    margin-top: 32px;
    padding: 20px;
    background: #F8F9FA;
    border-left: 4px solid var(--sage-green);
    border-radius: 4px;
}

/* Zone Section */
.about-zone-section {
    margin-bottom: 100px;
}

.about-zone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.about-zone-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 43, 72, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 43, 72, 0.12);
}

.about-zone-card svg {
    color: var(--sage-green);
}

.about-zone-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A2B48;
    text-align: center;
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #1A2B48 0%, #2C3E50 100%);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
}

.about-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.about-cta-text {
    font-size: 1.125rem;
    color: white;
    opacity: 0.9;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.0625rem;
}

.btn-secondary {
    background: white;
    color: #1A2B48;
}

.btn-secondary:hover {
    background: #F8F9FA;
    transform: translateY(-2px);
}

/* Signature */
.about-signature {
    text-align: center;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 12px;
}

.about-signature-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2C3E50;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 16px;
}

.about-signature-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sage-green);
}

/* Responsive About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .about-section-reverse {
        direction: ltr;
    }

    .about-section-title {
        font-size: 1.75rem;
    }

    .about-section-title-center {
        font-size: 2rem;
    }

    .about-values {
        flex-direction: column;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-zone-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .about-cta-section {
        padding: 40px 24px;
    }

    .about-cta-title {
        font-size: 1.75rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}


/* ===================================
   Eco-Responsible Section
   =================================== */

.eco-section {
    margin-bottom: 100px;
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-radius: 16px;
}

.eco-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.eco-pillar {
    text-align: center;
    padding: 32px;
}

.eco-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.eco-icon svg {
    color: white;
}

.eco-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2B48;
    margin-bottom: 16px;
}

.eco-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2C3E50;
}

.eco-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 32px;
    background: white;
    border: 2px solid var(--sage-green);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.eco-highlight svg {
    color: var(--sage-green);
    min-width: 24px;
}

.eco-highlight p {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1A2B48;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .eco-section {
        padding: 40px 20px;
        margin-bottom: 60px;
    }

    .eco-pillars {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eco-highlight {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}


/* ===================================
   Premium Footer
   =================================== */

.footer-premium {
    background: linear-gradient(135deg, #1A2B48 0%, #0F1A2E 100%);
    color: #F8F9FA;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-premium-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(248, 249, 250, 0.1);
}

.footer-premium-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-premium-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.footer-premium-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 16px;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 168, 136, 0.15);
    border: 1px solid var(--sage-green);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sage-green);
}

.footer-cert-badge svg {
    color: var(--sage-green);
}

.footer-premium-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-premium-list li a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-premium-list li a:hover {
    color: var(--sage-green);
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(248, 249, 250, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: var(--sage-green);
}

.footer-phone svg,
.footer-email svg {
    color: var(--sage-green);
    min-width: 20px;
}

.footer-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--sage-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-cta-button:hover {
    background: var(--sage-green-dark);
    transform: translateY(-2px);
}

.footer-premium-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(248, 249, 250, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Premium Footer */
@media (max-width: 768px) {
    .footer-premium {
        padding: 40px 0 0;
        margin-top: 60px;
    }

    .footer-premium-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-premium-logo {
        font-size: 1.5rem;
    }

    .footer-cta-button {
        width: 100%;
    }

    .footer-copyright {
        font-size: 0.8125rem;
    }
}


/* ===================================
   Tableau Comparatif - Transparence
   =================================== */

.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(58, 58, 58, 0.08);
    margin-bottom: 40px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    background: linear-gradient(135deg, #3A3A3A 0%, #2C2C2C 100%);
    color: white;
    padding: 24px;
    gap: 20px;
}

.comparison-col h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.comparison-col p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

.comparison-col-classic {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.comparison-col-integrated {
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.2) 0%, rgba(107, 138, 107, 0.2) 100%);
    border-radius: 8px;
    border: 2px solid var(--sage-green);
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid #E0E0E0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #F5F5F5;
}

.comparison-criteria {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--grey-anthracite);
}

.comparison-criteria svg {
    color: var(--sage-green);
    min-width: 24px;
}

.comparison-value {
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.comparison-classic {
    background: #FFF5F5;
    border-left: 3px solid #E74C3C;
    color: #3A3A3A;
}

.comparison-integrated {
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.1) 0%, rgba(168, 197, 165, 0.1) 100%);
    border-left: 3px solid var(--sage-green);
    color: #3A3A3A;
    font-weight: 500;
}

.comparison-cta {
    text-align: center;
    padding: 40px 20px;
}

.comparison-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grey-anthracite);
    font-style: italic;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 168, 136, 0.15);
    max-width: 800px;
    margin: 0 auto 24px;
}

.comparison-highlight svg {
    color: var(--sage-green);
    min-width: 24px;
}

/* Responsive Comparison Table */
@media (max-width: 968px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-col-classic,
    .comparison-col-integrated {
        margin-bottom: 12px;
    }

    .comparison-criteria {
        font-size: 1.0625rem;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--sage-green);
    }

    .comparison-value {
        margin-bottom: 12px;
    }

    .comparison-highlight {
        flex-direction: column;
        font-size: 1rem;
    }
}


/* ===================================
   Section Fiches Conseils PDF - Version Améliorée
   =================================== */

.resources-section {
    padding: 80px 0;
    background: white;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.resource-card {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 168, 136, 0.2);
    border-color: var(--sage-green);
}

/* Mockup de Couverture PDF */
.resource-mockup {
    margin: 0 auto 20px;
    perspective: 1000px;
}

.mockup-cover {
    width: 200px;
    height: 280px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(139, 168, 136, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.resource-card:hover .mockup-cover {
    transform: rotateY(5deg) rotateX(2deg);
}

.mockup-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 8px;
}

.mockup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mockup-icon svg {
    color: white;
}

.mockup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.mockup-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.resource-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--grey-anthracite);
    margin-bottom: 8px;
    line-height: 1.3;
}

.resource-description {
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.resource-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--sage-green);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    margin-top: auto;
    cursor: pointer;
}

.resource-download:hover {
    background: var(--sage-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 168, 136, 0.3);
}

.resource-download svg {
    width: 20px;
    height: 20px;
}

.resources-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.1) 0%, rgba(168, 197, 165, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
}

.resources-note svg {
    color: var(--sage-green);
    min-width: 24px;
}

.resources-note p {
    font-size: 0.9375rem;
    color: var(--grey-anthracite);
    margin: 0;
    font-style: italic;
}

/* ===================================
   Modal de Téléchargement
   =================================== */

.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.download-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(58, 58, 58, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--grey-anthracite);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: var(--sage-green);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 40px 40px 24px;
    border-bottom: 2px solid #F5F5F5;
}

.modal-header svg {
    color: var(--sage-green);
    margin-bottom: 16px;
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--grey-anthracite);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
}

/* Formulaire de Téléchargement */
.download-form {
    padding: 32px 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--grey-anthracite);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(139, 168, 136, 0.1);
}

.form-checkbox {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--sage-green);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.form-link {
    color: var(--sage-green);
    text-decoration: underline;
}

.form-link:hover {
    color: var(--sage-green-dark);
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--sage-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--sage-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 168, 136, 0.3);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8125rem;
    color: #666;
    font-style: italic;
}

.form-note svg {
    color: var(--sage-green);
}

/* Responsive Resources */
@media (max-width: 768px) {
    .resources-section {
        padding: 60px 0;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .resource-card {
        padding: 24px;
    }

    .mockup-cover {
        width: 180px;
        height: 250px;
    }

    .resources-note {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        margin: 20px;
    }

    .modal-header,
    .download-form {
        padding: 24px;
    }
}


/* ===================================
   Section Avis Google Business Profile
   =================================== */

.google-reviews-section {
    padding: 80px 0;
    background: white;
}

.google-reviews-widget {
    max-width: 1000px;
    margin: 0 auto;
}

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.google-logo {
    display: flex;
    align-items: center;
}

.google-rating {
    text-align: center;
}

.google-stars {
    font-size: 2rem;
    margin-bottom: 8px;
}

.star-filled {
    color: #FFC107;
}

.google-score {
    font-size: 1rem;
    color: var(--grey-anthracite);
    font-weight: 600;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.google-review-card {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 168, 136, 0.15);
    border-color: var(--sage-green);
}

.review-stars {
    font-size: 1.25rem;
    color: #FFC107;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--grey-anthracite);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 2px solid #E0E0E0;
}

.review-author strong {
    font-size: 0.9375rem;
    color: var(--grey-anthracite);
    font-weight: 600;
}

.review-author span {
    font-size: 0.875rem;
    color: #666;
}

.google-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.1) 0%, rgba(168, 197, 165, 0.1) 100%);
    border-radius: 12px;
}

.google-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.google-cta .btn svg {
    width: 20px;
    height: 20px;
}

.google-note {
    margin-top: 12px;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

/* Responsive Google Reviews */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 60px 0;
    }

    .google-reviews-header {
        flex-direction: column;
        padding: 24px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-review-card {
        padding: 20px;
    }
}


/* ===================================
   Pyramid Eco-Responsible Section
   =================================== */

.pyramid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.pyramid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.pyramid-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(139, 168, 136, 0.15);
}

.pyramid-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.pyramid-explanation {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pyramid-level {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--sage-green);
}

.pyramid-level:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 28px rgba(139, 168, 136, 0.2);
}

.pyramid-level-1 {
    border-left-color: var(--sage-green);
}

.pyramid-level-2 {
    border-left-color: var(--sage-green-dark);
}

.pyramid-level-3 {
    border-left-color: #E67E22;
}

.pyramid-level-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pyramid-level-3 .pyramid-level-icon {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
}

.pyramid-level-icon svg {
    color: white;
}

.pyramid-level-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--grey-anthracite);
    margin-bottom: 8px;
}

.pyramid-level-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--anthracite);
    opacity: 0.85;
    margin: 0;
}

.pyramid-cta {
    margin-top: 40px;
    text-align: center;
}

.pyramid-highlight {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: white;
    border: 2px solid var(--sage-green);
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--grey-anthracite);
    font-style: italic;
    box-shadow: 0 4px 16px rgba(139, 168, 136, 0.15);
}

.pyramid-highlight svg {
    color: var(--sage-green);
    min-width: 24px;
}

/* Responsive Pyramid Section */
@media (max-width: 968px) {
    .pyramid-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pyramid-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pyramid-section {
        padding: 60px 0;
    }
    
    .pyramid-container {
        margin-top: 40px;
    }
    
    .pyramid-level {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .pyramid-level-icon {
        margin: 0 auto;
    }
    
    .pyramid-level:hover {
        transform: translateY(-4px);
    }
    
    .pyramid-highlight {
        flex-direction: column;
        padding: 16px 20px;
        font-size: 0.9375rem;
    }
}



/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--sage-green);
    box-shadow: 0 4px 16px rgba(139, 168, 136, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--grey-anthracite);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--sage-green);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--sage-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--anthracite);
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--grey-anthracite);
    font-weight: 600;
}

.faq-answer a {
    color: var(--sage-green);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--sage-green-dark);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }
}


/* ===================================
   FAQ Categories & Intro
   =================================== */

.faq-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.1) 0%, rgba(168, 197, 165, 0.1) 100%);
    border-radius: 12px;
}

.faq-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--anthracite);
    margin-bottom: 12px;
}

.faq-intro p:last-child {
    margin-bottom: 0;
}

.faq-intro a {
    color: var(--sage-green);
    text-decoration: underline;
}

.faq-intro a:hover {
    color: var(--sage-green-dark);
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--grey-anthracite);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-category-btn:hover {
    border-color: var(--sage-green);
    color: var(--sage-green);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--sage-green);
    border-color: var(--sage-green);
    color: white;
}

.faq-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, rgba(139, 168, 136, 0.1) 0%, rgba(168, 197, 165, 0.1) 100%);
    border-radius: 16px;
    margin-top: 60px;
}

.faq-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--grey-anthracite);
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 1.0625rem;
    color: var(--anthracite);
    margin-bottom: 24px;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .faq-intro {
        padding: 24px;
    }

    .faq-categories {
        gap: 8px;
    }

    .faq-category-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .faq-cta {
        padding: 32px 24px;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta-buttons .btn {
        width: 100%;
    }
}


/* ===================================
   BOUTON URGENCE STICKY (MOBILE)
   =================================== */

/* Bouton d'urgence sticky en bas pour mobile */
.btn-urgence-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--sage-green);
    color: var(--white);
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 -4px 20px rgba(139, 168, 136, 0.4);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-urgence-sticky svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.btn-urgence-sticky:hover {
    background-color: var(--sage-green-dark);
}

.btn-urgence-sticky:active {
    transform: scale(0.98);
}

/* Animation Pulse pour niveau critique */
@keyframes pulse-urgence {
    0% {
        box-shadow: 0 -4px 20px rgba(139, 168, 136, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 -4px 40px rgba(139, 168, 136, 0.8);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 -4px 20px rgba(139, 168, 136, 0.4);
        transform: scale(1);
    }
}

.btn-urgence-sticky.pulse-critical {
    animation: pulse-urgence 1.5s ease-in-out infinite;
    background-color: #E74C3C;
}

.btn-urgence-sticky.pulse-critical:hover {
    background-color: #C0392B;
}

/* Afficher le bouton sticky sur mobile uniquement */
@media (max-width: 768px) {
    .btn-urgence-sticky {
        display: flex;
    }
    
    /* Ajuster le padding du body pour éviter que le contenu soit caché */
    body {
        padding-bottom: 70px;
    }
    
    /* Ajuster la position du bouton WhatsApp pour ne pas chevaucher */
    .whatsapp-float {
        bottom: 90px;
    }
}

/* Animation pulse pour le bouton header en mode critique */
.btn-emergency.pulse-critical {
    animation: pulse-urgence 1.5s ease-in-out infinite;
    background-color: #E74C3C;
}

.btn-emergency.pulse-critical:hover {
    background-color: #C0392B;
}

/* Icône téléphone pour le bouton */
.btn-urgence-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
