:root {
  --bg: #eff7ff;
  --bg-alt: #dbeafe;
  --sky: #38bdf8;
  --blue-mid: #2563eb;
  --blue-dark: #1e40af;
  --blue-deep: #0f172a;
  --gray-mid: #64748b;
  --gray-lt: #94a3b8;
  --text: #1e293b;
  --white: #fff;
  --gold: #f5c842
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Barlow, sans-serif;
  overflow-x: hidden;
  text-align: justify
}

nav {
  z-index: 1000;
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--sky);
  background: #eff7fff7;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 44px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px #38bdf81f
}

.logo-nav img {
  object-fit: contain;
  width: auto;
  height: 90px
}

.logo-img-wrap {
  border-radius: 6px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  overflow: visible
}

.logo-img-wrap img {
  display: block
}

.nav-links {
  flex: 1;
  justify-content: center;
  gap: 0;
  list-style: none;
  display: flex
}

.nav-links a {
  color: var(--blue-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 17px;
  font-size: 1.22rem;
  font-weight: 900;
  font-family: Barlow Condensed, sans-serif;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  z-index: 1001;
  pointer-events: auto
}

.nav-links a:hover {
  color: var(--blue-mid)
}

.nav-tel {
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px #1e40af47;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.nav-tel .tel-ico,
.menu-tel .tel-ico,
.btn-primary .tel-ico {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0
}

.nav-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #1e40af70
}

.hero-slider {
  width: 100%;
  height: 55vh;
  min-height: 400px;
  max-height: 600px;
  margin-top: 76px;
  position: relative;
  overflow: hidden
}

.slide {
  opacity: 0;
  align-items: center;
  transition: opacity 1s;
  display: flex;
  position: absolute;
  inset: 0
}

.slide.active {
  opacity: 1
}

.slide-bg {
  position: absolute;
  inset: 0
}

.slide-bg-1 {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 55%, #38bdf8 100%)
}

.slide-bg-2 {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #2563eb 100%)
}

.slide-bg-3 {
  background: linear-gradient(135deg, #164e63 0%, #0ea5e9 55%, #38bdf8 100%)
}

.ph-overlay {
  pointer-events: none;
  border: 3px dashed #ffffff2e;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px;
  display: flex;
  position: absolute;
  inset: 0
}

.ph-overlay .ph-ico {
  opacity: .22;
  font-size: 2.5rem
}

.ph-overlay p {
  color: #fff3;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .76rem
}

.slide-overlay {
  background: linear-gradient(90deg, #0f172ac7 35%, #0f172a1f 100%);
  position: absolute;
  inset: 0
}

.slide-content {
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 0 72px;
  position: relative
}

.slide-badge {
  background: #ef4444;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 700;
  font-family: Barlow, sans-serif;
  line-height: 1.2;
  display: inline-block;
  box-shadow: 0 3px 12px #ef444459
}

.slide-title {
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 12px;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: .95
}

.slide-title .accent {
  color: var(--sky)
}

.slide-desc {
  color: #dbeafee0;
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 1.08rem;
  line-height: 1.65
}

.hero-cta {
  flex-wrap: wrap;
  gap: 14px;
  display: flex
}

.btn-primary {
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
  box-shadow: 0 5px 18px #1e40af52
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px #1e40af7a
}

.btn-secondary {
  text-transform: uppercase;
  color: var(--blue-dark);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 9px;
  padding: 12px 28px;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s
}

.btn-secondary:hover {
  background: #dbeafe;
  border-color: #dbeafe;
  color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3)
}

.slider-dots {
  z-index: 10;
  gap: 10px;
  display: flex;
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%)
}

.dot {
  cursor: pointer;
  background: #ffffff47;
  border: none;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  transition: all .3s
}

.dot.active {
  background: var(--sky);
  transform: scale(1.35);
  box-shadow: 0 0 8px #38bdf8a6
}

.urgence-band {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid), var(--blue-dark));
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  display: flex
}

.urgence-item {
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 14px;
  white-space: nowrap
}

.urgence-item span {
  font-size: 1.2rem
}

section {
  max-width: 1380px;
  margin: 0 auto;
  padding: 56px 60px
}

