/* ============================
   MTZ Couverture — Overrides
   Améliorations style par-dessus le template Webflow
   ============================ */

html { scroll-behavior: auto; }

/* --- NAV : lien Urgences en rouge --- */
.nav-urgence-link {
  color: #e53935 !important;
}

/* --- MOBILE : bouton Dépannage rouge --- */
.mobile-cta-urgence {
  background: #b71c1c !important;
  border-color: #b71c1c !important;
  color: #fff !important;
  font-family: var(--body-font) !important;
  font-style: normal !important;
}
.mobile-cta-urgence:hover {
  background: #8b0000 !important;
  border-color: #8b0000 !important;
  color: #fff !important;
}

/* --- Traits décoratifs hero — supprimés --- */
.slash-line-long,
.slash-line-short {
  display: none !important;
}

/* --- NAV : bouton CTA "Devis gratuit" --- */
.nav-cta-button {
  background-color: var(--purple) !important;
  color: var(--white) !important;
  transition: background-color 0.25s !important;
}
.nav-cta-button:hover {
  background-color: var(--dark-purple) !important;
}

/* --- STICKY : bouton Dépannage d'urgence --- */
/* --- BOUTON STICKY DEVIS GRATUIT --- */
/* Wrapper skewé — contient la bordure animée */
.sticky-devis-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  padding: 3px;
  overflow: hidden;
  transform: skew(-15deg);
}

/* Bordure tournante — clipée par le wrapper skewé */
.sticky-devis-wrapper::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    #00c2ff 80deg,
    #fff 130deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: sticky-spin 2s linear infinite;
  z-index: 0;
}
@keyframes sticky-spin {
  to { transform: rotate(360deg); }
}

/* Bouton sans skew (déjà appliqué sur le wrapper) */
.sticky-devis {
  position: relative;
  z-index: 1;
  display: block;
  background: var(--purple);
  color: #fff !important;
  font-family: var(--body-font) !important;
  font-size: 1.05rem;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s;
}
.sticky-devis:hover {
  background-color: var(--dark-purple);
}

@media (max-width: 479px) {
  .sticky-devis-wrapper { bottom: 16px; right: 16px; }
  .sticky-devis { font-size: 0.85rem; padding: 14px 24px; }
}

