:root {
  /* Palette fournie */
  --brand-yellow: #FBBA00;
  --brand-green: #5FB842;
  --brand-olive: #B3C72B;
  --brand-rose: #DB5E60;
  --color-text: #111;
  --color-bg: #fff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { 
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  color: var(--color-text); 
  background: var(--color-bg); 
}

/* Header */
.site-header {
  position: sticky; 
  top: 0; 
  background: #fff; 
  border-bottom: 1px solid rgba(0,0,0,0.06); 
  z-index: 10; 
}
.header__logos { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: clamp(8px, 1.2vh, 14px) clamp(16px, 3vw, 32px); 
}
.header__logo { display: inline-flex; align-items: center; }
/* Hauteurs fixes par logo (desktop) */
.header__logo--ppf img { height: 54px; width: auto; display: block;
  width: 100%; }
.header__logo--mpr img { height: 95px; width: auto; display: block;
  width: 100%; }
.header__logo--cee img { height: 64px; width: auto; display: block;
  width: 100%; }

/* Groupe à droite */
.header__right { display: inline-flex; align-items: center; gap: 8px; }

/* Téléphone dans le header */
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: #111;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
}
.header__phone::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--brand-yellow);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  flex-shrink: 0;
}

/* Bouton Simulez vos économies dans le header */
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  color: #111;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(251,186,0,0.3);
  white-space: nowrap;
}
.header__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251,186,0,0.4);
  filter: brightness(1.05);
}
.header__btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .header__logo--ppf img { height: 52px; }
  .header__logo--mpr img { height: 48px; }
  .header__logo--cee img { height: 52px; }
  .header__phone { display: none; }
  .header__btn { display: none; }
}

@media (max-width: 900px) {
  .header__phone { display: none; }
  .header__btn { display: none; }
}


/* Section 1 */
.section-hero { position: relative; isolation: isolate; }
.section-hero__bg {
  min-height: clamp(70vh, 78vh, 88vh);
  background-image: url("../assets/images/section-1/photo-avec-ordinateur2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05);
}
/* Fallback PNG pour navigateurs sans WebP */
.no-webp .section-hero__bg {
  background-image: url("../assets/images/section-1/photo-avec-ordinateur2.jpg");
}
.section-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(16px, 4vw, 40px);
  color: #fff;
}

/* Copie principale */
.hero-copy { max-width: min(900px, 90vw); }
.hero-label {
  display: inline-block;
  background: var(--brand-yellow);
  color: #fff; /* texte blanc */
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: clamp(32px, 4.5vw, 58px); /* plus grand que le titre principal */
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
}
.hero-title {
  margin: 16px 0 0;
  font-weight: 400; /* normal par défaut */
  line-height: 1.12;
  font-size: clamp(26px, 3.8vw, 48px); /* un peu plus petit */
  text-shadow: 0 1px 0 rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.35);
}
.hero-title .highlight { 
  color: #fff; 
  font-weight: 800; /* bien mettre en avant le 90% */
}
.hero-title .strong {
  font-weight: 800; /* gras uniquement sur le texte important */
}

/* Barre de recherche */
.hero-search {
  margin-top: clamp(18px, 3vw, 28px);
  position: relative; /* pour positionner le bouton dedans */
  width: min(600px, 90%); /* réduit de 880px à 700px */
}
.hero-search input {
  width: 100%; /* prend toute la largeur */
  height: clamp(54px, 8vh, 76px); /* augmenté de 46px-64px à 54px-76px */
  padding: 0 18px;
  padding-right: clamp(150px, 22vw, 260px); /* réserve l'espace pour le bouton à droite */
  border-radius: 999px;
  border: none; /* pas de bordure pour la section 1 */
  outline: none;
  font-size: clamp(16px, 1.6vw, 20px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.35), inset 0 0 0 2px rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.92);
  color: #111;
}
.hero-search input::placeholder { color: rgba(0,0,0,0.55); }

