/* ═══════════════════════════════════════
   TSA TRANSPORT — style.css
   ═══════════════════════════════════════ */

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

:root{
  --red:#D0021B;
  --red-dark:#A80016;
  --red-light:#E8213A;
  --blue:#1A3A6B;
  --blue-mid:#2356A8;
  --blue-light:#2E6FD8;
  --white:#FFFFFF;
  --off:#F7F6F2;
  --light:#EDECEA;
  --muted:#6B7280;
  --dark:#0D0D12;
  --border:rgba(26,58,107,0.11);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 52px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(26,58,107,0.06);
}
.logo-tsa {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
  line-height: 1;
}
.logo-transport {
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border-top: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  padding: 1px 0;
  margin-top: 2px;
}
nav ul { display: flex; gap: 32px; list-style: none; }
nav ul a {
  text-decoration: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  opacity: .75;
  transition: opacity .2s;
}
nav ul a:hover { opacity: 1; }
.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 400px;
  overflow: hidden;
}
.hero-left {
  padding: 100px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--off);
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--off);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,2,27,.08);
  border: 1px solid rgba(208,2,27,.2);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--blue);
  margin-bottom: 18px;
}
h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  padding: 14px 26px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(208,2,27,.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--blue);
  padding: 14px 22px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(26,58,107,.3);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.hero-right {
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 44px;
  gap: 28px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-right::before {
  content: 'TSA';
  position: absolute;
  bottom: -30px; right: -10px;
  font-family: 'Syne', sans-serif;
  font-size: 150px;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  line-height: 1;
}
.stat-block { border-left: 3px solid var(--red); padding-left: 18px; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: #fff; line-height: 1; }
.stat-num sub { font-size: 18px; font-weight: 600; color: rgba(255,255,255,.55); vertical-align: baseline; margin-left: 3px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }
.stat-divider { height: 1px; background: rgba(255,255,255,.1); }

.phone-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: background .2s;
}
.phone-cta:hover { background: var(--red-dark); }
.phone-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.phone-num { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: #fff; }
.phone-label { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--blue);
  padding: 0 52px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 17px 28px 17px 0;
  flex-shrink: 0;
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.tsep { width: 1px; height: 18px; background: rgba(255,255,255,.15); flex-shrink: 0; margin-right: 28px; }

/* ── COMPTEURS ── */
.counters {
  background: var(--white);
  padding: 80px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.counter-item { text-align: center; padding: 20px; border-right: 1px solid var(--border); }
.counter-item:last-child { border-right: none; }
.counter-num { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--red); line-height: 1; display: block; }
.counter-suffix { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); }
.counter-label { font-size: 13px; color: var(--muted); margin-top: 6px; display: block; }
.counter-icon {
  width: 40px; height: 40px;
  background: rgba(208,2,27,.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--red);
}

/* ── SECTIONS ── */
section { padding: 86px 52px; }
.slabel { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--red); margin-bottom: 8px; }
.aline { width: 36px; height: 3px; background: var(--red); border-radius: 2px; margin: 10px 0 24px; }
h2 { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; color: var(--blue); margin-bottom: 12px; }
.sdesc { color: var(--muted); font-size: 16px; max-width: 460px; font-weight: 300; }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }

