*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}
:root {
    /* Palette PSE - Institutionnelle & Nature */
    --primary-color: #1a4d2e; /* Vert foncé profond - Professionnel & Nature */
    --primary-light: #4f775d; /* Vert plus doux pour les survols */
    --accent-color: #8bc34a; /* Vert vif pour l'action et la vitalité */
    
    --neutral-dark: #2c3e50; /* Gris foncé bleuté pour le texte principal - Très lisible */
    --neutral-mid: #7f8c8d; /* Gris moyen pour les sous-titres */
    --neutral-light: #f5f7fa; /* Blanc cassé/Gris très clair pour les fonds alternés */
    
    --white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Libre Baskerville', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows & Radius */
    --shadow-card: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-hover: 0 10px 15px rgba(0,0,0,0.1);
    --radius-sm: 0px;
    --radius-md: 0px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--neutral-dark);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; position: relative; padding-bottom: 15px; }
h3 { font-size: 1.5rem; }

/* Decorative underline for headings */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.text-left .section-title::after {
    margin-left: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--neutral-light);
}

.text-center { text-align: center; }
.text-justify { text-align: justify; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 100vh;
    background: url("../images/hero-bg.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Haut : logo + liens */
.hero-top {
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.hero-brand img {
    height: 90px;
}

/* Liens */
.hero-links {
    display: flex;
    gap: 2rem;
}

.hero-links a {
    color: #fff;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    position: relative;

    font-family: 'Montserrat', sans-serif;
}

/* Bouton devis */
.hero-cta {
    border: 2px solid #fff;
    padding: 6px 14px;
}

.hero-cta:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Contenu principal */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-top: 130px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;

    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff; /* optionnel mais recommandé sur image */
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Boutons */
.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--neutral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-color);
    font-size: 2rem;
    transition: background-color 0.3s;
}

.card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.card p {
    color: var(--neutral-mid);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.card-link {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--accent-color);
    border-left: 5px solid var(--accent-color);
    z-index: -1;
}

/* Why Choose Us */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.reason-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

/* Services Page */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(26, 77, 46, 0.9), rgba(26, 77, 46, 0.9)), url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.service-block {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block-content {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.service-block-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text ul {
    margin-top: var(--spacing-sm);
}

.service-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-text li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-img {
    flex: 1;
}

.service-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.contact-sidebar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
}

.contact-sidebar h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-main {
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #1e272e;
    color: #b2bec3;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* structure stable */
    gap: 24px; /* AVANT 40px */
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
    text-align: center;
    font-size: 0.85rem;
}

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

.service-card {
    overflow: hidden;
    border-radius: 6px;
    background: #f5f7f5;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-content {
    background: #cfdcd2;
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1f3d2b;
}

.service-content p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.45rem 1rem;
    border: 1px solid #1f3d2b;
    color: #1f3d2b;
    text-decoration: none;
    font-size: 0.85rem;
}
.services-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 3rem 0 2rem;
    gap: 2rem;
}

.services-intro h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2f3a32;
}

.services-intro p {
    max-width: 520px;
    color: #555;
    font-size: 1rem;
}
.services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.services-text h2 {
    font-family: 'Libre Baskerville', serif; /* AJOUT */
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.services-text p {
    font-family: 'Libre Baskerville', serif; /* AJOUT */
    max-width: 500px;
    color: var(--neutral-mid);
    font-weight: 400; /* IMPORTANT : plus élégant */
}

.services-btn .btn-dark {
    font-weight: 400; /* AVANT : 600 */
    letter-spacing: 0.5px; /* plus fin */
    text-transform: uppercase; /* on garde */
    font-size: 0.85rem;
}

/* ===== SERVICES SECTION (STYLE IMG 2) ===== */

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.services-text h2 {
    font-family: 'Libre Baskerville', serif; /* AJOUT */
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.services-text p {
    font-family: 'Libre Baskerville', serif; /* AJOUT */
    max-width: 500px;
    color: var(--neutral-mid);
    font-weight: 400; /* IMPORTANT : plus élégant */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
}

.service-card img {
    height: 240px;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
img,
.card,
.service-card,
.about-img img,
.service-img img {
    border-radius: 0 !important;
}
.hero-links a:hover {
    opacity: 0.8;
}
.hero-overlay {
    background: rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .hero-brand img {
        height: 70px;
    }
}
/* ===== ABOUT SPLIT (STYLE IMAGE 2) ===== */

.about-split {
    padding: 6rem 0;
}

.about-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Texte */
.about-eyebrow {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-mid);
    margin-bottom: 1rem;
}

.about-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--neutral-mid);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--neutral-dark);
    max-width: 520px;
}