/* --- NAV : espacement, lisibilité, majuscules --- */
.nav {
  font-size: 1.3vw !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Hover uniforme : fond bleu + expansion padding */
.nav.nav-text-small.background-color-dark.text-color-white:hover {
  background-color: var(--purple) !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  color: #fff !important;
}

/* Urgences : hover rouge — déclaré APRÈS le hover général pour gagner la cascade */
.nav.nav-text-small.background-color-dark.text-color-white.nav-urgence-link:hover {
  background-color: var(--red-urgence) !important;
  color: #fff !important;
}

/* --- HERO : label au-dessus du H1 --- */
.hero-label {
  font-family: var(--body-font);
  font-size: 1.2vw;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* --- HERO : H1 plafonné pour grands écrans --- */
.heading-h1 {
  font-size: clamp(48px, 7vw, 110px) !important;
}

/* --- HERO : phrase d'intro (surcharge spécifique) --- */
.text-medium.text-color-white.hero-intro {
  font-size: clamp(15px, 1.2vw, 19px) !important;
  line-height: 1.6 !important;
  opacity: 0.88;
  max-width: 600px;
}

/* --- HERO : supprime le padding-left du template sur le container boutons --- */
.cta-container {
  padding-left: 0 !important;
}

/* --- HERO : boutons côte à côte alignés à gauche --- */
.hero-cta-row {
  display: flex !important;
  align-items: center;
  gap: 16px;
  justify-content: flex-start !important;
}

/* Bouton secondaire "Dépannage d'urgence" */
.cta-urgence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-size: 1.3vw;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 22px;
  transform: skew(-15deg);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.cta-urgence:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.cta-urgence svg {
  flex-shrink: 0;
}

/* --- HERO : badges de réassurance --- */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 2rem;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body-font);
  font-size: 1.2vw;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.hero-badge-item svg {
  color: var(--purple);
  flex-shrink: 0;
}

/* --- HERO : sous-titre légèrement plus petit pour respirer --- */
.text-medium.text-color-white {
  font-size: clamp(14px, 1.4vw, 20px) !important;
  line-height: 1.5 !important;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* --- SERVICES : descriptions plus lisibles --- */
.text-small.text-color-white.service-paragraph-text {
  font-size: 1.5vw !important;
  line-height: 1.55 !important;
  opacity: 0.9;
}
.heading-h3.text-color-white,
.heading-h3.text-color-purple {
  font-size: 4em !important;
  margin-bottom: 0.4em;
}

/* --- ABOUT : meilleur espacement texte --- */
.about-trainer-info-wrapper .text-small.text-color-white {
  font-size: 1.55vw !important;
  line-height: 1.7 !important;
  opacity: 0.88;
}

/* --- LOCATION : idem --- */
.location-gym-info-wrapper .text-small.text-color-white {
  font-size: 1.55vw !important;
  line-height: 1.7 !important;
  opacity: 0.88;
}

/* --- WHY ME : descriptions --- */
.text-small-xs.text-color-grey {
  font-size: 1.3vw !important;
  line-height: 1.6 !important;
}

/* --- CONTACT : formulaire --- */
.contact-form-input {
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 4px !important;
  transition: border-color 0.2s !important;
  font-size: 1.4vw !important;
}
.contact-form-input:focus {
  border-color: var(--purple) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(36, 98, 153, 0.15) !important;
}
.contact-form-input-field {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Labels du formulaire */
.text-small-xs.text-color-white {
  font-size: 1.3vw !important;
  letter-spacing: 0.03em;
  opacity: 0.75;
}

/* Bouton submit */
.submit-cta {
  transition: background-color 0.25s, padding 0.25s !important;
  letter-spacing: 0.03em !important;
}
.submit-cta:hover {
  background-color: var(--dark-purple) !important;
}

/* --- TÉMOIGNAGES : nom du client plus visible --- */
.text-small.text-testimonial-name.text-color-white {
  margin-top: 1em !important;
  opacity: 0.7;
  font-size: 1.5vw !important;
}
.text-small.text-testimonial.text-color-white {
  font-size: 1.6vw !important;
  line-height: 1.65 !important;
}

/* --- FOOTER : fond noir --- */
.footer-section {
  background-color: var(--dark) !important;
}

/* --- FOOTER : refonte 2 colonnes --- */
.footer-new-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subtitle-footer {
  font-family: var(--body-font) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-bottom: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(36, 98, 160, 0.18);
  border: 1px solid rgba(36, 98, 160, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-text strong {
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-contact-text small {
  font-family: var(--body-font);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

a.footer-contact-item:hover .footer-contact-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

a.footer-contact-item:hover .footer-contact-text strong {
  color: var(--purple);
}

/* Copyright bar */
.copyright {
  font-size: 11px !important;
  color: rgba(255,255,255,0.25) !important;
  letter-spacing: 0.04em;
}

.footer-legal-link {
  color: rgba(255,255,255,0.25) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-link:hover {
  color: rgba(255,255,255,0.5) !important;
}

/* Mobile footer */
@media (max-width: 767px) {
  .footer-new-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-contact-block {
    gap: 20px;
  }
  .footer-contact-text strong {
    font-size: 14px;
  }
  .footer-section {
    padding-bottom: 100px !important;
  }
}

/* --- UNIFORMISATION FOND DARK --- */
.background-color-dark,
.location-section,
.about-section {
  background-color: var(--dark) !important;
}

/* Outlined texts supprimés du HTML — règles inutilisées retirées */

/* --- BARRE DÉFILANTE : une seule ligne --- */
.mooving-text,
.moving-content-area .heading-h2 {
  white-space: nowrap !important;
}

/* Sur mobile : réafficher la version animée, masquer le texte statique */
@media (max-width: 767px) {
  .moving-content.hide-mobile {
    display: flex !important;
  }
  .mooving-text.show-mobile {
    display: none !important;
  }
}

/* --- FOOTER : nouveaux éléments --- */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 2rem;
}

.footer-description {
  font-family: var(--paragraph-font);
  font-size: clamp(13px, 1.1vw, 16px);
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin: 0;
}

.footer-qualif {
  font-family: var(--body-font);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  margin: 0;
}

.footer-hours {
  margin-top: 4px;
  opacity: 0.75;
  font-size: 1.15vw !important;
}

/* =========================================
   SECTION AVIS — SWIPER
   ========================================= */
.testimonials-swiper-outer {
  padding: 48px 6vw 56px;
  overflow: hidden;
}

.testimonials-swiper {
  overflow: visible;
  padding-bottom: 48px !important;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

/* Carte avis */
.avis-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s;
}
.avis-card:hover {
  background: rgba(255,255,255,0.13);
}

.avis-stars {
  color: #f5c518;
  font-size: 18px;
  letter-spacing: 2px;
}

.avis-texte {
  font-family: var(--paragraph-font);
  font-size: clamp(14px, 1.1vw, 17px);
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.avis-auteur {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.avis-pseudo {
  font-family: var(--body-font);
  font-size: clamp(12px, 0.95vw, 14px);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}

.avis-ville {
  font-family: var(--body-font);
  font-size: clamp(10px, 0.75vw, 12px);
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Pagination points */
.testimonials-pagination {
  bottom: 0 !important;
}
.testimonials-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.35);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: background 0.2s, transform 0.2s;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* --- Centrage titres : Réalisations + Avis --- */
.realisations-header .h2-wrapper,
.testimonials-section .h2-wrapper {
  text-align: center;
}
.realisations-header .h2-wrapper *,
.testimonials-section .h2-wrapper *,
.faq-header * {
  text-align: center !important;
}

/* =========================================
   SECTION RÉALISATIONS — SWIPER
   ========================================= */
.realisations-section {
  background-color: var(--dark);
  padding-bottom: 80px;
  overflow: hidden;
}

.realisations-header {
  padding: 80px 6vw 48px;
  position: relative;
}

@media (max-width: 767px) {
  .realisations-header .h2-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1.2rem;
  }
}

.realisations-xl-outlined {
  left: 0 !important;
  bottom: -0.15em !important;
}

/* Wrapper */
.realisations-swiper-outer {
  overflow: hidden;
  width: 100%;
}

.realisations-swiper {
  width: 100%;
  overflow: hidden;
}

/* Slides collées, hauteur fixe */
.realisations-swiper .swiper-slide {
  width: 33.333vw;
  height: clamp(240px, 28vw, 420px);
  cursor: grab;
}
.realisations-swiper .swiper-slide:active { cursor: grabbing; }

/* Photo en cover */
.realisation-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.realisation-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.realisations-swiper .swiper-slide:hover .realisation-slide img {
  transform: scale(1.05);
}

/* Label — masqué temporairement */
.realisation-label {
  display: none !important;
}

/* Label */
.realisation-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  font-family: var(--heading-font);
  font-size: clamp(11px, 0.85vw, 13px);
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.realisations-swiper .swiper-slide:hover .realisation-label {
  opacity: 1;
}

/* Flèches */
.realisations-prev,
.realisations-next {
  color: #fff !important;
  background: var(--purple) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: background 0.2s;
}
.realisations-prev:hover,
.realisations-next:hover { background: var(--dark-purple) !important; }
.realisations-prev::after,
.realisations-next::after { font-size: 15px !important; font-weight: 700; }
.realisations-prev { left: 0 !important; }
.realisations-next { right: 0 !important; }

@media (max-width: 768px) {
  .realisations-swiper .swiper-slide { width: 80vw; height: 56vw; }
}
@media (max-width: 480px) {
  .realisations-swiper .swiper-slide { width: 100vw; height: 66vw; }
}

/* =========================================
   SECTION URGENCE
   ========================================= */

/* Section : fond noir, padding identique aux autres */
.urgence-section { padding-top: 0; padding-bottom: 0; }
.urgence-section .padding-large-global { padding-top: 8rem; padding-bottom: 8rem; }

/* Wrap rouge — même largeur que les autres blocs de contenu */
.urgence-wrap-red {
  background: #b71c1c;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: red-pulse 2.4s ease-in-out infinite;
}
@keyframes red-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(183,28,28,0); }
  50%       { box-shadow: 0 0 0 18px rgba(183,28,28,0.3), 0 0 40px rgba(183,28,28,0.15); }
}

/* Texte intro — harmonisé avec .text-small */
.urgence-intro { opacity: 0.9; }

/* Grid : téléphone | liste — 50/50 */
.urgence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Bloc téléphone */
.urgence-tel-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Point pulsant — positionné dans le wrap */
.urgence-pulse-dot {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.7); opacity: 0.35; }
}

.urgence-card-label {
  font-family: var(--heading-font);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.urgence-cta-tel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading-font);
  font-size: clamp(30px, 3vw, 52px);
  font-style: normal;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.urgence-cta-tel:hover { opacity: 0.8; }
.urgence-cta-tel svg { flex-shrink: 0; width: 28px; height: 28px; }

.urgence-card-sub {
  font-family: var(--paragraph-font);
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin: 0;
}
.urgence-card-sub strong { color: #fff; }

/* Liste à puces */
.urgence-liste {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.urgence-liste--light li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
}
.urgence-liste--light li svg { stroke: #fff; flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .urgence-grid { grid-template-columns: 1fr; gap: 32px; }
  .urgence-wrap-red { padding: 40px 32px; }
}
@media (max-width: 767px) {
  .urgence-section .padding-large-global {
    padding: 0 !important;
  }
  .urgence-wrap-red { padding: 32px 20px; }
}

/* =========================================
   MOBILE : ajustements responsive --- */

/* =========================================
   MENU MOBILE PLEIN ÉCRAN
   ========================================= */
.w-nav-button { display: none !important; }

/* Navbar mobile : transparent, rectangles inclinés sur logo et burger */
@media (max-width: 991px) {
  .navbar-component {
    background-color: transparent !important;
    z-index: 10001;
  }

  /* Logo 2x plus grand */
  .logo {
    height: 40px !important;
  }

  /* Le brand Webflow a déjà skew(-15deg) + background dark — on ajuste le padding */
  .brand, .brand.w--current {
    padding: 14px 24px 14px 36px !important;
    margin-left: -20px !important;
  }

  /* Wrapper incliné autour du burger — même hauteur que le brand */
  .mobile-burger {
    position: relative;
    transform: skew(-15deg);
    margin-right: 0;
    padding: 14px 36px 14px 24px;
    width: auto;
    height: auto;
    gap: 5px;
    overflow: visible;
  }
  .mobile-burger::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -60px;
    background: var(--dark);
    z-index: -1;
  }

  /* Barres skewées en sens inverse pour compenser le skew du bouton */
  .mobile-burger span {
    transform: skewX(15deg);
    width: 24px;
    position: relative;
    z-index: 1;
  }

  /* Croix quand ouvert */
  .mobile-burger.open span:nth-child(1) { transform: skewX(15deg) translateY(9px) rotate(45deg); }
  .mobile-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-burger.open span:nth-child(3) { transform: skewX(15deg) translateY(-9px) rotate(-45deg); }
}

.mobile-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10002;
  position: relative;
}
.mobile-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), opacity 0.25s ease;
}
.mobile-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.23,1,.32,1);
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
  padding: 40px 24px;
  width: 100%;
  max-width: 420px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.mobile-overlay.open .mobile-overlay-inner { transform: translateY(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.mobile-nav-link {
  font-family: var(--heading-font);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--purple); }

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.mobile-cta-primary {
  font-family: var(--body-font);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--purple);
  text-decoration: none;
  padding: 18px 32px;
  display: block;
  transform: skew(-12deg);
  transition: background 0.2s;
}
.mobile-cta-primary:hover { background: var(--dark-purple); }