.btn-cta {
  position: absolute; /* positionné dans le champ */
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: calc(clamp(50px, 8vh, 50px) - 8px); /* ajusté pour correspondre à la nouvelle hauteur */
  padding: 0 clamp(16px, 2.2vw, 28px);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 20px);
  background: var(--brand-yellow);
  color: #111;
  box-shadow: 0 10px 24px rgba(251,186,0,0.45);
  white-space: nowrap; /* éviter le retour à la ligne du libellé */
}
.btn-cta:hover { filter: brightness(1.03); }
.btn-cta:active { transform: translateY(1px); }


/* ========= Section 2 : 4 raisons ========= */
.section-benefits {
  background: #fff;
  /* on colle au bord gauche */
  padding: clamp(28px, 6vw, 64px) clamp(16px, 5vw, 48px) clamp(28px, 6vw, 64px) 0;
  overflow: visible;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 45% 5% 50%; /* image, espace, cartes */
  gap: 0;
  align-items: stretch;
}
.benefit-space {
  background: #fff;
}

/* Bloc gauche : grand visuel */
.benefit-hero {
  margin: 0;
  position: relative;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.benefit-hero img {
  display: block;
  width: 90%;
  max-width: 75vw;
  height: auto;
  object-fit: contain;
  position: relative;
  left: calc(-1 * clamp(16px, 5vw, 48px));
}

/* Colonne droite : grille 2x2 de cartes */
.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.2vw, 24px);
}

.benefit-card {
  margin: 0;
  position: relative;
}

.benefit-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Texte par-dessus l'image */
.benefit-card figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(18px, 2.5vw, 28px);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card h3 {
  margin: 0;
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.15;
  font-weight: 800;
  text-align: left;
  max-width: 75%;
}

.benefit-card p {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.4;
  font-weight: 450;
  color: white;
  max-width: 90%;
  align-self: flex-start;
}

/* Texte par-dessus l'image de fond dans la colonne gauche */
.benefit-hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vw, 40px);
  color: white;
  z-index: 1;
}

.hero-number {
  font-size: clamp(120px, 11vw, 200px);
  font-weight: 800;
  color: white;
  line-height: 0.8;
  margin-right: clamp(10px, 2vw, 20px);
}

.hero-text {
  flex: 1;
}

.hero-text-line1,
.hero-text-line2,
.hero-text-line3 {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin: 0;
}

.hero-text-line4,
.hero-text-line5 {
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin: 0;
}

/* ========= Section 3 : Image de fond ========= */
.section-background {
  background-image: url("../assets/images/Section-3/photo%20avec%20un%20casque.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
}
/* Fallback PNG pour navigateurs sans WebP */
.no-webp .section-background {
  background-image: url("../assets/images/Section-3/photo%20avec%20un%20casque.png");
}

.section-background__content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px);
  max-width: 1920px;
  margin: 0 auto;
}

/* Contenu de la section 3 */
.section3-copy {
  max-width: 800px;
  width: 100%;
}

.section3-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 clamp(20px, 3vw, 32px) 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.section3-subtitle-container {
  background: var(--brand-rose);
  color: white;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  margin-bottom: clamp(12px, 2vw, 16px);
  display: inline-block;
  box-shadow: 0 8px 20px rgba(219,94,96,0.35);
}

.section3-subtitle {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  margin: 0;
}

.section3-description {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 400;
  color: white;
  margin: 0 0 clamp(20px, 3vw, 32px) 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.btn-estimate {
  background: var(--brand-yellow);
  color: white;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
  transition: transform 0.2s ease;
}

.btn-estimate:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(251,186,0,0.5);
}

/* ========= Section 4 : Le spécialiste ========= */
.section-specialist {
  background: var(--brand-yellow);
  padding: clamp(55px, 9vh, 75px) clamp(40px, 6vw, 80px);
  border-radius: clamp(45px, 8vw, 85px);
  margin: clamp(25px, 4vw, 40px) auto;
  max-width: 1920px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
}

.section4-content {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section4-header {
  margin-bottom: clamp(15px, 2vh, 20px);
  text-align: center;
}

.section4-title {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  color: white;
  line-height: 1.2;
  margin: 0;
}

.section4-title-highlight {
  font-weight: 800;
  color: #111;
}

.section4-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(15px, 3vw, 40px);
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
}
 
.feature-item {
  text-align: center;
  padding: clamp(2px, 0.5vw, 4px);
}