/* Image */
.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid-2 {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-top: 3rem;
    }
}
/* ===== ABOUT INTRO BANNER (STYLE IMAGE 2) ===== */

.about-intro {
    background-color: #cfdcd2; /* vert doux identique à l’image */
    padding: 4.5rem 0;
}

.about-intro p {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2f3a32;
    font-weight: 400;
}
@media (max-width: 768px) {
    .about-intro {
        padding: 3rem 1rem;
    }
}

/* ===============================
   TESTIMONIAL SIMPLE (BASE)
================================ */

.testimonial-section {
    background: #3f4642;
    color: #fff;
    padding: 70px 8%; /* AVANT : 120px */
    position: relative;
    overflow: hidden;
}

.testimonial-inner {
    max-width: 1100px;
    position: relative;
}

/* GROS GUILLEMETS */
.testimonial-quotes {
    position: absolute;
    left: -90px;
    top: 40px;
    font-size: 820px; /* PLUS GRAND */
    line-height: 0.8;
    font-family: 'Libre Baskerville', serif;
    color: rgba(255,255,255,0.12);
    pointer-events: none;
}

/* SOURCE */
.testimonial-source {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.75;
}

/* TEXTE */
.testimonial-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem; /* AVANT : 2.1rem */
    line-height: 1.4;
    font-weight: 400;
    max-width: 820px;
    margin-bottom: 2rem;
}

/* FOOTER */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-date {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* BOUTON */
.testimonial-btn {
    border: 1px solid rgba(255,255,255,0.7);
    padding: 10px 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
/* ===============================
   CONTACT SECTION (IMG 2 STYLE)
================================ */

.contact-section {
    background: #f1f5f2;
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: flex-start;
}

/* LEFT */
.contact-info p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.contact-info h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    color: #3f4642;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #000;
}

.contact-details i {
    font-size: 1.2rem;
}

/* RIGHT */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    border: 1px solid #cfcfcf;
    margin-bottom: 1.2rem;
    font-family: 'Libre Baskerville', serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form textarea {
    min-height: 160px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    background: #c9d6cf;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'Libre Baskerville', serif;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info h2 {
        font-size: 2.4rem;
    }
}
/* ===============================
   CUSTOMER COMMENTS
================================ */

.customer-comments {
    padding: 6rem 0;
    background: #ffffff;
}