.mobile-cta-secondary {
  font-family: var(--heading-font);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: skew(-12deg);
  transition: border-color 0.2s, color 0.2s;
}
.mobile-cta-secondary:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  width: 100%;
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-contact-item:hover { color: #fff; }

@media (max-width: 991px) {
  .mobile-burger { display: flex; }
  body.menu-open { overflow: hidden; }
}

/* --- SERVICES : suppression des grands chiffres --- */
.large-number { display: none !important; }

/* --- SERVICE IMAGE — cover vertical + style parallélogramme --- */
.service-image {
  align-self: stretch !important;
  height: auto !important;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  /* Découpe parallélogramme côté gauche — cohérent avec le skew du site */
  clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
  flex-shrink: 0;
}

/* Overlay gradient en bas pour la profondeur */
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Liseré bleu sur le côté droit (accent visuel) */
.service-image::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: var(--purple);
  z-index: 1;
}

/* Écrase les hauteurs fixes Webflow sur tous les breakpoints */
@media (min-width: 768px) {
  .service-image.service-image-one,
  .service-image.service-image-two,
  .service-image.service-image-three,
  .service-image.service-image-four {
    height: auto !important;
    align-self: stretch !important;
  }
}

/* Sur mobile : layout compact services */
@media (max-width: 767px) {
  .service-feature.background-color-purple,
  .service-feature.background-color-dark {
    padding: 1.4rem 1.2rem !important;
    gap: 0 !important;
  }

  .service-text-content {
    margin-bottom: 1rem;
  }

  .service-heading-and-description .heading-h3 {
    font-size: 7vw !important;
    margin-bottom: 6px;
  }

  .text-small.text-color-white.service-paragraph-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .service-tags {
    margin-top: 10px !important;
    gap: 6px !important;
  }
  .service-tag {
    font-size: 10px !important;
    padding: 4px 10px !important;
  }

  .service-image {
    clip-path: none !important;
    width: 100% !important;
    height: 180px !important;
    min-height: 0 !important;
    flex-shrink: 0;
  }
}