.feature-icon {
  margin-bottom: clamp(6px, 1vw, 10px);
  height: clamp(85px, 13vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.feature-title {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 800;
  color: #111;
  margin-bottom: clamp(2px, 0.3vw, 4px);
  line-height: 1.1;
}

.feature-desc {
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

/* Responsive pour section 4 */
@media (max-width: 1200px) {
  .section4-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2.4vw, 20px);
  }
}

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

@media (max-width: 500px) {
  .section4-features {
    grid-template-columns: 1fr;
  }
}

/* ========= Section 5 : Besoin de rénovation ========= */
.section-need {
  background: #fff;
  padding: clamp(40px, 8vh, 80px) clamp(20px, 4vw, 40px) clamp(5px, 1vh, 8px);
  text-align: center;
}

.section5-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.section5-title {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.section5-highlight {
  color: var(--brand-yellow);
  font-weight: 800;
}

/* Responsif */

/* ========= Section 6 : Google + Maison ========= */
.section-google {
  background: #fff;
  padding: clamp(2px, 0.5vh, 5px) clamp(20px, 4vw, 40px) clamp(30px, 8vh, 80px);
}

.section6-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr; /* texte | google | maison */
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  position: relative;
}

.section6-left {
  text-align: left;
}

.section6-label {
  display: inline-block;
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: clamp(16px, 2.2vw, 24px);
  box-shadow: 0 8px 20px rgba(251,186,0,0.35);
}

.section6-title {
  margin: clamp(10px, 1.5vw, 16px) 0 0 0;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.section6-center {
  text-align: center;
}
.section6-google { 
  max-width: clamp(200px, 20vw, 320px);
  width: 100%;
  height: auto;
}

.section6-right { text-align: right; }
.section6-house {
  max-width: clamp(320px, 36vw, 600px);
  width: 100%;
  height: auto;
}

/* Flèche positionnée en bas milieu, pointe vers le bloc Google */
.section6-arrow {
  position: absolute;
  left: 35%;
  bottom: clamp(-6px, -1.5vh, -22px);
  transform: translateX(-50%);
  width: clamp(300px, 16vw, 260px);
  height: auto;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .section6-content {
    grid-template-columns: 1fr 1fr; /* texte + google / maison en dessous */
  }
  .section6-right { grid-column: 1 / -1; text-align: center; }
  .section6-house { max-width: clamp(320px, 70vw, 820px); }
  .section6-arrow { left: 50%; bottom: -10px; }
}

@media (max-width: 640px) {
  .section6-content {
    grid-template-columns: 1fr; /* empile tout */
    gap: clamp(12px, 4vw, 20px);
  }
  .section6-center { order: 2; }
  .section6-right { order: 3; }
  .section6-arrow { display: none; }
  .section6-title { font-size: clamp(18px, 6vw, 28px); }
}

/* ========= Section 7 : Adresse + Bouton ========= */
.section-address {
  background: #fff;
  padding: clamp(36px, 8vh, 80px) clamp(20px, 5vw, 48px);
}

.section7-content {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}

.address-form {
  position: relative; /* pour positionner le bouton dedans */
}

/* Champ de saisie: bordure noire, sans ombre */
.address-input {
  width: 100%;
  height: clamp(52px, 7vh, 68px);
  padding: 0 clamp(16px, 2vw, 20px);
  padding-right: clamp(150px, 22vw, 260px); /* réserve l’espace pour le bouton à droite */
  border: 2px solid #111;
  border-radius: 999px;
  outline: none;
  background: #fff;
  color: #111;
  font-size: clamp(16px, 1.8vw, 20px);
  box-shadow: none; /* pas d’ombre */
}
.address-input::placeholder { color: rgba(0,0,0,0.55); }

/* Bouton à l’intérieur, collé à droite */
.address-button {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: calc(clamp(52px, 7vh, 68px) - 8px); /* un peu plus petit que l’input */
  padding: 0 clamp(16px, 2.2vw, 28px);
  border-radius: 999px;
  border: 2px solid #ffffff; /* même bordure que l’input pour fusion visuelle */
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 18px);
  cursor: pointer;
  box-shadow: none; /* pas d’ombre */
  white-space: nowrap; /* éviter le retour à la ligne du libellé */
}
.address-button:hover { filter: brightness(1.03); }
.address-button:active { transform: translateY(-50%) scale(0.995); }

/* Mobile: la réserve à droite est plus petite, bouton pleine largeur si besoin */
@media (max-width: 520px) {
  .address-input {
    padding-right: clamp(120px, 36vw, 180px);
  }
}

/* ========= Autocomplétion d'adresses Google Places ========= */

/* Assurer que les conteneurs de formulaires ont une position relative */
.hero-search,
.address-form {
  position: relative;
}

/* Style simple pour les suggestions Google Places */
.pac-container {
  font-family: 'Poppins', sans-serif !important;
  z-index: 1000 !important;
}
@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* on empile */
  }
  .benefit-hero {
    min-height: 360px; /* garde un bon impact visuel */
  }
}

