/* =========================
   VARIABLES DE COULEURS
   ========================= */
:root {
  --green-dark: #183536;        /* Vert très foncé (fond header et footer) */
  --green-main: #24553c;        /* Vert principal (boutons, titres) */
  --green-light: #e8f3ec;       /* Vert très clair (fond badges, sections) */
  --green-border: #4a8f5c;      /* Vert des bordures au survol */
  --copper: #B46A3C;            /* Cuivre Phoenix */
  --text-main: #111827;         /* Texte principal (presque noir) */
  --text-muted: #6b7280;        /* Texte gris */
  --background: #f7f7f7;        /* Fond général */
  --white: #ffffff;
}

/* =========================
   STYLE GLOBAL
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Conteneur central */
.container {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   HEADER + NAVIGATION
   ========================= */
header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  position: relative;
}

/* Logo + texte à gauche */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 60px;      
  height: 60px;       
}

.nav-title {
  display: flex;
  flex-direction: column;
}

.nav-title-main {
  font-weight: 700;
  color: var(--copper);
  font-size: 0.95rem;
}

.nav-title-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-title-tagline {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.15rem;
  color: #6b6b6b; /* discret, pro */
  font-style: italic;
}

/* BOUTON 3 TRAITS (hamburger) */
.menu-icon,
.custom-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 40px;
  height: 40px;

  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
  margin-left: auto;
}

.menu-icon .hamburger-line,
.custom-hamburger .hamburger-line {
  width: 22px;
  height: 3px;
  background-color: #2e3a48;
  border-radius: 3px;
  margin: 3px 0;
  transition: all 0.2s ease-in-out;
}

.menu-icon:hover,
.custom-hamburger:hover {
  background: #f4f5f7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.menu-icon:hover .hamburger-line,
.custom-hamburger:hover .hamburger-line {
  background-color: #1e293b;
}

/* Téléphone éventuel dans le header */
.nav-phone {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 1rem;
}

/* MENU DÉROULANT (mobile) */
.nav-links {
  position: absolute;
  top: 60px;
  right: 0;
  background: var(--white);

  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;

  padding: 0.75rem 1.5rem;
  border-bottom-left-radius: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
  z-index: 50;
}

.nav-links.open {
  display: flex;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-main);
  transition: all 0.15s ease-in-out;
}

.nav-link:hover {
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
}

/* =========================
   ICÔNES RÉSEAUX SOCIAUX
   ========================= */
.social-icons-header {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  margin-left: auto;
  margin-right: 7rem;
}

.social-link-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #183536;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link-header:hover {
  color: var(--copper);
}