.section-wrapper {
  background: var(--bg)
}

.section-wrapper-alt {
  background: var(--bg-alt)
}

.section-label {
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 700
}

.section-title {
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1
}

.section-title .accent {
  color: var(--blue-mid)
}

.divider {
  background: linear-gradient(90deg, var(--sky), transparent);
  border-radius: 2px;
  width: 54px;
  height: 4px;
  margin-bottom: 36px
}

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

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

@media (width<=560px) {
  .services-grid {
    grid-template-columns: 1fr
  }
}

.service-card {
  background: var(--white);
  border: 1px solid #38bdf840;
  border-radius: 16px;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 3px 12px #38bdf812
}

.service-card:hover {
  border-color: var(--sky);
  transform: translateY(-6px);
  box-shadow: 0 18px 42px #2563eb21
}

.service-photo {
  background: #dbeafe8c;
  border-bottom: 2px dashed #38bdf847;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 192px;
  display: flex;
  position: relative
}

.ph-tag {
  color: var(--blue-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #38bdf81a;
  border: 1px solid #38bdf84d;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: .62rem;
  position: absolute;
  top: 10px;
  right: 10px
}

.ph-icon-big {
  opacity: .2;
  font-size: 2.2rem
}

.ph-label {
  color: var(--gray-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .66rem
}

.service-body {
  padding: 22px
}

.service-icon-wrap {
  background: linear-gradient(135deg, var(--sky), var(--blue-mid));
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  display: flex
}

.service-name {
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 7px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.22rem;
  font-weight: 800
}

.service-desc {
  color: #0b1220;
  font-size: .95rem;
  line-height: 1.7
}

.stats-section {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  text-align: center;
  border-top: 3px solid var(--sky);
  border-bottom: 3px solid var(--sky);
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 40px 80px;
  display: grid
}

.stat-num {
  color: var(--sky);
  margin-bottom: 5px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 1
}

.stat-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dbeafec7;
  font-size: .74rem;
  font-weight: 600
}

.carousel-section {
  border-top: 1px solid #38bdf826;
  border-bottom: 1px solid #38bdf826;
  padding: 30px 0;
  overflow: hidden
}

.carousel-label {
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 26px;
  font-size: .7rem;
  font-weight: 700
}

.carousel-label span {
  color: var(--blue-mid)
}

.carousel-track-wrap {
  position: relative;
  overflow: hidden
}

.carousel-track-wrap:before,
.carousel-track-wrap:after {
  content: "";
  z-index: 2;
  width: 100px;
  position: absolute;
  top: 0;
  bottom: 0
}

.carousel-track-wrap:before {
  background: linear-gradient(to right, var(--bg), transparent);
  left: 0
}

.carousel-track-wrap:after {
  background: linear-gradient(to left, var(--bg), transparent);
  right: 0
}

.section-wrapper-alt .carousel-track-wrap:before {
  background: linear-gradient(to right, var(--bg-alt), transparent)
}

.section-wrapper-alt .carousel-track-wrap:after {
  background: linear-gradient(to left, var(--bg-alt), transparent)
}

.carousel-track {
  gap: 16px;
  width: max-content;
  animation: 28s linear infinite scroll-left;
  display: flex
}

.carousel-track:hover {
  animation-play-state: paused
}

.carousel-track-rev {
  animation-direction: reverse
}

@keyframes scroll-left {
  0% {
    transform: translate(0)
  }

  to {
    transform: translate(-50%)
  }
}

.logo-card {
  background: var(--white);
  border: 1px solid #94a3b833;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 165px;
  height: 70px;
  padding: 0 20px;
  transition: all .3s;
  display: flex;
  box-shadow: 0 2px 8px #64748b0f
}

.logo-card:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #38bdf829
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  display: grid
}

@media (width<=900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (width<=560px) {
  .reviews-grid {
    grid-template-columns: 1fr
  }
}

.review-card {
  background: var(--white);
  border: 1px solid #38bdf829;
  border-radius: 16px;
  padding: 26px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 3px 12px #2563eb0f
}

.review-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px #2563eb1c
}

.review-quote {
  color: #38bdf81a;
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px
}