@media (max-width: 680px) {
  .benefit-cards {
    grid-template-columns: 1fr; /* cartes en colonne sur mobile */
  }
  .benefit-card { min-height: 200px; }
}

/* ========= Section 8 : Témoignages ========= */
.section-testimonials {
  background: var(--brand-yellow);
  padding: clamp(50px, 10vh, 90px) clamp(20px, 4vw, 40px);
}

.section8-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.section8-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #111;
  text-align: center;
  margin: 0 0 clamp(40px, 6vh, 60px) 0;
  line-height: 1.2;
}

/* Container du carrousel */
.testimonials-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  width: 100%;
}

/* Boutons de navigation */
.testimonial-nav {
  background: rgba(255,255,255,0.9);
  border: 2px solid rgba(0,0,0,0.1);
  width: clamp(50px, 7vw, 70px);
  height: clamp(50px, 7vw, 70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  padding: 0;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: white;
  border-color: var(--brand-yellow);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--brand-yellow);
}

.testimonial-nav:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

/* Slider container */
.testimonials-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  width: 100%;
  padding: 20px 0; /* Espace pour le zoom sans couper */
}

.testimonials-track {
  display: flex;
  gap: clamp(24px, 3vw, 40px); /* Augmenté pour plus d'espace : 24-40px */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 4px; /* Petit espace pour éviter la coupure sur les côtés */
}

/* Cartes témoignages */
.testimonial-card {
  background: white;
  border-radius: 18px; /* Légèrement augmenté */
  padding: clamp(26px, 4vw, 36px); /* Encore plus de padding */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
  min-height: 280px; /* Augmenté de 260px à 280px pour plus de hauteur */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Répartir le contenu */
}

.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015); /* Zoom réduit de 1.02 à 1.015 */
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: var(--brand-yellow);
  background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
  z-index: 10; /* Passe au-dessus des autres cartes */
}

.testimonial-card:hover .testimonial-name {
  color: var(--brand-yellow);
}

.testimonial-card:hover .star {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(255,215,0,0.3));
}

.testimonial-card:active {
  transform: translateY(-2px) scale(1.01);
  transition: all 0.1s ease;
}

/* Header avec avatar et info */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px; /* Augmenté de 12px à 14px */
  margin-bottom: 14px; /* Augmenté de 12px à 14px */
}

