/* ============================================
   FG COACHING - Coach Sportif Lille
   Thème clair : Teal du logo FG #68C6D8 / Blanc / Noir
   Approche douce, perte de poids, accompagnement
   Version : 2026-04-24a (fix décalage mobile — html overflow-x + offcanvas 85vw)
   ============================================ */

:root {
  /* Palette dérivée du logo FG (dégradé #36889C -> #68C7D6) */
  --primary-accent: #68C7D5;   /* teal clair du logo — accents sur fonds foncés */
  --primary: #68C6D8;          /* teal principal — aplats : TEXTE FONCÉ dessus (7,5:1) */
  --primary-dark: #4FAABB;     /* aplats survolés — TEXTE FONCÉ dessus (5,5:1) */
  --primary-ink: #68C7D6;      /* texte coloré sur fond blanc — teinte du logo */
  --primary-light: #9FD2DF;
  --primary-bg: #EFF8FB;
  --primary-bg2: #DAECF1;
  --dark: #111827;
  --text-dark: #1F2937;
  --text-body: #4B5563;
  --text-light: #6B7280;
  --white: #ffffff;
  --gray-light: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --border: #E5E7EB;
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* overflow-x: hidden sur HTML + BODY pour éviter le décalage latéral
   provoqué par l'offcanvas-end (transform: translateX(100%)) en mobile */
html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.text-primary-custom { color: var(--primary-ink) !important; }

/* === NAVBAR === */
.navbar {
  background-color: var(--text-dark) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  max-width: 70px;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 36px;
    max-width: 56px;
  }
}

.navbar-brand span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar .nav-link {
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-accent) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2368C7D5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas mobile */
.offcanvas-lg {
  background-color: var(--text-dark) !important;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-title {
  color: var(--primary-accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin: 0;
}

/* Croix de fermeture — visible + cliquable sur fond sombre */
.offcanvas-lg .btn-close,
.offcanvas .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0.85;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.offcanvas-lg .btn-close:hover,
.offcanvas .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.12);
}

.offcanvas-lg .btn-close:focus {
  box-shadow: 0 0 0 0.2rem rgba(104, 199, 213, 0.35);
  outline: 0;
}

/* Menu mobile (offcanvas < lg) — hauteur pleine + styles liens */
@media (max-width: 991.98px) {
  .offcanvas-lg,
  .offcanvas-lg.show {
    height: 100vh !important;       /* fallback */
    height: 100dvh !important;      /* Chrome mobile : exclut la barre d'adresse dynamique */
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 85vw !important;     /* ne dépasse jamais le viewport (évite décalage) */
    width: 85vw !important;
  }
  .offcanvas-lg .offcanvas-body {
    flex-grow: 1;
    padding: 1rem 0;
    overflow-y: auto;
  }
  .offcanvas-lg .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .offcanvas-lg .nav-link {
    display: block;
    width: 100%;
    padding: 14px 24px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .offcanvas-lg .nav-link:hover,
  .offcanvas-lg .nav-link.active {
    color: var(--primary-accent) !important;
    background: rgba(104, 199, 213, 0.10);
  }
}

/* === HERO === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 50%, var(--primary-bg) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://vestalicom.com/VestaCrea/projects/general/vestacrea_20260330_230323_69cae51b3baef.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,248,251,0.85) 0%, rgba(255,255,255,0.7) 50%, rgba(239,248,251,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(79, 170, 187, 0.12);
  border: 1px solid rgba(79, 170, 187, 0.3);
  color: var(--primary-ink);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--primary-ink);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-ink);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* === HERO COACH PHOTO === */
.hero-coach-photo {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
  box-shadow: 0 25px 60px rgba(48, 113, 125, 0.28);
}

.hero-coach-photo::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(circle at 30% 30%, rgba(104, 199, 213, 0.22), transparent 60%);
  z-index: -1;
  filter: blur(22px);
}

.hero-coach-photo img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(48, 113, 125, 0.22);
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.hero-coach-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31, 41, 55, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-coach-badge i {
  color: var(--primary-accent);
}

/* === TRANSFORMATION SECTION === */
.section-dark-transform {
  background: var(--text-dark);
  padding: 80px 0;
  overflow: hidden;
}

.section-dark-transform .section-title {
  color: var(--white);
}

.section-dark-transform .section-title span {
  color: var(--primary-accent);
}

.transform-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}

.transform-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: grab;
  user-select: none;
}

.transform-track:active {
  cursor: grabbing;
}

.transform-card {
  flex: 0 0 calc(33.333% - 14px);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 10px 40px rgba(48, 113, 125, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(48, 113, 125, 0.5);
}

.transform-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
  filter: saturate(1.05);
}

.transform-card::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(104, 199, 213, 0) 55%, rgba(48, 113, 125, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
}

.transform-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.transform-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.transform-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

.transform-counter {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  min-width: 60px;
  text-align: center;
}