.stars {
  gap: 3px;
  margin-bottom: 11px;
  display: flex;
  color: #F5B800;
  font-size: 1.15rem;
  text-shadow: 0 1px 4px #f5b80050
}

.star {
  color: #F5B800 !important;
  font-size: 1.15rem;
  text-shadow: 0 1px 4px #f5b80050
}

.review-text {
  color: #0b1220;
  margin-bottom: 16px;
  font-size: .97rem;
  font-style: italic;
  line-height: 1.7
}

.review-author {
  align-items: center;
  gap: 11px;
  display: flex
}

.review-avatar {
  object-fit: cover;
  border: 2px solid #38bdf84d;
  border-radius: 50%;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  box-shadow: 0 2px 8px #2563eb26
}

.review-name {
  color: var(--blue-deep);
  margin-bottom: 2px;
  font-size: .87rem;
  font-weight: 700
}

.review-location {
  color: var(--gray-mid);
  font-size: .71rem
}

.review-location:before {
  content: "📍";
  margin-right: 3px;
  font-size: .66rem
}

.review-source {
  letter-spacing: 1px;
  color: var(--gray-lt);
  text-transform: uppercase;
  font-size: .6rem;
  font-weight: 600;
  position: absolute;
  bottom: 14px;
  right: 16px
}

.zone-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 54px;
  margin-top: 44px;
  display: grid
}

.zone-map {
  background: #dbeafe80;
  border: 2px dashed #38bdf84d;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden
}

.zone-map-dots {
  background-image: radial-gradient(circle, #38bdf82b 1px, #0000 1px);
  background-size: 30px 30px;
  position: absolute;
  inset: 0
}

.zone-map-ph {
  opacity: .16;
  z-index: 1;
  font-size: 2.8rem;
  position: relative
}

.zone-map-text {
  color: var(--gray-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 1;
  font-size: .7rem;
  position: relative
}

.departments {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
  display: flex
}

.dept-tag {
  color: var(--blue-mid);
  background: #38bdf812;
  border: 1px solid #38bdf847;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .77rem;
  font-weight: 600;
  transition: all .2s
}

.dept-tag:hover {
  background: #38bdf829;
  transform: translateY(-2px)
}

.zone-text h3 {
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.38rem;
  font-weight: 800
}

.zone-text p {
  color: #0b1220;
  margin-bottom: 13px;
  font-size: 1rem;
  line-height: 1.78
}

.contact-band {
  background: linear-gradient(135deg, var(--blue-deep)0%, var(--blue-dark)100%);
  text-align: center;
  border-top: 3px solid var(--sky);
  padding: 18px 80px 46px
}

.contact-band h2 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  white-space: nowrap
}

.ville-break {
  display: inline
}

@media(width<=768px) {
  .ville-break {
    display: block
  }

  .contact-band h2 {
    font-size: clamp(1.6rem, 8vw, 2rem);
    white-space: normal
  }
}

.contact-band h2 span {
  color: var(--sky)
}

.contact-band .desc {
  color: #dbeafecc;
  margin-bottom: 36px;
  font-size: 1.02rem
}

.contact-options {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 12px;
  display: flex
}

.contact-card {
  background: #ffffff12;
  border: 2px solid #fff9;
  border-radius: 12px;
  min-width: 130px;
  padding: 14px 18px;
  transition: all .3s
}

.contact-card:hover {
  border-color: var(--sky);
  background: #ffffff21;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px #38bdf829
}

.contact-card-icon {
  margin-bottom: 5px;
  font-size: 1.4rem
}

.contact-card-label {
  color: #dbeafe9e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-size: .6rem
}

.contact-card-value {
  color: var(--sky);
  letter-spacing: .5px;
  font-family: Barlow, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase
}

footer {
  background: var(--bg);
  border-top: 2px solid var(--sky);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 18px 70px;
  display: flex;
  box-shadow: 0 -4px 20px #38bdf81a
}

.footer-logo img {
  object-fit: contain;
  width: auto;
  height: 70px
}

.footer-copy {
  color: var(--gray-mid);
  font-size: .76rem;
  font-weight: 700
}

.footer-links {
  gap: 20px;
  display: flex
}

.footer-links a {
  color: var(--gray-mid);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--sky)
}