.testimonial-avatar {
  width: 52px; /* Augmenté de 48px à 52px */
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px; /* Augmenté de 18px à 20px */
  color: white;
  background: #666;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.testimonial-avatar--orange { background: #FF6B35; }
.testimonial-avatar--purple { background: #8B5CF6; }
.testimonial-avatar--green { background: #10B981; }
.testimonial-avatar--blue { background: #3B82F6; }
.testimonial-avatar--pink { background: #EC4899; }

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-letter {
  font-size: 22px; /* Augmenté de 20px à 22px */
  font-weight: 700;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 17px; /* Augmenté de 16px à 17px */
  font-weight: 700;
  color: #111;
  margin-bottom: 3px; /* Augmenté de 2px à 3px */
  transition: color 0.3s ease;
}

.testimonial-date {
  font-size: 14px;
  color: #666;
}

/* Rating étoiles */
.testimonial-rating {
  margin-bottom: 14px; /* Augmenté de 12px à 14px */
}

.star {
  color: #FFD700;
  font-size: 20px; /* Augmenté de 18px à 20px */
  margin-right: 3px; /* Augmenté de 2px à 3px */
  transition: all 0.2s ease;
  display: inline-block;
}

/* Texte du témoignage */
.testimonial-text {
  font-size: 15px; /* Augmenté de 14px à 15px */
  line-height: 1.5; /* Augmenté de 1.4 à 1.5 */
  color: #333;
  margin: 0;
  flex-grow: 1; /* Prend l'espace restant */
}



/* Responsive pour témoignages */
/* Le JavaScript gère déjà l'affichage de 4 cartes sur desktop */
/* On ajuste juste les boutons de navigation pour mobile/tablette */

@media (max-width: 1023px) {
  .testimonial-nav {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .testimonials-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .testimonial-nav {
    display: none;
  }
  
  .testimonials-slider {
    border-radius: 16px;
  }
  
  .section8-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}

/* ========= Section 9 : Conseils & Astuces ========= */
.section-tips {
  background: #fff;
  padding: clamp(50px, 10vh, 90px) clamp(20px, 4vw, 40px);
}

.section9-content {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.section9-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 clamp(40px, 6vh, 60px) 0;
  line-height: 1.2;
}

.section9-highlight {
  background: var(--brand-yellow);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 20px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(251,186,0,0.3);
}

/* Grille des articles */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(24px, 4vw, 40px);
  justify-items: center;
}

/* Cartes d'articles */
.tip-card {
  background: white;
  border: 3px solid #111;
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: var(--brand-yellow);
}

/* Image de l'article */
.tip-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tip-card:hover .tip-image img {
  transform: scale(1.05);
}

/* Contenu de l'article */
.tip-content {
  padding: clamp(20px, 3vw, 28px);
}

.tip-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(12px, 1.5vw, 16px) 0;
  line-height: 1.3;
}

.tip-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.tip-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-yellow);
}

.tip-category {
  font-size: 13px;
  font-weight: 500;
  color: #666;
}

.tip-description {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.5;
  color: #333;
  margin: 0;
  font-weight: 400;
}

/* Responsive pour conseils */
@media (max-width: 1200px) {
  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(20px, 3vw, 30px);
  }
}

@media (max-width: 800px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 25px);
  }
  
  .tip-card {
    max-width: 100%;
  }
  
  .section9-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

@media (max-width: 400px) {
  .tip-image {
    height: 200px;
  }
}

/* ========= Section 11 : Contact & Footer ========= */
.section-contact {
  position: relative;
  min-height: 70vh;
  isolation: isolate;
  border-radius: 0;
  overflow: hidden;
}

.section11-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/Section-11/photo de Cannes.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.1) brightness(0.95);
  border-radius: 0;
}
/* Fallback PNG pour navigateurs sans WebP */
.no-webp .section11-bg {
  background-image: url("../assets/images/Section-11/photo de Cannes.png");
}

.section11-overlay {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(25px, 4vh, 45px) clamp(25px, 4vw, 60px);
}

/* Carte de contact */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: clamp(30px, 4vw, 50px);
  max-width: 450px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(20px, 3vh, 30px) 0;
  text-align: left;
}

/* Informations de contact */
.contact-info {
  margin-bottom: clamp(25px, 4vh, 35px);
}

.contact-address {
  margin-bottom: clamp(15px, 2vh, 20px);
}

.contact-address div {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: #111;
  line-height: 1.4;
  margin-bottom: 2px;
}

.contact-phone {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

.phone-label {
  color: #111;
}

.phone-number {
  color: #FBBA00;
  font-weight: 700;
}

/* Horaires d'ouverture */
.hours-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: #111;
  margin: 0 0 clamp(20px, 3vh, 25px) 0;
  text-align: left;
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 12px);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  color: #111;
  line-height: 1.3;
  min-height: 24px;
}

.day {
  font-weight: 600;
  color: #111;
  flex-shrink: 0;
  width: 80px;
}