/* ── SIMULATEUR ── */
.simulator-section { background: var(--off); }
.simulator-wrap { background: var(--white); border-radius: 20px; border: 1.5px solid var(--border); overflow: hidden; box-shadow: 0 8px 48px rgba(26,58,107,.08); }
.sim-top { display: grid; grid-template-columns: 1fr 340px; }
.sim-form { padding: 44px; }
.sim-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 28px; }
.sim-steps { display: flex; flex-direction: column; gap: 24px; }
.sim-step label { display: block; font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.sim-options { display: flex; gap: 8px; flex-wrap: wrap; }
.sim-opt {
  padding: 9px 16px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif;
}
.sim-opt:hover { border-color: rgba(208,2,27,.3); color: var(--red); }
.sim-opt.active { border-color: var(--red); background: rgba(208,2,27,.06); color: var(--red); font-weight: 600; }
.sim-result { background: var(--blue); padding: 44px; display: flex; flex-direction: column; justify-content: space-between; }
.sim-result-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; }
.sim-price-wrap { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.sim-price-label { font-size: 13px; color: rgba(255,255,255,.5); }
.sim-price { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.sim-price sub { font-size: 20px; font-weight: 600; color: rgba(255,255,255,.55); vertical-align: baseline; margin-left: 4px; }
.sim-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }
.sim-included { margin-top: 24px; }
.sim-included-title { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 700; }
.sim-tag { display: inline-block; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); font-size: 12px; padding: 4px 10px; border-radius: 100px; margin: 3px; }
.sim-cta { width: 100%; background: var(--red); color: #fff; border: none; padding: 14px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 28px; transition: background .2s, transform .15s; }
.sim-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ── FORMULES ── */
.formules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fcard {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 34px 26px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.fcard::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.fcard:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,58,107,.11); border-color: rgba(208,2,27,.2); }
.fcard:hover::after { transform: scaleX(1); }
.fcard.feat { background: var(--blue); border-color: var(--blue); }
.fcard.feat::after { transform: scaleX(1); }
.fcard.feat:hover { box-shadow: 0 20px 56px rgba(26,58,107,.3); }
.ftag { display: inline-block; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.fcard:not(.feat) .ftag { background: rgba(208,2,27,.1); color: var(--red); }
.fcard.feat .ftag { background: rgba(255,255,255,.18); color: rgba(255,255,255,.9); }
.fcard h3 { font-family: 'Syne', sans-serif; font-size: 21px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.fcard.feat h3 { color: #fff; }
.fdesc { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.fcard.feat .fdesc { color: rgba(255,255,255,.6); }
.fitems { list-style: none; margin-bottom: 26px; }
.fitem { display: flex; align-items: flex-start; gap: 9px; color: var(--dark); font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.fitem:last-child { border-bottom: none; }
.fcard.feat .fitem { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.1); }
.fprice { font-size: 12px; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.fcard.feat .fprice { color: rgba(255,255,255,.45); }
.fbtn { width: 100%; padding: 12px; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; cursor: pointer; border: 1.5px solid var(--border); background: transparent; color: var(--blue); transition: all .2s; }
.fbtn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.fcard.feat .fbtn { background: var(--red); border-color: transparent; color: #fff; }
.fcard.feat .fbtn:hover { background: var(--red-dark); }

/* ── EXTRAS ── */
.extras-section { background: var(--off); }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 52px; }
.extra-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: border-color .2s, transform .2s, box-shadow .2s; cursor: pointer; }
.extra-card:hover { border-color: rgba(208,2,27,.3); transform: translateX(4px); box-shadow: 0 4px 20px rgba(26,58,107,.07); }
.extra-icon { width: 46px; height: 46px; background: rgba(208,2,27,.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.extra-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--blue); margin-bottom: 5px; }
.extra-desc { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ── ÉQUIPE ── */
.equipe-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.team-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); transition: transform .3s, box-shadow .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,58,107,.1); }
.team-photo { height: 200px; display: flex; align-items: center; justify-content: center; }
.team-avatar-bg { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
.team-info { padding: 22px; }
.team-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--blue); margin-bottom: 2px; }
.team-role { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.team-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.team-badge { display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; background: rgba(208,2,27,.07); color: var(--red); font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 100px; }

/* ── GALERIE ── */
.gallery-section { background: var(--off); }
.gallery-tabs { display: flex; gap: 8px; margin-bottom: 36px; }
.gtab { padding: 9px 20px; border-radius: 7px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .2s; }
.gtab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; border: 1.5px solid var(--border); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; min-height: 280px; }
.gallery-fill { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; min-height: 140px; transition: transform .4s; }
.gallery-item:hover .gallery-fill { transform: scale(1.04); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,107,.7) 0%, transparent 50%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: 13px; font-weight: 600; font-family: 'Syne', sans-serif; }
.gallery-note { color: var(--muted); font-size: 13px; margin-top: 20px; text-align: center; }