.modal-overlay {
  z-index: 2000;
  backdrop-filter: blur(6px);
  background: #0f172aad;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: none;
  position: fixed;
  inset: 0
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 740px;
  max-height: 86vh;
  padding: 46px 50px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 28px 72px #0f172a61
}

.modal-close {
  width: 34px;
  height: 34px;
  color: var(--blue-mid);
  cursor: pointer;
  background: #38bdf81a;
  border: 1px solid #38bdf847;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 16px;
  right: 16px
}

.modal-close:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky)
}

.modal-title {
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 6px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.9rem;
  font-weight: 900
}

.modal-title span {
  color: var(--blue-mid)
}

.modal-div {
  background: var(--sky);
  border-radius: 2px;
  width: 46px;
  height: 3px;
  margin-bottom: 26px
}

.modal-box h3 {
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 22px 0 7px;
  font-family: Barlow Condensed, sans-serif;
  font-size: 1.05rem;
  font-weight: 800
}

.modal-box p,
.modal-box li {
  color: #0b1220;
  font-size: .95rem;
  line-height: 1.74
}

.modal-box ul {
  margin-top: 5px;
  padding-left: 16px
}

.modal-box li {
  margin-bottom: 4px
}

.modal-box strong {
  color: var(--blue-deep)
}

.fade-up {
  opacity: 0;
  transition: opacity .6s, transform .6s;
  transform: translateY(26px)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

@media (width<=768px) {
  nav {
    padding: 0 16px
  }

  .nav-links {
    display: none
  }

  .slider-dots {
    display: none
  }

  .nav-tel {
    font-size: .95rem;
    padding: 10px 16px;
    letter-spacing: .5px;
    font-weight: 800
  }

  .hamburger {
    display: flex
  }

  section {
    padding: 36px 20px
  }

  .slide-content {
    padding: 0 24px
  }

  .stats-section {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    gap: 0;
    padding: 16px 0
  }

  .stats-section>div {
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center
  }

  .stats-section>div:last-child {
    border-right: none
  }

  .stat-num {
    font-size: 1.4rem;
    margin-bottom: 3px
  }

  .stat-label {
    font-size: .5rem;
    letter-spacing: .5px;
    line-height: 1.3
  }

  .zone-grid {
    grid-template-columns: 1fr
  }

  footer {
    flex-direction: column;
    padding: 26px
  }

  .contact-band {
    padding: 16px 16px 28px
  }

  .contact-band>section {
    padding: 18px 8px !important
  }

  .modal-box {
    padding: 28px 22px
  }

  .slide-desc {
    font-weight: 700;
    color: #fff;
    font-size: 1.05rem
  }
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--sky);
  border-radius: 3px
}

/* ===== HOVERS AJOUTÉS ===== */

/* Dots du slider */
.dot {
  transition: all .3s, transform .2s
}

.dot:hover {
  background: var(--sky);
  transform: scale(1.2);
  box-shadow: 0 0 6px #38bdf880
}

.dot.active:hover {
  transform: scale(1.5)
}

/* Bouton hamburger (menu mobile) */
.hamburger {
  transition: background .25s, transform .2s;
  border-radius: 8px
}

.hamburger:hover {
  background: #38bdf81f;
  transform: scale(1.05)
}

.hamburger:hover span {
  background: var(--blue-mid)
}

/* Questions FAQ */
.faq-question {
  transition: background .25s
}

.faq-question:hover {
  background: #38bdf80d
}

.faq-question:hover .faq-question-text {
  color: var(--blue-mid)
}

.faq-question:hover .faq-chevron {
  transform: scale(1.12);
  box-shadow: 0 3px 10px #38bdf866
}

/* Bouton urgence mobile (en haut) */
.urgence-call-mobile {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ef4444;
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .5px;
  box-shadow: 0 3px 12px #ef444459;
  transition: transform .2s, box-shadow .2s, background .2s
}

.urgence-call-mobile:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #ef444480
}

/* Logo du footer cliquable */
.footer-logo {
  cursor: pointer;
  transition: transform .25s, opacity .2s
}

.footer-logo:hover {
  transform: scale(1.04);
  opacity: .88
}

