/*   =======  style generale  ===========  */

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
  background-color: #eaf6fb;
}
li {
  list-style: none;
}
a {
  color: #000;
  text-decoration: none;
}
/*Les Titres*/
h2 {
  font-size: 2rem;
  color: #0074b7;
  font-weight: 600;
  margin: 25px 0;
}
h3 {
  font-size: 1.6rem;
  color: #0074b7;
  font-weight: 600;
  margin: 25px 0;
}
section {
  width: 100%;
  /*background-color: #eaf6fb;*/
}
section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ========  TOP BAR  ========  */

.top-bar {
  background-color: #0074b7;
  color: white;
  padding: 10px 60px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}

.top-item {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.top-item i {
  font-size: 16px;
  color: white;
}

/* le Responsive Mobile Top Bar  (écran jusqu'à 768px) */
@media (max-width: 768px) {
  .top-bar {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;
    font-size: 9px;
  }
  .top-item {
    margin-bottom: 7px;
  }
}
/* ==========   HEADER PRINCIPAL  ======== */

.main-header {
  background: #fff;
  padding: 0px; /* ⬅️ hauteur réduite */
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e5e5e5;
}

/*------ Partie contact --------*/
.header-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px; /* ⬅️ hauteur réduite */
}
/* Logo */
.logo-container img {
  width: 100%;
  max-width: 180px; /* taille idéale pour ton header */
  height: auto;
}

/* Zone contact */
.header-contact .contact-info {
  display: flex;
  gap: 80px;
}

/* Lien contact */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
}

.info-item:hover strong {
  color: #1fa3d6;
}
.header-contact .contact-info .flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Icônes */
.icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #0074b7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon i {
  color: #fff;
}

/* Small text */
small {
  font-size: 13px;
  color: #666;
}
/*responsive mobile partie contact*/
@media (max-width: 768px) {
  .header-contact .contact-info a.info-item:last-child {
    display: none;
  }
  .header-contact {
    padding: 0 25px;
  }
}

/* Partie Menu + bouton */
.header-menu {
  background: #f5f5f7;
  transition: all 0.25s ease;
}

.fixed-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  background: #f5f5f7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* NAV GLOBAL */
.nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  padding: 12px 0;
}

/* MENU PRINCIPAL */
.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu > li {
  position: relative; /* OBLIGATOIRE pour le dropdown */
}

.menu a {
  display: block;
  padding: 15px 20px;
  color: #000;
  font-weight: 600;
}

/* Hover lien principal */
.menu a:hover {
  /*background: #444;*/
  color: #0074b7;
}

/* FLÈCHE AUTOMATIQUE */
.dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
}
/*Soulignement uniquement pour le menu principal
.menu > li a {
  position: relative;
  text-decoration: none;
}

.menu > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: #0074b7;
  transition: width 0.3s ease;
}

.menu  > li a:hover::after {
  width: 100%;
}*/

/* SOUS-MENU */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #f5f5f7;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

.submenu li a {
  padding: 12px 15px;
  font-size: 14px;
  color: #444;
}

/* AFFICHAGE AU SURVOL */
.dropdown:hover .submenu {
  display: block;
}

/* Hover sous-menu */
.submenu a:hover {
  background: #0074b7;
  color: #fff;
}

/* BOUTON */
.btn {
  display: inline-block;
  background: #a56fc0;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #8f58a5;
  transform: translateY(-2px);
}

/*MENU HAMBURGER*/
.hamburger {
  display: none;
  cursor: pointer;
  background-color: #0074b7;
  padding: 4px 7px;
  border-radius: 8px;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
/*responsive partie menu + bouton*/
/* RESPONSIVE TABLETTE MENU HAMBURGER + BOUTON*/
@media (max-width: 1024px) {
  .menu {
    justify-content: space-around;
    gap: 30px;
  }
  .nav {
    padding: 15px 40px;
  }
  .menu a {
    font-size: 12px;
  }
}
/* RESPONSIVE MOBILE MENU HAMBURGER + BOUTON*/
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    flex-direction: row;
    align-items: center;
  }
  .nav .btn {
    padding: 12px 13px;
    font-size: 0.8rem;
  }
  .menu {
    position: absolute;
    bottom: 0;
    left: -100%;
    top: 275px;
    gap: 0;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    height: 200px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    transition: 0.3s;
    z-index: 1000;
  }
  .menu .nav-link {
    margin: 16px 0;
  }
  .menu.active {
    left: 0;
  }
  /* sous-menu */
  .submenu {
    position: static;
  }
  .dropdown:hover .submenu {
    display: block;
  }
}