.times {
  color: #111;
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive pour section contact */
@media (max-width: 1200px) {
  .section11-overlay {
    justify-content: center;
    padding: clamp(20px, 3vh, 35px) clamp(20px, 4vw, 40px);
  }
  
  .contact-card {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .section-contact {
    min-height: 60vh;
  }
  
  .section11-overlay {
    min-height: 60vh;
    align-items: flex-start;
    padding-top: clamp(30px, 6vh, 50px);
  }
  
  .contact-card {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
  }
  
  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .day {
    width: auto;
  }
  
  .times {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: clamp(20px, 5vw, 30px);
    border-radius: 20px;
  }
  
  .section-contact {
    min-height: 55vh;
  }
  
  .section11-overlay {
    min-height: 55vh;
  }
  
  .section11-bg {
    background-position: center bottom;
    border-radius: 0;
  }
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS - STRUCTURE       */
/* Préserve 1920x1200 comme référence       */
/* ========================================= */

/* 1920-2559px : DESIGN DE RÉFÉRENCE */
@media (min-width: 1920px) {
  /* Section 2 - Ajustements pour les grands écrans */
  
  /* Cartes de droite */
  .benefit-card h3 {
    max-width: 55%;
    font-size: clamp(24px, 1.5vw, 38px);
    margin-top: 12px;
  }
  
  .benefit-card p {
    font-size: clamp(17px, 1.05vw, 27px);
    max-width: 85%;
    margin-bottom: 12px;
  }
  
  .benefit-card figcaption {
    padding: 20px;
  }
  
  /* Bloc gauche - texte et image responsive */
  .benefit-hero img {
    width: clamp(85%, 4vw, 95%);
  }
  
  .hero-number {
    font-size: clamp(140px, 12vw, 220px);
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3 {
    font-size: clamp(28px, 2.8vw, 54px);
  }
  
  .hero-text-line4,
  .hero-text-line5 {
    font-size: clamp(28px, 2.8vw, 54px);
  }
}

/* ≥ 2560px : Très grands écrans - Centrer le contenu */
@media (min-width: 2560px) {
  body {
    background: #f5f5f5;
  }
  
  .section-hero,
  .section-benefits,
  .section-background,
  .section-specialist,
  .section-need,
  .section-google,
  .section-address,
  .section-testimonials,
  .section-tips {
    max-width: 2560px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 1200-1919px : Desktop large - Layout horizontal compact */
@media (max-width: 1919px) and (min-width: 1200px) {
  .section-benefits {
    padding-left: clamp(12px, 2.5vw, 24px);
  }
  
  /* Grid 2 colonnes - supprimer les 3% d'espace */
  .benefits-grid {
    grid-template-columns: 47% 53%;
  }
  
  .benefit-space {
    display: none;
  }
  
  /* Cartes droite - texte réduit pour gagner de la place */
  .benefit-card h3 {
    font-size: clamp(18px, 1.4vw, 24px);
  }
  
  .benefit-card p {
    font-size: clamp(14px, 1vw, 17px);
  }
}

/* 1024-1199px : Passage en mode vertical (texte centré + cartes) */
@media (max-width: 1199px) and (min-width: 1024px) {
  /* Header adapté */
  .header__logos {
    padding: clamp(12px, 2vh, 22px) clamp(14px, 2.5vw, 28px);
  }
  
  .header__logo--ppf img { height: 48px; }
  .header__logo--mpr img { height: 82px; }
  .header__logo--cee img { height: 58px; }
  
  /* Hero légèrement ajusté */
  .hero-label {
    font-size: clamp(30px, 4.2vw, 52px);
  }
  
  .hero-title {
    font-size: clamp(24px, 3.6vw, 44px);
  }
  
  /* Section 2 - Layout vertical avec texte centré */
  .section-benefits {
    padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 4vw, 48px);
  }
  
  .benefit-space {
    display: none;
  }
  
  .benefit-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(24px, 3vw, 40px) 0;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
  }
  
  .hero-number {
    font-size: clamp(80px, 10vw, 120px);
    color: #111;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3 {
    font-size: clamp(24px, 3vw, 36px);
    color: #111;
  }
  
  .hero-text-line4,
  .hero-text-line5 {
    font-size: clamp(24px, 3vw, 36px);
    color: #111;
  }
  
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 28px);
  }
  
  /* Section 4 - 3 colonnes au lieu de 5 */
  .section4-features {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3.5vw, 32px);
  }
  
  /* Section 6 - réorganiser */
  .section6-content {
    grid-template-columns: 1fr auto;
    gap: clamp(20px, 3vw, 32px);
  }
  
  .section6-right {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .section6-arrow {
    display: none;
  }
}

/* 768-1023px : Tablettes portrait */
@media (max-width: 1023px) and (min-width: 768px) {
  /* Header tablette */
  .header__logo--ppf img { height: 44px; }
  .header__logo--mpr img { height: 72px; }
  .header__logo--cee img { height: 52px; }
  
  /* Hero tablette */
  .section-hero__bg {
    min-height: 60vh;
  }
  
  .hero-label {
    font-size: clamp(26px, 5vw, 38px);
    padding: 8px 18px;
  }
  
  .hero-title {
    font-size: clamp(20px, 4.2vw, 34px);
  }
  
  .hero-search {
    width: min(540px, 95%);
  }
  
  /* Section 2 - Texte centré + cartes 2x2 */
  .section-benefits {
    padding: clamp(32px, 5vw, 48px) clamp(20px, 3vw, 32px);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }
  
  .benefit-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 3vw, 32px) 0;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
  }
  
  .hero-number {
    font-size: clamp(70px, 12vw, 100px);
    color: #111;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3 {
    font-size: clamp(20px, 4vw, 32px);
    color: #111;
  }
  
  .hero-text-line4,
  .hero-text-line5 {
    font-size: clamp(20px, 4vw, 32px);
    color: #111;
  }
  
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
  }
  
  .benefit-card {
    min-height: 220px;
  }
  
  /* Section 3 */
  .section-background {
    min-height: 60vh;
  }
  
  /* Section 4 - 2 colonnes */
  .section4-features {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(18px, 3vw, 28px);
  }
  
  /* Section 6 - tout en colonne */
  .section6-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .section6-left {
    text-align: center;
  }
  
  /* Section 9 - articles empilés */
  .tips-grid {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
  }
}