/* CTA mobile fixe en bas */
.mobile-cta-bar {
  transition: transform .2s, box-shadow .2s
}

.mobile-cta-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 68, 68, .32), 0 4px 14px rgba(0, 0, 0, .14);
  background: rgba(255, 255, 255, 1)
}

.mobile-cta-bar a:hover {
  color: #dc2626
}

/* Ancres du nav (effet accent sur le lien survolé) */
.nav-links a {
  transition: color .2s, transform .2s
}

.nav-links a:hover {
  transform: translateY(-1px)
}

/* Liens de mentions/cgv/confidentialité (footer) */
.footer-links a {
  cursor: pointer;
  transition: color .2s, transform .2s
}

.footer-links a:hover {
  color: var(--sky);
  transform: translateY(-1px)
}

.redac-section {
  background: var(--bg)
}

.redac-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 0;
  display: grid
}

.redac-grid.reverse {
  direction: rtl
}

.redac-grid.reverse>* {
  direction: ltr
}

.redac-photo {
  background: #dbeafe8c;
  border: 2px solid #38bdf852;
  border-radius: 16px;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 340px;
  display: flex;
  position: relative;
  overflow: hidden
}

.redac-photo .rp-dots {
  background-image: radial-gradient(circle, #38bdf81f 1px, #0000 1px);
  background-size: 26px 26px;
  position: absolute;
  inset: 0
}

.redac-photo .rp-icon {
  opacity: .18;
  z-index: 1;
  font-size: 2.8rem;
  position: relative
}

.redac-photo .rp-label {
  color: var(--gray-mid);
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 1;
  font-size: .7rem;
  position: relative
}

.redac-photo .rp-tag {
  color: var(--blue-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #38bdf81f;
  border: 1px solid #38bdf84d;
  border-radius: 4px;
  padding: 3px 9px;
  font-size: .62rem;
  position: absolute;
  top: 12px;
  right: 12px
}

.redac-text h2 {
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
  font-family: Barlow Condensed, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05
}

.redac-text h2 span {
  color: var(--blue-mid)
}

.redac-text p {
  color: #0b1220;
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.82
}

.redac-text .redac-list {
  margin: 18px 0;
  padding: 0;
  list-style: none
}

.redac-text .redac-list li {
  color: #0b1220;
  border-bottom: 1px solid #38bdf81a;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1rem;
  line-height: 1.65;
  display: flex
}

.redac-text .redac-list li:last-child {
  border-bottom: none
}

.redac-text .redac-list li:before {
  content: "✓";
  color: var(--blue-mid);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .95rem;
  font-weight: 900
}

.redac-divider {
  background: linear-gradient(90deg, var(--sky), transparent);
  border-radius: 2px;
  width: 54px;
  height: 4px;
  margin-bottom: 20px
}

.redac-separator {
  background: linear-gradient(90deg, #0000, #38bdf833, #0000);
  height: 1px;
  margin: 0 60px;
  display: none
}

@media (width<=900px) {

  .redac-grid,
  .redac-grid.reverse {
    direction: ltr;
    grid-template-columns: 1fr
  }
}

.contact-photo-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 40px
}

.contact-photo-box {
  background: #ffffff14;
  border: 2px dashed #ffffff40;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 220px;
  display: flex
}

.contact-photo-box .cp-icon {
  opacity: .3;
  font-size: 2.5rem
}

.contact-photo-box .cp-label {
  color: #ffffff59;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .72rem
}

#google-badge {
  z-index: 100;
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 96px;
  padding: 6px 10px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  position: absolute;
  bottom: 22px;
  right: 22px;
  box-shadow: 0 4px 20px #0000002e
}

#google-badge:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px #00000038
}

#google-badge.is-fixed {
  position: fixed;
  top: auto;
  bottom: 22px;
  right: 22px
}

.gb-header {
  align-items: center;
  gap: 5px;
  display: flex
}

.gb-header svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px
}

.gb-header-label {
  color: #3c4043;
  font-family: Arial, sans-serif;
  font-size: .6rem;
  font-weight: 700
}

.gb-score {
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  display: flex
}

.gb-score-num {
  color: #202124;
  font-family: Arial Black, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1
}