.social-icon {
  width: 26px;
  height: 26px;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* Footer : réseaux sociaux (si utilisés) */
.footer-social {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-link-footer {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link-footer:hover {
  color: var(--copper);
}

/* Masquer les logos sociaux uniquement sur la page Approche Écologique */
.no-social .social-icons-header {
  display: none !important;
}

/* =========================
   SECTION HERO (ACCUEIL)
   ========================= */
.hero {
  background: radial-gradient(circle at top left, #f0f7f3, #fdf8f3);
  padding: 3rem 0 3.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  background: #e8f5e9;
  color: var(--green-dark);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;

  margin: 0 auto 1.5rem auto;
  width: fit-content;
  text-align: center;
}

.hero-badge-icon {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 2.1rem;
  text-align: center;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

.hero-title span {
  color: var(--green-main);
}

.hero-subtitle {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Bloc fondateur */
.founder-block {
  margin: 30px auto 40px;
  max-width: 900px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2f2f2f;
}

/* =========================
   BOUTONS GÉNÉRIQUES
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    color 0.1s ease, border-color 0.1s ease;
}

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

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  border: 1px solid var(--green-main);
  color: var(--green-main);
  background: var(--white);
}

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

/* =========================
   SECTION SERVICES (cartes)
   ========================= */
.section {
  padding: 3rem 0;
  background: var(--background);
}

.section-alt {
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

  margin-left: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;

  box-sizing: border-box;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem 1.1rem;
  border: 1px solid var(--green-main);
  transition: border-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
  position: relative;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--green-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 0.25rem;
}

.service-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-list {
  list-style: none;
  margin-bottom: 1.1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
}

.service-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Bouton "En savoir plus" */
.service-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--green-main);
  border: 1px solid var(--green-main);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.service-more span {
  margin-left: 0.35rem;
}

.service-more:hover {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}

/* Légère augmentation du texte au survol */
.service-card:hover .service-title,
.service-card:hover .service-subtitle,
.service-card:hover .service-list li {
  font-size: 0.9rem;
}

/* =========================
   SECTION "POURQUOI CHOISIR"
   ========================= */
.benefits-section {
  background: var(--green-dark);
  color: var(--white);
  padding: 3rem 0 2.5rem;
}

.benefits-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.benefits-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

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

.benefit-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1rem;
}

.benefit-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.benefit-text {
  font-size: 0.75rem;
  color: #e5e7eb;
}

/* =========================
   SECTION TÉMOIGNAGES
   ========================= */
.testimonials-section {
  background: var(--white);
  padding: 3rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1rem;
  font-size: 0.8rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.testimonial-stars {
  font-size: 0.75rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.78rem;
  color: var(--text-main);
}

/* =========================
   SECTION APPEL À L’ACTION
   ========================= */
.cta-section {
  background: var(--copper);
  padding: 3rem 0;
  text-align: center;
  color: #ffffff;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #fdf5ec;
}

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

/* Bouton blanc plein */
.cta-section .btn.cta-quote {
  background: #ffffff;
  color: #183536;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border: 2px solid #183536;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cta-section .btn.cta-quote:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Bouton cuivre */
.cta-section .btn.cta-call {
  background: #B46A3C;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  border: 2px solid #183536;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cta-section .btn.cta-call:hover {
  background: #8c522e;
  border-color: #0f2427;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.cta-call-icon {
  font-size: 1rem;
}

/* =========================
   PIED DE PAGE
   ========================= */
footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 2.5rem 0 2rem;
  font-size: 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-title {
  font-weight: 700;
  color: var(--copper);
  font-size: 0.9rem;
}

.footer-subtitle {
  font-size: 0.8rem;
  color: #d1d5db;
}

.footer-column-title {
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 0.6rem;
}

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

.footer-list li {
  margin-bottom: 0.3rem;
}

.footer-list a,
.footer-bottom-link,
.contact-mail a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-bottom-link:hover,
.contact-mail a:hover {
  color: var(--copper);
}

.contact-mail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gmail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #9ca3af;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}

.footer-separator {
  color: #9ca3af;
}

.footer-bottom-link:hover {
  color: var(--copper);
  text-decoration: underline;
}

/* =========================
   PAGES "EN SAVOIR PLUS"
   ========================= */
.service-detail {
  padding: 2.5rem 0 3rem;
}

.service-detail-header {
  max-width: 750px;
  margin: 0 auto 1.5rem;
}

.service-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-main);
  margin-bottom: 0.4rem;
}

.service-detail-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.service-detail-text {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.service-detail-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-detail-list li {
  margin-bottom: 0.3rem;
}

/* =========================
   SECTIONS HERO SERVICES
   ========================= */
.service-hero {
  background: var(--green-dark);
  padding: 4rem 0 3rem;
  color: #ffffff;
}

.service-back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #cfa26b;
  text-decoration: none;
  font-weight: 600;
}

.service-back-link:hover {
  text-decoration: underline;
}

.service-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.service-hero-subtitle {
  font-size: 1rem;
  margin-top: 0.6rem;
  color: #e5e7eb;
}

/* =========================
   LAYOUT PAGES SERVICES
   ========================= */
.service-main-wrapper {
  background: var(--background);
  padding: 3rem 0;
}

.service-layout,
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Bloc beige */
.eco-box {
  margin-top: 1.5rem;
  background: #f6ecdf;
  padding: 1.5rem;
  border-radius: 14px;
  border-left: 6px solid #c48653;
}

.eco-box-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.eco-box-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.eco-box-list {
  margin-left: 1.2rem;
  font-size: 0.9rem;
}

.eco-box-list li {
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}

.eco-box-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0a4d3c;
  font-weight: bold;
}

/* Sidebar */
.service-sidebar {
  position: relative;
  width: 100%;
}

.quote-card,
.service-sidebar-card {
  background: #183536;
  padding: 1.8rem;
  border-radius: 16px;
  color: white;
}

.quote-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.quote-card-text {
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.quote-card-button {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  background: var(--copper);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 1.3rem;
}

.quote-card-button:hover {
  background: #8a4f2d;
}

.quote-divider {
  border: none;
  border-top: 1px solid #355d56;
  margin: 1rem 0;
}

.quote-subtitle {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.quote-phone {
  display: block;
  background: white;
  color: black;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.quote-zones li {
  margin-bottom: 0.4rem;
}

/* =========================
   SECTION : Autres services
   ========================= */
.other-services {
  padding: 3rem 0;
  background: var(--background);
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.other-service-card {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #eaeaea;
  text-align: center;
  transition: 0.2s;
}

.other-service-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.other-service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.other-service-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.other-service-link {
  font-weight: 600;
  color: #0a4d3c;
  text-decoration: none;
}

.other-service-link:hover {
  color: var(--copper);
}

/* =========================
   PAGE CONTACT – LAYOUT
   ========================= */
.contact-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.contact-form-block {
  flex: 1 1 auto;
}

.contact-info-block {
  flex: 0 0 340px;
}

.contact-card {
  background: var(--green-dark);
  color: #ffffff;
  padding: 1.8rem 1.8rem 1.6rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.contact-card .contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.contact-card .contact-subtitle {
  margin-top: 1.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.contact-info-list {
  list-style: none;
  margin: 0.6rem 0 1.2rem;
  padding: 0;
}

.contact-info-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.contact-card .contact-mail a {
  color: #ffffff;
}

.contact-card .contact-mail a:hover {
  color: var(--copper);
}

/* =========================
   PAGE CONTACT – FORMULAIRE
   ========================= */
.contact-form-block {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form .form-field {
  flex: 1 1 0;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  outline: none;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 110px;
  border-radius: 12px;
  resize: vertical;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 1px rgba(24, 53, 54, 0.15);
}

.form-consent {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

.form-consent input[type="checkbox"] {
  margin-right: 0.4rem;
}

.consent-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-submit {
  margin-top: 0.75rem;
}

/* =========================
   BOUTONS FLOTTANTS
   ========================= */
.floating-actions,
.floating-buttons {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 9999;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.floating-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.floating-btn.devis-btn {
  background: var(--copper);
  color: #ffffff;
}

.floating-btn.devis-btn:hover {
  background: #8c522e;
}

.floating-btn.phone-btn {
  background: #ffffff;
  color: #183536;
  border-color: #183536;
  gap: 0.4rem;
}

/* hover téléphone (général) */
.floating-actions .phone-btn,
.floating-buttons .phone-btn {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.floating-actions .phone-btn:hover,
.floating-buttons .phone-btn:hover {
  background-color: #183536;
  color: #ffffff;
  border-color: #183536;
}

/* Approche Écologique : style spécifique téléphone */
body.no-social .floating-actions .phone-btn {
  background: #ffffff;
  color: #183536;
  border: 2px solid #183536;
}

body.no-social .floating-actions .phone-btn:hover {
  background: #ffffff;
  color: #183536 !important;
  border-color: #183536 !important;
  transform: translateY(-2px);
}

/* =========================
   BANNIÈRE COOKIES
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(24, 53, 54, 0.97);
  color: #ffffff;
  padding: 1rem 0;
  font-size: 0.95rem;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-banner-text {
  margin: 0;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-btn {
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
}

.cookie-link {
  font-size: 0.85rem;
  text-decoration: underline;
  color: #ffffff;
}

.cookie-link:hover {
  text-decoration: none;
}

/* =========================
   DIVERS / PAGES SPÉCIALES
   ========================= */

/* Approche Écologique : éclaircir le bloc latéral */
.service-sidebar-card {
  background: #214845 !important;
  color: #ffffff;
}

.service-sidebar-card .service-detail-text,
.service-sidebar-card .service-detail-list li {
  color: #f1f5f4 !important;
}

.service-sidebar-card .service-detail-title {
  color: #0d1b1e !important;
}

/* Page merci – correction lisibilité */
.thankyou .service-hero-subtitle {
  color: #1a1a1a;
  opacity: 1;
}

/* Email responsive */
.mail-short { display: none; }
.mail-full { display: inline; }

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

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .service-layout,
  .service-detail-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .other-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-info-block {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 800px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  /* évite que le contenu passe sous boutons + cookies */
  body { padding-bottom: 130px; }

  .floating-actions { bottom: 14px; }

  /* Cookies : empiler */
  .cookie-banner-inner { padding: 0 1rem; }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  /* Cards "content block" propres en mobile */
  .service-detail-content-block {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px 16px;
    margin: 14px 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .service-detail-subtitle {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .service-detail-list {
    margin: 0;
    padding-left: 18px;
  }

  .service-detail-list li {
    margin: 10px 0;
    line-height: 1.5;
  }

  /* grilles en 1 colonne (mobile) */
  .certifications-grid,
  .skills-grid,
  .cards-grid,
  .features-grid,
  .service-features-grid,
  .other-services-grid {
    grid-template-columns: 1fr !important;
  }

  /* cards plus lisibles */
  .certification-card,
  .skill-card,
  .feature-card,
  .card,
  .service-card,
  .other-service-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 !important;
    padding: 18px 16px !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
  }

  .certification-card h3,
  .skill-card h3,
  .feature-card h3,
  .card h3,
  .service-card h3,
  .other-service-card h3 {
    line-height: 1.15;
  }

  /* Email responsive */
  .mail-full { display: none; }
  .mail-short { display: inline; }
}

@media (max-width: 700px) {
  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form-block {
    padding: 1.4rem;
  }
}

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

  .cta-actions {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .other-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-hero-title {
    font-size: 2rem;
  }
}

@media (min-width: 769px) {
  .mail-full { display: inline; }
  .mail-short { display: none; }
}
/* =======================
   AVIS CLIENTS (INDEX)
======================= */
.avis{
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px;
}

.avis-head{
  text-align: center;
  margin-bottom: 22px;
}

.avis-title{
  margin: 0;
}

.avis-subtitle{
  margin: 10px 0 16px;
  opacity: .9;
}

.avis-btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid currentColor;
}

.avis-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.avis-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 16px;
}

.avis-txt{
  margin: 0 0 10px;
  line-height: 1.5;
}

.avis-meta{
  margin: 0;
  font-size: .95rem;
  opacity: .85;
}

.avis-map{
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
}

@media (max-width: 900px){
  .avis-grid{ grid-template-columns: 1fr; }
}
.map-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
}

.map-full iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
/* =======================
   AVIS CLIENTS - CENTRÉ
======================= */
.avis-center {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 16px;
  text-align: center;
}

.avis-center h2 {
  margin-bottom: 12px;
}

.avis-subtitle {
  margin-bottom: 20px;
  opacity: 0.9;
}

.avis-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
}

/* =======================
   CARTE GOOGLE - FULL WIDTH
======================= */
.map-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.map-full iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.full-width-image {
  width: 100%;
  margin-top: 0px;     /* 👈 rapproche des boutons */
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.full-width-image img {
  width: 100%;
  max-width: 500px;   /* 👈 largeur idéale (900–1200px) */
  height: 240px;       /* ajuste si besoin */
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

@media (max-width: 480px) {
  .nav-title .tagline,
  .nav-title em,
  .nav-title p{
    display: none;
  }
}