/* --- SERVICE TAGS — chips SEO --- */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tag {
  display: inline-block;
  font-family: var(--body-font) !important;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

/* Sur fond violet */
.service-tags .service-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.service-tags .service-tag:hover {
  background: #fff;
  color: var(--purple);
  border-color: #fff;
}

/* Variante fond foncé → teinte bleue */
.service-tags--dark .service-tag {
  background: rgba(36, 98, 160, 0.18);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(36, 98, 160, 0.4);
}
.service-tags--dark .service-tag:hover {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
@media (max-width: 991px) {
  .hero-label { font-size: 11px; }
  .hero-intro { font-size: 15px !important; max-width: 100%; }
  .hero-badge-item { font-size: 13px; }
  .hero-cta-row { flex-direction: column !important; align-items: flex-start !important; }
  .cta-urgence { font-size: 14px; }
  .nav { font-size: 16px !important; }
  .text-medium.text-color-white { font-size: 18px !important; }
  .text-small.text-color-white.service-paragraph-text { font-size: 15px !important; }
  .about-trainer-info-wrapper .text-small.text-color-white { font-size: 15px !important; }
  .location-gym-info-wrapper .text-small.text-color-white { font-size: 15px !important; }
  .text-small-xs.text-color-grey { font-size: 14px !important; }
  .text-small-xs.text-color-white { font-size: 13px !important; }
  .contact-form-input { font-size: 15px !important; }
  .text-small.text-testimonial.text-color-white { font-size: 16px !important; }
  .text-small.text-testimonial-name.text-color-white { font-size: 15px !important; }
  .subtitle-footer { font-size: 13px !important; }
  .footer-description { font-size: 13px !important; }
  .footer-qualif { font-size: 12px !important; }
  .footer-hours { font-size: 13px !important; }
  .footer-brand-block { padding-right: 0; }
}

/* =========================================
   SECTION FAQ
   ========================================= */
.faq-section {
  background-color: var(--dark);
}

.faq-header {
  margin-bottom: 56px;
  text-align: center;
}

/* Surti tre et H2 en blanc */
.faq-header .text-medium.text-color-grey {
  color: rgba(255,255,255,0.45) !important;
}
.faq-header .heading-h2.text-color-grey {
  color: #fff !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 0;
  text-align: left;
  color: #fff;
}

.faq-question span {
  font-family: var(--body-font);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.faq-question:hover span {
  color: #fff;
}

.faq-item.open .faq-question span {
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--purple);
  transition: transform 0.35s cubic-bezier(.23, 1, .32, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #fff;
}

/* Ligne bleue à gauche quand ouvert */
.faq-item.open .faq-question {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.23, 1, .32, 1);
}

.faq-answer p {
  font-family: var(--paragraph-font);
  font-size: clamp(14px, 1.15vw, 17px);
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  padding-bottom: 28px;
  margin: 0;
  border-left: 2px solid var(--purple);
  padding-left: 20px;
}

.faq-answer p strong {
  font-family: var(--body-font);
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.88em;
  color: #fff;
}

@media (max-width: 767px) {
  .faq-question { padding: 22px 0; }
  .faq-question span { font-size: 15px; }
  .faq-answer p { font-size: 14px; padding-left: 14px; }
}