.gb-score-denom {
  color: #5f6368;
  font-family: Arial, sans-serif;
  font-size: .6rem;
  font-weight: 700
}

.gb-stars-row {
  gap: 1px;
  display: flex
}

.gb-stars-row span {
  color: #fbbc04;
  font-size: .7rem;
  line-height: 1
}

.urgence-call {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .5px;
  white-space: nowrap;
  background: #ef4444;
  border-radius: 8px;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  box-shadow: 0 3px 12px #ef444459
}

.urgence-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px #ef444480
}

.btn-urgence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ef4444;
  color: #fff;
  font-family: Barlow, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 9px;
  box-shadow: 0 5px 18px #ef444452;
  transition: all .3s;
  border: none;
  cursor: pointer
}

.btn-urgence:hover {
  background: #dc2626;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px #ef444480;
  filter: brightness(1.08)
}

.btn-urgence-wrap {
  text-align: center;
  margin-top: 28px
}

.mobile-menu {
  display: none
}

.mobile-menu.open {
  display: flex !important
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  font-family: Barlow Condensed, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  transition: background .2s
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: var(--sky)
}

.mobile-menu .menu-tel {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff !important;
  margin: 12px 16px 16px;
  border-radius: 8px;
  text-align: center;
  border: none !important;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2.5px solid #ef4444;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(239, 68, 68, .22), 0 3px 10px rgba(0, 0, 0, .10);
  overflow: hidden
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ef4444;
  text-decoration: none;
  font-family: Barlow, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 14px
}

.mobile-cta-bar a:active {
  background: rgba(239, 68, 68, .08)
}

@media(width<=768px) {
  .mobile-cta-bar {
    display: block
  }

  body {
    padding-bottom: 84px
  }
}

.menu-tel:hover {
  opacity: .88;
  transform: translateY(-2px)
}

.faq-section {
  background: var(--bg)
}

.faq-list {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.faq-item {
  background: var(--white);
  border: 1px solid #38bdf829;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s;
  box-shadow: 0 2px 10px #2563eb0a
}

.faq-item.open {
  border-color: var(--sky)
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  text-align: left
}

.faq-question-text {
  font-family: Barlow, sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: .2px
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--sky), var(--blue-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  transition: transform .3s
}

.faq-item.open .faq-chevron {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark))
}

.faq-item.open .faq-chevron svg {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s
}

.faq-answer-inner {
  padding: 0 26px 20px;
  color: #1e293b;
  font-size: .97rem;
  line-height: 1.78;
  border-top: 1px solid #38bdf81a
}

.faq-item.open .faq-answer {
  max-height: 300px
}

.photo-gallery {
  background: var(--bg-alt);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid #38bdf826;
  border-bottom: 1px solid #38bdf826
}

.gallery-track-wrap {
  overflow: hidden;
  position: relative
}

.gallery-track-wrap::before,
.gallery-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none
}

.gallery-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent)
}

.gallery-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent)
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: 32s linear infinite scroll-left
}

.gallery-track:hover {
  animation-play-state: paused
}

.gallery-photo {
  width: 280px;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #38bdf826;
  box-shadow: 0 4px 16px #2563eb12;
  transition: transform .3s, box-shadow .3s
}

.gallery-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px #2563eb22
}

nav,
.urgence-band,
.urgence-item,
.stats-section,
.stat-num,
.stat-label,
.contact-band,
.contact-band h2,
.contact-band .desc,
.contact-options,
.contact-card,
.section-label,
.carousel-label,
.slider-dots,
.slide-content,
.slide-badge,
.hero-cta,
.btn-urgence-wrap,
.btn-urgence,
.btn-primary,
.btn-secondary,
.nav-tel,
.urgence-call,
.review-source,
.faq-question,
.footer-copy,
.footer-links,
footer {
  text-align: center
}

.section-title,
.section-title .accent {
  text-align: left
}

.slide-title,
.slide-desc {
  text-align: left
}

/* ===== JUSTIFICATION EXPLICITE DES PARAGRAPHES DE CONTENU ===== */
.slide-desc,
.service-desc,
.review-text,
.zone-text p,
.redac-text p,
.faq-answer-inner,
.modal-box p,
.modal-box li,
.contact-band .desc {
  text-align: justify
}