/* =====================
   HERO
===================== */
.hero {
  padding: 60px 9%;
  margin: 30px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  position: relative;
  height: 80%;
  /*width: 420px;
  height: 500px;*/
}

/* Image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
}

/* CONTENU */
.hero-content {
  max-width: 550px;
}

.hero-content .title h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  color: #2c4a7a;
}

.hero-content .title h2 {
  display: block;
  color: #0b2f5b;
  position: relative;
}

.hero-content .title h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a56fc0;
}

.subtitle {
  margin-top: 30px;
  font-size: 18px;
  color: #0b2f5b;
}

.text {
  margin: 20px 0 35px;
  color: #333333;
  line-height: 1.6;
}
/*bouton fiche google*/
.bouton {
  display: flex;
  flex-direction: row-reverse;
  align-items: first baseline;
}
.google-reviews-btn {
  display: inline-block;
  gap: 10px;
  padding: 20px 10px;
  border: 1px solid #d8d8db; /* vert */
  gap: 20px;
  margin-left: 20px;
  border-radius: 8px;
  background-color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  transition: all 0.2s ease-in-out;
}
.google-reviews-btn span {
  margin-right: 5px;
}
a .stars {
  color: #f4b400; /* jaune Google */
  font-size: 16px;
  letter-spacing: 1px;
}

.reviews-text {
  font-size: 14px;
}

.google-logo {
  font-weight: 700;
  color: #0074b7; /* bleu Google */
}