.comments-title {
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #4a4f4b;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARD */
.comment-card {
    position: relative;
    padding: 3rem 2.5rem;
    min-height: 420px;
    overflow: hidden;
}

/* Couleurs */
.comment-card.dark {
    background: #3f4642;
    color: #ffffff;
}

.comment-card.light {
    background: #cfdcd2;
    color: #2f3a32;
}

/* Source */
.comment-source {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* Texte */
.comment-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Date */
.comment-date {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Bouton */
.comment-btn {
    display: inline-block;
    border: 1px solid currentColor;
    padding: 10px 24px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.comment-btn:hover {
    background: currentColor;
    color: #fff;
}

/* GROS GUILLEMETS */
.comment-quote {
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 300px;
    line-height: 1;
    opacity: 0.08;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .comments-grid {
        grid-template-columns: 1fr;
    }

    .comment-card {
        min-height: auto;
    }
}
.site-footer {
  background: #c8d6cd; /* vert clair */
  font-family: 'Libre Baskerville', serif;
  color: #2f3b35;
}

/* Grille principale */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 4%; /* AVANT 100px 8% */
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem; /* AVANT 4rem */
}


/* Logo */
.footer-logo {
  width: 130px;
  margin-bottom: 1.5rem;
}

/* Titres */
.site-footer h4 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

/* Texte */
.site-footer p,
.site-footer li {
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Listes */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.8rem;
}

/* Bande du bas */
.footer-bottom {
  background: #3f4642;
  color: #fff;
  padding: 14px 8%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: #f2c94c;
}

.testimonial-btn:hover {
    background: #ffffff;
    color: #3f4642;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.site-footer li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* ===== HERO : bouton NOUS CONTACTER uniquement ===== */

.hero-buttons .btn-contact {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-buttons .btn-contact:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}
/* ===== BOUTON SERVICES – HOVER SPÉCIAL ===== */

.btn-services-hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    padding: 14px 34px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    text-transform: uppercase;
    transition: 
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

/* HOVER : fond devient transparent */
.btn-services-hover:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===== HOVER ADAPTATIF - COMMENTAIRES ===== */

/* Cards SOMBRES */
.comment-card.dark .comment-btn {
    color: #ffffff;
    border-color: #ffffff;
}

.comment-card.dark .comment-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Cards CLAIRES */
.comment-card.light .comment-btn {
    color: #000000;
    border-color: #000000;
}

.comment-card.light .comment-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}
/* ===== BOUTON ENVOYER – ANIMATION ===== */

.contact-form button {
    background: #c9d6cf; /* couleur actuelle */
    color: #2f3b35;
    border: 2px solid transparent;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    padding: 18px;
    cursor: pointer;
    transition: 
        background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.contact-form button:hover {
    background: transparent;
    color: var(--primary-color); /* vert intense */
    border-color: var(--primary-color);
}
.services-section {
    padding-top: 1.5rem; /* au lieu de 6rem */
}

.hero-services {
    min-height: 100vh;
}

/* ===============================
   PROCESS – STYLE IMAGE 2 (COMPACT)
================================ */

.process-section {
    background: #cfdcd2;
    padding: 4.5rem 8%;
}

.process-title {
    text-align: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 2.6rem;
    color: #3f4642;
    margin-bottom: 3.5rem;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* CARD */
.process-card {
    background: #3f4642;
    color: #ffffff;
    padding: 2.4rem 2.2rem;
    position: relative;
    min-height: 280px;
}

/* NUMÉRO */
.process-step {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
    opacity: 0.85;
}

/* TITRE */
.process-card h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
    color: #ffffff;
}

/* TEXTE */
.process-card p {
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
    max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-title {
        font-size: 2.2rem;
    }

    .process-card {
        min-height: auto;
        padding: 2rem 1.8rem;
    }
}

/* ===============================
   SERVICE BENEFITS (STYLE IMG)
================================ */

.service-benefits {
    padding: 6rem 0;
    background: #ffffff;
}

.benefits-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #4a4f4b;
}

/* Grille */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Item */
.benefit-item h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2f3a32;
    text-align: center;
}

.benefit-item p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-title {
        font-size: 2.4rem;
    }

    .benefit-item h3 {
        font-size: 1.7rem;
    }
}

/* ===============================
   HEADER / HERO – VERSION STABLE
================================ */

.hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

.hero-brand img {
    height: 90px;
}

/* Desktop menu */
.hero-links {
    display: flex;
    gap: 2rem;
}

.hero-links a {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Burger hidden desktop */
.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

/* ===============================
   MOBILE HEADER
================================ */
@media (max-width: 768px) {

    .hero-top {
        padding: 1rem 1.2rem;
    }

    .hero-brand img {
        height: 64px; /* LOGO PLUS GRAND */
    }

    .hero-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 60;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 2px;
        background: #fff;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.96);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 55;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        color: #fff;
        font-size: 2rem;
        font-family: 'Libre Baskerville', serif;
    }
}

.hero-overlay {
    pointer-events: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

section, header, footer {
    max-width: 100%;
    overflow-x: hidden;
}

.hero,
.hero-top,
.hero-content,
.testimonial-section,
.process-section {
    overflow-x: hidden;
}

.testimonial-quotes {
    display: none;
}
/* ===================================
   CORRECTIONS RESPONSIVE MOBILE
=================================== */

/* 1. CORRECTIONS GLOBALES */
@media (max-width: 768px) {
    
    /* Hero - Réduction padding */
    .hero {
        padding: 0 4%;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-top: 100px;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem; /* au lieu de 3.2rem */
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* About Intro - Texte plus petit */
    .about-intro p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    /* About Split - Passage en 1 colonne */
    .about-grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    /* Services Grid - 1 colonne */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-text h2 {
        font-size: 1.8rem;
    }
    
    /* Testimonial - Guillemets cachés + padding réduit */
    .testimonial-section {
        padding: 3rem 4%;
    }
    
    .testimonial-quotes {
        display: none; /* CRITIQUE : empêche débordement */
    }
    
    .testimonial-text {
        font-size: 1.2rem;
    }
    
    /* Contact Grid - 1 colonne */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Comments Grid - 1 colonne */
    .comments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comments-title {
        font-size: 2rem;
    }
    
    .comment-text {
        font-size: 1.15rem;
    }
    
    /* Footer - 2 colonnes puis 1 */
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 40px 4%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 14px 4%;
    }
    
    /* Process Grid - 1 colonne */
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    /* Benefits Grid - 1 colonne */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    /* About Grid - 1 colonne */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Service Block - Stack vertical */
    .service-block-content,
    .service-block-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Reasons Grid - 1 colonne */
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* 2. TRÈS PETITS ÉCRANS (< 480px) */
@media (max-width: 480px) {
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .comments-title,
    .benefits-title,
    .process-title {
        font-size: 1.6rem;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* 3. TABLETTES (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================
   SERVICES PAGE - LAYOUT LISTE VERTICALE
   (N'affecte PAS la home page)
============================================ */

/* Wrapper spécifique à la page services */
.services-page-content .service-block {
    margin-bottom: 5rem;
    padding-bottom: 0;
    border-bottom: none;
}

.services-page-content .service-block:last-child {
    margin-bottom: 0;
}

/* Layout image + texte côte à côte */
.services-page-content .service-block-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Alternance : image à droite */
.services-page-content .service-block-content.reverse {
    flex-direction: row-reverse;
}

/* Image : occupe 45% */
.services-page-content .service-img {
    flex: 0 0 45%;
}

.services-page-content .service-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Texte : occupe le reste */
.services-page-content .service-text {
    flex: 1;
}

.services-page-content .service-text h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.services-page-content .service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-dark);
    margin-bottom: 2rem;
}

/* Espacement hero eyebrow */
.hero-eyebrow {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

/* ===================================
   RESPONSIVE - PAGE SERVICES
=================================== */

/* Tablette */
@media (max-width: 1024px) {
    .services-page-content .service-block-content {
        gap: 3rem;
    }
    
    .services-page-content .service-img {
        flex: 0 0 42%;
    }
    
    .services-page-content .service-img img {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    
    .services-page-content .service-block {
        margin-bottom: 3rem;
    }
    
    /* Empilement vertical */
    .services-page-content .service-block-content,
    .services-page-content .service-block-content.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .services-page-content .service-img {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .services-page-content .service-img img {
        height: 280px;
    }
    
    .services-page-content .service-text h3 {
        font-size: 1.6rem;
    }
    
    .services-page-content .service-text p {
        font-size: 1rem;
    }
    
    .hero-eyebrow {
        font-size: 0.75rem;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    
    .services-page-content .service-img img {
        height: 220px;
    }
    
    .services-page-content .service-text h3 {
        font-size: 1.4rem;
    }
}