/* ≤ 767px : Mobile (smartphones) */
@media (max-width: 767px) {
  /* Header mobile ultra compact */
  .header__logos {
    padding: 8px 12px;
  }
  
  .header__logo--ppf img { height: 40px; }
  .header__logo--mpr img { height: 62px; }
  .header__logo--cee img { height: 46px; }
  
  .header__right {
    gap: 6px;
  }
  
  /* Hero mobile */
  .section-hero__bg {
    min-height: 55vh;
    background-position: center center;
  }
  
  .section-hero__overlay {
    padding: 20px 16px;
    text-align: center;
  }
  
  .hero-copy {
    max-width: 100%;
  }
  
  .hero-label {
    font-size: clamp(20px, 6.5vw, 28px);
    padding: 8px 16px;
  }
  
  .hero-title {
    font-size: clamp(18px, 5.5vw, 26px);
    line-height: 1.3;
    margin-top: 12px;
  }
  
  .hero-search {
    width: 100%;
    margin-top: 20px;
  }
  
  .hero-search input {
    height: clamp(50px, 13vw, 64px);
    padding: 0 14px;
    padding-right: clamp(120px, 32vw, 160px);
    font-size: 15px;
  }
  
  .btn-cta {
    height: calc(clamp(50px, 13vw, 64px) - 8px);
    padding: 0 14px;
    font-size: 13px;
  }
  
  /* Section 2 mobile - Texte centré + cartes verticales */
  .section-benefits {
    padding: clamp(28px, 6vw, 40px) 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 32px);
  }
  
  .benefit-space {
    display: none;
  }
  
  .benefit-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(16px, 4vw, 24px) 0;
    min-height: auto;
  }
  
  .benefit-hero img {
    display: none;
  }
  
  .benefit-hero-text {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
    flex-direction: column;
  }
  
  .hero-number {
    font-size: clamp(60px, 15vw, 90px);
    color: #111;
    margin-right: 0;
    margin-bottom: 8px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text-line1,
  .hero-text-line2,
  .hero-text-line3 {
    font-size: clamp(18px, 5vw, 28px);
    color: #111;
  }
  
  .hero-text-line4,
  .hero-text-line5 {
    font-size: clamp(18px, 5vw, 28px);
    color: #111;
  }
  
  .benefit-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-card {
    min-height: 200px;
  }
  
  .benefit-card h3 {
    font-size: clamp(18px, 4.5vw, 22px);
    max-width: 90%;
  }
  
  .benefit-card p {
    font-size: clamp(14px, 3.8vw, 16px);
    max-width: 90%;
  }
  
  /* Section 3 mobile */
  .section-background {
    min-height: 55vh;
    background-size: cover;
  }
  
  .section-background__content {
    padding: clamp(28px, 6vh, 50px) 16px;
  }
  
  .section3-title {
    font-size: clamp(26px, 7.5vw, 40px);
  }
  
  .section3-subtitle-container {
    padding: 8px 16px;
  }
  
  .section3-subtitle {
    font-size: clamp(17px, 4.5vw, 22px);
  }
  
  .section3-description {
    font-size: clamp(15px, 4vw, 20px);
  }
  
  .btn-estimate {
    font-size: clamp(17px, 4.5vw, 22px);
    padding: 8px 18px;
  }
  
  /* Section 4 mobile */
  .section-specialist {
    padding: clamp(32px, 7vh, 48px) clamp(20px, 5vw, 28px);
    margin: clamp(20px, 4vw, 28px) 16px;
    border-radius: clamp(24px, 7vw, 48px);
    width: calc(100% - 32px);
  }
  
  .section4-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  
  .section4-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-icon {
    height: clamp(70px, 16vw, 90px);
  }
  
  .feature-title {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .feature-desc {
    font-size: clamp(13px, 3.5vw, 16px);
  }
  
  /* Section 5 mobile */
  .section-need {
    padding: clamp(28px, 7vh, 48px) 16px clamp(10px, 2vh, 16px);
  }
  
  .section5-title {
    font-size: clamp(18px, 5vw, 30px);
  }
  
  /* Section 6 mobile */
  .section-google {
    padding: 16px;
  }
  
  .section6-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .section6-left {
    text-align: center;
  }
  
  .section6-label {
    font-size: clamp(15px, 4.5vw, 20px);
    padding: 8px 14px;
  }
  
  .section6-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  
  .section6-google {
    max-width: 220px;
  }
  
  .section6-house {
    max-width: min(320px, 90vw);
  }
  
  /* Formulaires d'adresse mobile */
  .section-address {
    padding: clamp(28px, 7vh, 48px) 16px;
  }
  
  .section7-content {
    width: 100%;
  }
  
  .address-input {
    height: clamp(50px, 13vw, 60px);
    padding: 0 14px;
    padding-right: clamp(110px, 30vw, 150px);
    font-size: 15px;
  }
  
  .address-button {
    height: calc(clamp(50px, 13vw, 60px) - 8px);
    padding: 0 12px;
    font-size: 13px;
  }
  
  /* Section 8 mobile - témoignages */
  .section-testimonials {
    padding: clamp(32px, 7vh, 48px) 16px;
  }
  
  .section8-content {
    width: 100%;
  }
  
  .section8-title {
    font-size: clamp(22px, 6.5vw, 32px);
    margin-bottom: 28px;
  }
  
  .testimonials-slider {
    border-radius: 16px;
  }
  
  .testimonial-card {
    padding: 18px;
  }
  
  /* Section 9 mobile - conseils */
  .section-tips {
    padding: clamp(32px, 7vh, 48px) 16px;
  }
  
  .section9-content {
    width: 100%;
  }
  
  .section9-title {
    font-size: clamp(22px, 6.5vw, 32px);
    margin-bottom: 28px;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tip-card {
    border-width: 2px;
  }
  
  .tip-image {
    height: 220px;
  }
  
  .tip-content {
    padding: 18px;
  }
  
  .tip-title {
    font-size: clamp(17px, 5vw, 22px);
  }
  
  /* Section 11 mobile - contact */
  .section-contact {
    min-height: 55vh;
  }
  
  .section11-overlay {
    padding: 24px 16px;
    padding-top: 36px;
    min-height: 55vh;
  }
  
  .contact-card {
    padding: 24px;
    border-radius: 18px;
  }
  
  .contact-title {
    font-size: clamp(26px, 7.5vw, 36px);
  }
  
  .contact-address div,
  .contact-phone {
    font-size: clamp(15px, 4vw, 17px);
  }
  
  .hours-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  
  .schedule-row {
    font-size: clamp(13px, 3.8vw, 15px);
  }
}