@media (max-width: 992px) {
  .transform-card {
    flex: 0 0 calc(50% - 10px);
  }
  .transform-card img {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .transform-card {
    flex: 0 0 100%;
  }
  .transform-card img {
    height: auto;
    object-fit: contain;
  }
  .section-dark-transform {
    padding: 60px 0;
  }
}

/* === HERO MOBILE === */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
  }
  .hero-content {
    padding-top: 90px;
    padding-bottom: 50px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-stats {
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .hero-stat .stat-number {
    font-size: 2rem;
  }
  .hero-coach-photo {
    max-width: 320px;
    margin-top: 20px;
  }
  .hero-coach-photo::before {
    inset: -10px;
    filter: blur(14px);
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-stats {
    gap: 18px;
  }
  .hero-stat .stat-number {
    font-size: 1.7rem;
  }
  .hero-stat .stat-label {
    font-size: 0.7rem;
  }
  .hero-coach-photo {
    max-width: 280px;
  }
  .hero-coach-badge {
    font-size: 0.8rem;
    padding: 8px 18px;
  }
}

/* === BUTTONS === */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(48, 113, 125, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-ink);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* === SECTIONS === */
.section-padding {
  padding: 100px 0;
}

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

.section-light {
  background-color: var(--gray-light);
}

.section-teal {
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg2) 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--primary-ink);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* === ABOUT === */
.about-image {
  border-radius: 18px;
  overflow: visible;
  position: relative;
  padding: 6px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 20px 50px rgba(48, 113, 125, 0.25);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  filter: saturate(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 16px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-dark);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary-ink);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.service-card ul li {
  color: var(--text-body);
  font-size: 0.85rem;
  padding: 4px 0;
  padding-left: 22px;
  position: relative;
}

.service-card ul li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  color: var(--primary-ink);
  position: absolute;
  left: 0;
  font-size: 0.7rem;
}

/* === PILLAR CARDS === */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.pillar-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.pillar-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(104, 199, 213, 0.08) 0%, rgba(48, 113, 125, 0.28) 100%);
  z-index: 2;
  pointer-events: none;
}

.pillar-img::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 3;
}

.pillar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(1.05);
}

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

.pillar-body {
  padding: 30px;
}

.pillar-body h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.pillar-body p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === STATS === */
.stats-section {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary) 100%);
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
}

.stat-box .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.stat-box .stat-label {
  color: rgba(31, 41, 55, 0.82);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* === GOOGLE REVIEWS (TrustIndex) === */
.ti-widget {
  max-width: 100% !important;
}

/* === TIMELINE / PARCOURS === */
.timeline-item {
  position: relative;
  padding-left: 30px;
  padding-bottom: 30px;
  border-left: 2px solid var(--primary-bg2);
}

.timeline-item:last-child {
  border-left: 2px solid transparent;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
}

.timeline-year {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary-ink);
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* === CTA === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--text-dark);
}

.cta-section p {
  color: rgba(31, 41, 55, 0.82);
}

.cta-section .btn {
  background: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.28);
}

/* Bouton secondaire du CTA (ex-style inline) */
.cta-section .btn-ghost,
.cta-section .btn-ghost:hover {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  box-shadow: none;
}

.cta-section .btn-ghost:hover {
  background: rgba(31, 41, 55, 0.08);
}

/* === CONTACT FORM === */
.contact-form .form-control,
.contact-form .form-select {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--text-dark);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 170, 187, 0.15);
  background-color: var(--white);
  color: var(--text-dark);
}

.contact-form .form-control::placeholder {
  color: var(--text-light);
}

.contact-form label {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--primary-bg);
  border: 1px solid var(--primary-bg2);
  border-radius: 16px;
  padding: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(79, 170, 187, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-ink);
  font-size: 1.1rem;
}

.contact-info-item h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

.contact-info-item a { color: var(--primary-ink); }
.contact-info-item a:hover { color: var(--primary); }

/* === SOCIAL === */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary-ink);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* === FLOATING PHONE === */
.floating-phone {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(79, 170, 187, 0.4);
  transition: all 0.3s ease;
  animation: pulse-phone 2s infinite;
}

.floating-phone:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(79, 170, 187, 0.5);
}

@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 8px 25px rgba(79, 170, 187, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(79, 170, 187, 0.6), 0 0 0 10px rgba(79, 170, 187, 0.1); }
}

/* === FOOTER === */
footer {
  background-color: var(--text-dark) !important;
  padding: 60px 0 30px;
}

footer h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
}

footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--primary-accent); }
footer p, footer li { color: rgba(255,255,255,0.6); }

footer .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 30px 0 20px;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-left {
  transform: translateX(-30px);
}

.reveal.reveal-left.visible {
  transform: translateX(0);
}

.reveal.reveal-right {
  transform: translateX(30px);
}

.reveal.reveal-right.visible {
  transform: translateX(0);
}

/* === MENTIONS LEGALES === */
.legal-section {
  padding-top: 120px;
  min-height: 80vh;
}

.legal-section h2 {
  color: var(--primary-ink);
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-section p {
  color: var(--text-body);
  line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .hero-stats { gap: 25px; }
  .hero-stat .stat-number { font-size: 2rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .section-title { font-size: 1.6rem; }
  .section-padding { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; padding-left: 1.25rem; padding-right: 1.25rem; }
  .stat-box .stat-number { font-size: 2.2rem; }
  .about-image::after { display: none; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 1.7rem; }
  .hero-stats { gap: 15px; }
}