/* ===== SUR MOBILE : pas de justify (colonnes trop étroites = trop d'espaces moches) ===== */
@media (width<=768px) {
  body,
  .slide-desc,
  .service-desc,
  .review-text,
  .zone-text p,
  .faq-answer-inner,
  .modal-box p,
  .modal-box li,
  .contact-band .desc {
    text-align: left
  }
}

@media(width<=768px) {
  .gallery-track {
    animation: 28s linear infinite scroll-left !important;
    animation-play-state: running !important
  }

  .gallery-track:hover {
    animation-play-state: running !important
  }

  .gallery-photo {
    width: 200px;
    height: 150px
  }

  .photo-gallery {
    padding: 24px 0
  }
}

@media(width<=768px) {
  .contact-options {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: visible;
    gap: 10px;
    padding: 0 16px
  }

  .contact-card,
  .contact-card[style] {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 64px !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important
  }

  .contact-card-icon {
    font-size: 1.4rem !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important
  }

  .contact-card-label {
    margin-bottom: 2px !important;
    text-align: left !important;
    font-size: .62rem !important;
    font-weight: 900 !important;
    letter-spacing: 1.5px !important;
    color: rgba(219, 234, 254, 0.9) !important
  }

  .contact-card-value {
    text-align: left !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    white-space: normal !important;
    overflow: visible !important;
    word-break: break-word !important;
    color: var(--sky) !important
  }
}

@media(width<=768px) {
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    display: flex;
    justify-content: center
  }

  .btn-primary,
  .btn-secondary,
  .btn-urgence {
    width: auto;
    align-self: center;
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: .85rem
  }
}

@media(width<=768px) {
  .urgence-band {
    padding: 14px 12px;
    gap: 0;
    flex-direction: column
  }

  .urgence-item {
    display: none
  }

  .urgence-call {
    display: none
  }

  .urgence-band-mobile {
    display: grid !important
  }
}

.urgence-band-mobile {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px
}

.urgence-tile {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  text-align: center
}

.urgence-tile-label {
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px
}

.urgence-tile-val {
  color: white;
  font-size: 18px;
  font-weight: 900;
  font-family: Barlow Condensed, sans-serif
}

.urgence-call-mobile {
  display: none;
  background: #ef4444;
  color: white;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 2px
}

@media(width<=768px) {
  .urgence-call-mobile {
    display: block
  }
}

@media(width<=768px) {
  .btn-duo {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important
  }

  .btn-duo .btn-urgence {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important
  }
}

@media(width<=768px) {

  .contact-card-value a,
  .contact-card-value a:visited,
  .contact-card-value a:link {
    color: var(--sky) !important;
    text-decoration: none !important
  }
}

@media(width<=768px) {
  .btn-urgence-wrap {
    display: inline-flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
    align-items: stretch !important;
    max-width: 100%
  }

  .btn-urgence-wrap .btn-urgence {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important
  }
}

.contact-new-wrap {
  max-width: 640px;
  margin: 0 auto
}

.contact-new-phone {
  background: #ef4444;
  border-radius: 12px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px #ef444455
}

.contact-new-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #ef444480
}

.contact-phone-ico {
  width: 48px;
  height: 48px;
  background: #dc2626;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0
}

.contact-phone-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px
}

.contact-phone-sub {
  font-size: .75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: .9
}

.contact-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.contact-new-mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px
}

.contact-new-mini-lbl {
  font-size: .65rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  font-weight: 700
}

.contact-new-mini-val {
  font-size: .95rem;
  font-weight: 700;
  color: #fff
}

.contact-new-cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px
}

.contact-new-cert img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3))
}

@media(width<=768px) {
  .contact-photo-mobile {
    object-position: 40% center !important;
    height: 220px !important
  }

  .contact-new-mini-val {
    font-size: .82rem !important;
    white-space: nowrap
  }

  .contact-new-mini-lbl {
    font-size: .6rem !important
  }

  .contact-new-grid {
    grid-template-columns: 1fr 1fr !important
  }

  .contact-new-mini:nth-child(1) {
    grid-column: span 2 !important;
    order: 1
  }

  .contact-new-mini:nth-child(2) {
    order: 2
  }

  .contact-new-mini:nth-child(4) {
    order: 3
  }

  .contact-new-mini:nth-child(3) {
    grid-column: span 2 !important;
    order: 4
  }

  .contact-new-mini:nth-child(5) {
    grid-column: span 2 !important;
    order: 5
  }
}