/* ── ZONE ── */
.zone-section { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 86px 52px; }
.zone-map { background: var(--off); border-radius: 20px; height: 360px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); position: relative; overflow: hidden; }
.zone-ripple  { position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1.5px solid rgba(208,2,27,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.zone-ripple2 { position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1.5px solid rgba(208,2,27,.18); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.zone-ripple3 { position: absolute; width: 100px; height: 100px; border-radius: 50%; border: 2px solid rgba(208,2,27,.25); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.zone-center { position: relative; z-index: 1; text-align: center; }
.zone-dot-big { width: 14px; height: 14px; background: var(--red); border-radius: 50%; margin: 0 auto 10px; box-shadow: 0 0 0 6px rgba(208,2,27,.15); }
.zone-city { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--blue); font-size: 15px; }
.zone-sub { color: var(--muted); font-size: 12px; margin-top: 4px; }
.zone-list { list-style: none; margin-top: 32px; }
.zitem { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--dark); }
.zdot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ── AVIS ── */
.avis-section { background: var(--off); }
.avis-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.google-badge { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 20px; }
.google-score { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--blue); }
.google-stars { color: #FBB829; font-size: 16px; letter-spacing: 1px; }
.google-label { font-size: 12px; color: var(--muted); }
.google-name { font-weight: 700; font-size: 13px; color: var(--blue); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.avis-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 26px; transition: transform .25s, box-shadow .25s; }
.avis-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,107,.09); }
.stars-sm { color: var(--red); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.avis-text { color: var(--muted); font-size: 13px; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.avis-author { display: flex; align-items: center; gap: 10px; }
.aavatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; }
.aname { font-weight: 600; font-size: 13px; color: var(--blue); }
.acity { color: var(--muted); font-size: 11px; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-center { text-align: center; }
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item { background: var(--off); border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.open { box-shadow: 0 4px 20px rgba(26,58,107,.08); background: var(--white); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--blue); gap: 16px; user-select: none; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; color: var(--blue); }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-a p { color: var(--muted); font-size: 14px; line-height: 1.75; }

/* ── CONTACT ── */
.contact-wrap { background: var(--blue); margin: 0 48px 80px; border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1fr 1.15fr; }
.contact-left { padding: 68px 52px; position: relative; overflow: hidden; }
.contact-left::before { content: 'TSA'; position: absolute; bottom: -40px; left: -20px; font-family: 'Syne', sans-serif; font-size: 170px; font-weight: 800; color: rgba(255,255,255,.04); pointer-events: none; line-height: 1; }
.contact-left .slabel { color: rgba(255,255,255,.45); }
.contact-left h2 { color: #fff; }
.contact-left p { color: rgba(255,255,255,.55); font-size: 15px; margin-top: 12px; line-height: 1.75; }
.cinfos { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.cinfo { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 14px; font-weight: 500; }
.cinfo-icon { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,.7); }
.contact-right { background: var(--off); padding: 56px 48px; }
.contact-right h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 26px; letter-spacing: -.5px; }
.fg { margin-bottom: 13px; }
.fg label { display: block; font-size: 11px; color: var(--muted); margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.fg input, .fg textarea, .fg select { width: 100%; background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--dark); font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,58,107,.1); }
.fg textarea { resize: vertical; min-height: 80px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fsub { width: 100%; background: var(--red); color: #fff; border: none; padding: 14px; border-radius: 8px; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 4px; transition: background .2s, transform .15s, box-shadow .2s; }
.fsub:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(208,2,27,.3); }

/* ── FOOTER ── */
footer { background: var(--blue); padding: 52px 52px 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; gap: 32px; }
.ftlogo-tsa { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.ftlogo-tsa span { color: var(--red); }
.ftlogo-sub { font-family: 'Syne', sans-serif; font-size: 8px; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: 3.5px; text-transform: uppercase; border-top: 1.5px solid rgba(255,255,255,.25); border-bottom: 1.5px solid rgba(255,255,255,.25); padding: 1px 0; margin-top: 3px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: 12px; max-width: 220px; margin-top: 12px; line-height: 1.7; }
.footer-links h4 { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; color: rgba(255,255,255,.3); font-size: 12px; flex-wrap: wrap; gap: 8px; }

/* ── BOUTONS FLOTTANTS ── */
.float-wrap { position: fixed; bottom: 26px; right: 26px; display: flex; flex-direction: column; gap: 10px; z-index: 300; }
.float-btn { display: flex; align-items: center; gap: 10px; border: none; border-radius: 100px; padding: 13px 20px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; transition: transform .2s, box-shadow .2s; white-space: nowrap; text-decoration: none; }
.float-phone { background: var(--red); color: #fff; box-shadow: 0 6px 24px rgba(208,2,27,.45); }
.float-phone:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(208,2,27,.55); }
.float-wa { background: #25D366; color: #fff; box-shadow: 0 6px 24px rgba(37,211,102,.4); }
.float-wa:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  nav ul { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 24px; }
  .counters { grid-template-columns: repeat(2, 1fr); padding: 52px 24px; }
  .counter-item:nth-child(2) { border-right: none; }
  .counter-item:nth-child(3) { border-right: 1px solid var(--border); }
  .formules-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .zone-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .avis-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; margin: 0 20px 60px; }
  .contact-left { padding: 44px 28px; }
  .contact-right { padding: 36px 28px; }
  .sim-top { grid-template-columns: 1fr; }
  .sim-result { min-height: 300px; }
  section { padding: 60px 24px; }
  .sec-header { flex-direction: column; align-items: flex-start; }
  .avis-header { flex-direction: column; align-items: flex-start; }
  footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; }
  .trust-bar { padding: 0 24px; }
  .float-wrap { bottom: 16px; right: 16px; }
}