/* RESPONSIVE HERO TABLETTE*/
@media (max-width: 1024px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
/* RESPONSIVE HERO MOBILE*/
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-content .title h1 {
    font-size: 25px;
    font-weight: bold;
  }

  .hero-content .title h2 {
    font-size: 18px;
  }
  .bouton {
    flex-direction: column;
    gap: 20px;
  }
  .subtitle {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}
/*
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 span::after {
    left: 50%;
    transform: translateX(-50%);
  }
}*/

/*le Responsive*/
/* logo" Tablette (écran jusqu'à 1024px) */
@media (max-width: 1024px) {
  .logo-container img {
    max-width: 160px; /* limite la taille du logo sur tablette */
  }
}

/* Mobile (écran jusqu'à 768px) */
@media (max-width: 768px) {
  .logo-container img {
    max-width: 130px; /* limite la taille du logo sur mobile */
  }
}

/*hero version mobile
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}*/

/*separateur*/
.separator-section {
  background-color: #eaf6fb; /* EXACTEMENT la même couleur */
  display: flex;
  justify-content: center;
}

/* Ligne */
.separator-line {
  width: 200px;
  height: 2px;
  background-color: #1fa3d6; /* bleu principal */
  position: relative;
}

/* Point central */
.separator-dot {
  width: 10px;
  height: 10px;
  background-color: #a56fc0; /* violet accent */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*  =================
    services de nettoyage
====================*/
.services-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.services p {
  font-size: 1.06rem;
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services .cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.services .cta .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 320px;
}

/* RESPONSIVE SERVICES PAERIE CONTENT TABLETTE*/
@media (max-width: 1024px) {
  .services .cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .services .cta .btn {
    width: 100%;
  }
}
/* RESPONSIVE SERVICES MOBILE*/
@media (max-width: 768px) {
  .services .cta .btn-responsive {
    display: none;
  }
}
/*--partie carte chaque service--*/
.targets-services {
  padding: 60px 20px;
  text-align: center;
}

.services-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #a56fc0; /* violet principal */
  margin: 10px auto 0;
  border-radius: 2px;
}
/*--- les carte ------*/
.cards-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.card-service {
  max-width: 350px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card-service .card-header {
  background: #f3efff;
  color: #3e8cdb;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  margin-bottom: 20px;
  border-radius: 16px 16px 0 0;
}
.card-service .card-header span {
  max-width: 90%;
  font-size: 16px;
}
.card-service .card-header i {
  font-size: 22px;
}

.card-service .arrow {
  margin-left: 10px;
  font-size: 20px;
}

.card-service p {
  max-width: 90%;
  margin: 10px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

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

@media (max-width: 600px) {
  .cards-services {
    grid-template-columns: 1fr;
  }
}

/*Temoignage client*/
.testimonials {
  background-color: #0074b7; /* #3da1d6; au lieu d’un bleu plus foncé */
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  padding: 80px 0;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel {
  width: 80%;
  margin: auto;
  overflow: hidden; /* masque les slides hors écran */
}

.track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.card {
  width: 800px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #a56fc0;
  border-radius: 12px 0 0 12px;
}

.card h4 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #0074b7;
  font-weight: 600;
}
.quote {
  color: #555;
  font-style: italic;
}

.stars {
  color: #0074b7;
  font-size: 20px;
  margin-top: 15px;
}
.dots {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #ff4fa3;
}
/* ====== TABLETTE temoignage ====== */
@media (max-width: 1024px) {
  .carousel {
    width: 90%;
  }

  .slide {
    gap: 20px;
  }

  .card {
    width: 80%;
  }
}
/* ====== MOBILE temoignage====== */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
  }
}
/* =================
Formulaire de contact
====================*/

.devis {
  padding: 80px 20px;
  background-color: #fff;
}
.devis-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.subtitle {
  font-style: italic;
  color: #444;
}

.devis-info h2 {
  color: #0074b7;
  font-size: 36px;
  margin: 10px 0 40px;
}

.bloc-info {
  margin-bottom: 30px;
}

.bloc-info h4 {
  font-weight: 700;
  margin-bottom: 8px;
}

.devis-form .row {
  display: flex;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.field label {
  font-size: 14px;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  padding: 12px;
  border: 1px solid #222;
  font-size: 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 30px;
}

/* Responsive */
/*responsive tablette*/
@media (max-width: 1024px) {
  .devis-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .devis-info {
    max-width: 600px;
  }

  .devis-info h2 {
    font-size: 32px;
  }
}
/*responsive mobile*/
@media (max-width: 768px) {
  .devis {
    padding: 60px 15px;
  }

  .devis-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .devis-form .row {
    flex-direction: column;
    gap: 0;
  }

  .field input,
  .field textarea {
    font-size: 16px; /* meilleur clavier mobile */
  }

  .checkbox {
    align-items: flex-start;
  }
  .devis-form button {
    width: 100%;
  }
}

/* background separator*/
.background-separator {
  background-color: #fff;
}

/*--------carte google maps-------*/
.map-section {
  text-align: center;
  padding: 30px 0 60px;
  background-color: #fff;
}

.map-container {
  max-width: 1200px; /* adapte à ton site */
  margin: 0 auto; /* CENTRAGE */
  padding: 0 20px; /* marge mobile */
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
.cta-section {
  background: #0e6ba8; /* ton bleu */
  padding: 60px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.cta-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #a06cd5; /* ton violet */
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #8c5cc3;
  transform: translateY(-2px);
}

/*========================  
  Page Nettoyage vitres 
 =========================*/
.services-section {
  margin: 60px 0;
}

.services-section .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

/*===-----COLONNE GAUCHE------===*/
/*Description*/
.intro {
  margin: 12px 0 25px;
  max-width: 680px;
}

/*Image*/
.main-image {
  display: block;
  margin: 25px auto;
  max-width: 100%;
  border-radius: 50px;
}

/* LISTES */
.check-list,
.icon-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a859;
  font-weight: bold;
}

.icon-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.icon-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #007c89;
}
.btn-colonne-left {
  margin-top: 40px;
}
/*===------- COLONNE DROITE ---------===*/
/* CARTES */
.section-card {
  border-radius: 50px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* CARTE DEVIS */
.quote-card {
  background: #f9f9f9;
}

/* TITRE BOUTON VIOLER */
.quote-title {
  background: #a56fc0;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: bold;
}

/* FORMULAIRE */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.quote-form input,
.quote-form textarea {
  border: none;
  padding: 16px;
  border-radius: 50px;
  background: white;
  font-size: 14px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quote-form textarea {
  border-radius: 20px;
  min-height: 120px;
  resize: none;
}

/* BOUTON DEVIS*/
.quote-form button {
  font-size: 16px;
  margin-top: 10px;
  background: #a56fc0;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}
.quote-form button:hover {
  background: #8f58a5;
  transform: translateY(-2px);
}
/*services carte*/
.other-services-card {
  background: #0074b7;
  color: white;
}

.other-services-title {
  background: white;
  color: #111827;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
}

.other-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-services-list a {
  padding: 14px 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.other-services-list a:last-child {
  border-bottom: none;
}

/* Icône flèche */
.other-services-list a::before {
  content: "➜";
  font-size: 18px;
  color: white;
}

/* CARTE CONTACT */
.contact-card {
  background: #f8f8f8;
}

.contact-item {
  display: flex;

  gap: 15px;
  margin-bottom: 15px;
}

.contact-item .icon {
  width: 60px;
  height: 60px;
  background: #a56fc0;
  font-size: 29px;
}
.contact-item strong {
  font-size: 22px;
}

/*Responsive tablette page service nettoyage-vitre*/
@media (max-width: 1024px) {
  .services-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*Responsive mobile page service nettoyage-vitre*/
@media (max-width: 768px) {
  .services-section {
    margin: 40px 0;
  }

  .services-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .right {
    order: -1;
  }
  h2 {
    font-size: 22px;
    text-align: center;
  }

  h3 {
    font-size: 18px;
  }

  p,
  li {
    font-size: 15px;
    line-height: 1.6;
  }

  .main-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
  }

  .section-card {
    padding: 22px;
    border-radius: 25px;
  }

  .quote-title {
    font-size: 17px;
    padding: 12px;
  }

  .other-services-title {
    font-size: 16px;
  }

  .quote-form button {
    width: 100%;
  }
}

/*==================
 Section Pricing
======================*/
.pricing-section {
  margin-bottom: 60px;
}
.pricing-section .container {
  text-align: center;
}
.pricing-section h2 {
  text-align: center;
}

.pricing-note {
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pricing-grid h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}

/* CARD */
.price-card {
  background: white;
  text-align: center;
  padding: 26px 24px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  border: 1px solid #eef2f7;
}
.price-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

/* TITLE */
.price-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PRICE TEXT */
.price-text {
  font-size: 22px;
  font-weight: 900;
  color: #0284c7;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

/* SUBTEXT */
.price-card span {
  font-size: 14px;
  color: #64748b;
}

/* HIGHLIGHT CARD */
.price-card.highlight {
  border: 2px solid #a56fc0;
  background: linear-gradient(180deg, #fffdf3, #ffffff);
  transform: scale(1.04);
}

/* BONUS NOTE */
.bonus-note {
  margin-top: 35px;
  font-weight: 600;
  color: #0284c7;
  text-align: center;
}
.pricing-cta {
  text-align: center;
  margin-top: 45px;
}

/* ==================
   RESPONSIVE PRICING
================== */

/* TABLETTE */
@media (max-width: 1024px) {
  .pricing-grid {
    gap: 18px;
  }

  .price-card {
    padding: 22px;
  }

  .pricing-section h2 {
    font-size: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-section {
    margin-bottom: 40px;
  }
  .pricing-section h2 {
    font-size: 26px;
  }
  .pricing-note {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    padding: 22px;
    border-radius: 16px;
  }

  .price-card h3 {
    font-size: 17px;
  }

  .price-text {
    font-size: 18px;
  }

  .bonus-note {
    font-size: 14px;
  }
}
/*================ 
section pourquoi nous choisir  
====================*/
.why-section {
  background-color: #0074b7; /* #3da1d6; au lieu d’un bleu plus foncé */
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0;
}

.why-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 45px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center; /* CENTRAGE */
}

/* Carte */
.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  background: #f9fafb;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icône ronde */
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #a56fc0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Texte */
.why-text h3 {
  font-size: 16px;
  margin-bottom: 1px;
  font-weight: 700;
}

.why-text p {
  font-size: 14px;
  color: #64748b;
}
/*responsive mobile pourquoi nous choisir*/
@media (max-width: 768px) {
  .why-item {
    border-radius: 24px;
    flex-direction: row;
    align-items: flex-start;
  }
  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .why-section h2 {
    font-size: 24px;
  }
}

/*========================  
  Page Nettoyage fin chantier 
 =========================*/
/*bouton colonne left
.left .btn-cta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.left .btn-cta .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .left .btn-cta {
    flex-direction: column;
    align-items: center;
  }
  .left .btn-cta .btn {
    width: 100%;
  }
}*/

/*FOOTER*/
.footer {
  background-color: #0b5fb3;
  color: #ffffff;
  padding: 40px 80px;
}

.footer-container {
  display: flex;
  align-items: flex-start; /* 🔥 ALIGNEMENT EN HAUT */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/*bloc logo + adresse*/
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex: 0 0 320px; /* largeur fixe */
}

.footer-logo img {
  max-width: 140px;
  margin-right: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.footer-block h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
}
/*bloc services*/
.footer-block .links {
  display: flex;
  flex-direction: column;
  gap: 6px; /* espace propre entre les services */
}

.footer-block .links a {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-block .links a:hover {
  text-decoration: underline;
  transform: translateX(3px);
}
/*---bloc sociale facebook---*/

/*.social-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}*/

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #a56fc0;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  color: #0074b7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.social-btn:hover {
  background-color: #8f58a5;
  transform: translateY(-2px);
}

/*-- Contact --*/

.footer-block a {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-block .email-link:hover {
  text-decoration: underline;
}
/*bottom footer*/
.footer-copy {
  width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copy p,
.footer-copy a {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: bold;
}
.footer-copy a:hover {
  text-decoration: underline;
}
.footer-copy .createur {
  color: #ff6aa2;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 50px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }

  /*bloc logo + adresse*/
  .footer-logo {
    flex-direction: column;
    flex: 0 0 0; /* largeur fixe */
  }

  .footer-copy {
    justify-content: center;
  }
}