/* ==== FIX MOBILE : centrage de tous les boutons ==== */
@media(width<=768px) {

  .btn-urgence-wrap,
  .btn-urgence-wrap[style] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
  }

  .btn-urgence-wrap .btn-urgence {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    text-align: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-cta {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    display: flex !important;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .hero-cta .btn-urgence {
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    text-align: center !important;
    align-self: center !important;
  }

  .slide-content {
    text-align: center !important;
    padding: 0 20px !important
  }

  .slide-badge {
    display: inline-block !important
  }

  .slide-title,
  .slide-desc {
    text-align: center !important
  }

  .slide-desc {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .redac-text {
    text-align: center !important
  }

  .redac-text h2,
  .redac-text p {
    text-align: center !important
  }

  .redac-text .redac-list {
    text-align: left !important;
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important
  }

  .redac-divider {
    margin-left: auto !important;
    margin-right: auto !important
  }

  .contact-new-phone {
    justify-content: center !important;
    text-align: center !important
  }

  .contact-band h2 {
    text-align: center !important
  }
}

/* ==== FIX MOBILE : badge Google au-dessus de la barre rouge fixe ==== */
@media(width<=768px) {

  /* Mobile : badge caché dans le slider, visible uniquement après scroll */
  #google-badge {
    display: none !important
  }

  #google-badge.is-fixed {
    display: flex !important;
    width: 84px !important;
    padding: 5px 8px !important;
    bottom: 84px !important;
    right: 12px !important;
    z-index: 1099 !important;
  }

  #google-badge.is-fixed .gb-score-num {
    font-size: 1.1rem !important
  }

  #google-badge.is-fixed .gb-header-label {
    font-size: .55rem !important
  }
}

/* ==== DESKTOP : slide-badge aligné à gauche (comme le slide-title) ==== */
@media(min-width:769px) {
  .slide-content {
    text-align: left !important
  }

  .slide-badge {
    text-align: left !important
  }
}

/* ==== MOBILE : premier slide-badge ([Ville]) plus compact ==== */
@media(width<=768px) {
  .slide:first-child .slide-badge {
    font-size: .82rem !important;
    padding: 7px 14px !important;
    letter-spacing: .5px !important;
  }
}

/* ==== MOBILE : header équilibré (logo un peu réduit pour laisser place au bouton tel agrandi) ==== */
@media(width<=768px) {
  .logo-nav img {
    height: 72px !important
  }

  nav {
    padding: 0 10px !important;
    gap: 6px
  }
}

/* ================================================================ */
/* CORRECTIF MOBILE : noms de villes longs (Boulogne-Billancourt, etc.) */
/* ================================================================ */

/* 1. Slide badge rouge "Intervention en 40 min · Ville" */
.slide-badge-nowrap {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 92vw;
  font-size: clamp(0.75rem, 3.5vw, 1rem) !important;
  letter-spacing: 0.5px !important;
  padding: 9px 14px !important;
}

/* Sur écrans très étroits (<400px iPhone mini) : abréger le nom ville */
@media (max-width: 420px) {
  .slide-badge-nowrap {
    font-size: 0.78rem !important;
    padding: 8px 12px !important;
  }
}

/* 2. Bandeau mobile flottant "URGENCE Ville" */
.mobile-cta-bar a {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.mobile-cta-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(0.85rem, 4vw, 1.05rem);
  letter-spacing: 0.5px !important;
}

/* Pour les tout petits écrans, réduire davantage */
@media (max-width: 380px) {
  .mobile-cta-text {
    font-size: 0.85rem !important;
    letter-spacing: 0 !important;
  }
  .mobile-cta-bar a {
    padding: 11px 14px !important;
  }
}

/* 3. Nom de ville dans le slider : protège contre débordement */
.ville-name {
  white-space: nowrap;
}

.ville-name-upper {
  white-space: nowrap;
}
