/* =========================================================
   style.css — Torrevieja.fr (UNIQUE source de style)
   Objectifs :
   - Plus de blanc sur blanc (règles globales + cards sécurisées)
   - Urgences : look sérieux mais pas agressif (pas rouge)
   - Hero + recherche/chat : propre et lisible
   - Sections / grids / footer : cohérents
========================================================= */

/* =========================
   VARIABLES
========================= */
:root{
  --primary:#0ea5e9;         /* bleu Torrevieja */
  --secondary:#f59e0b;       /* accent */
  --teal:#14b8a6;            /* urgences calm */
  --dark:#0f172a;
  --text:#111827;
  --muted:#64748b;

  --bg:#f6f8fb;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);

  --success:#16a34a;
  --danger:#ef4444;          /* réservé aux alerts, pas la section urgences */

  --radius:18px;
  --shadow: 0 14px 34px rgba(15,23,42,.08);
}

/* =========================
   RESET / BASE
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.7;
  color: var(--text);
  background: var(--bg);
  min-height:100vh;
  overflow-x:hidden;
}

/* Anti “blanc sur blanc” : on sécurise le texte par défaut */
p, li, label, span, small, dd, dt, td, th{
  color: var(--text);
}

a{ color:inherit; }
img{ max-width:100%; display:block; }

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* =========================
   HEADER + NAV
========================= */
header{
  position: sticky;
  top:0;
  z-index: 1000;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.header-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding: 14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 950;
  font-size: 20px;
  letter-spacing: -.2px;
  color: var(--dark);
}
.logo i{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.22);
  color: var(--primary);
}

/* Desktop nav */
.desktop-nav ul{
  display:flex;
  list-style:none;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.desktop-nav a{
  text-decoration:none;
  font-weight: 900;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.desktop-nav a:hover{
  background: rgba(14,165,233,.10);
  border-color: rgba(14,165,233,.18);
  color: var(--dark);
  transform: translateY(-1px);
}
.desktop-nav a.active{
  background: rgba(15,23,42,.06);
  border-color: var(--line);
  color: var(--dark);
}

/* =========================
   MOBILE MENU (compatible ton HTML)
========================= */
.mobile-nav{ display:none; }

.hamburger-btn{
  display:none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  border: 0;
  background: none;
  cursor: pointer;
}
.hamburger-btn span{
  display:block;
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: all .25s ease;
}

.mobile-menu{
  position: fixed;
  top:0;
  right: -110%;
  width: min(400px, 92vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 30px rgba(0,0,0,.12);
  z-index: 1002;
  transition: right .25s ease;
  overflow:auto;
}
.mobile-menu.active{ right:0; }

.mobile-menu-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(14,165,233,.95), rgba(245,158,11,.92));
  color:#fff;
}
.mobile-menu-header .logo{ color:#fff; }
.mobile-menu-header .logo i{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.20);
  color:#fff;
}
.close-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}

.mobile-nav-links{
  list-style:none;
  padding: 14px;
}
.mobile-nav-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  color: var(--dark);
  border: 1px solid transparent;
}
.mobile-nav-link:hover{
  background: rgba(14,165,233,.08);
  border-color: rgba(14,165,233,.16);
}
.mobile-nav-link.active{
  background: rgba(15,23,42,.06);
  border-color: var(--line);
}

.mobile-contact-info{
  margin: 14px;
  padding: 14px;
  background: rgba(15,23,42,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--dark);
}
.mobile-contact-info h4{ margin-bottom: 10px; color: var(--dark); }
.mobile-contact-info p{ margin: 6px 0; display:flex; gap:8px; align-items:center; color: var(--muted); }

.mobile-overlay{
  position: fixed;
  inset:0;
  background: rgba(15,23,42,.45);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}
.mobile-overlay.active{
  opacity:1;
  visibility: visible;
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  background: var(--primary);
  color:#fff;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid rgba(14,165,233,.25);
  cursor:pointer;

  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  box-shadow: 0 10px 22px rgba(14,165,233,.16);
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }
.btn:active{ transform: translateY(1px); }

.btn-whatsapp{
  background:#22c55e;
  border-color: rgba(34,197,94,.30);
  box-shadow: 0 10px 22px rgba(34,197,94,.16);
}
.btn-whatsapp:hover{ filter: brightness(.98); }

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  padding: 64px 0 46px;
  color:#fff;
  overflow:hidden;

  background:
    radial-gradient(900px 480px at 20% 10%, rgba(14,165,233,.30), transparent 60%),
    radial-gradient(760px 520px at 80% 30%, rgba(245,158,11,.22), transparent 60%),
    linear-gradient(135deg, rgba(15,23,42,.65), rgba(15,23,42,.45)),
    url("img/torrevieja-hero.jpg") center / cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 22px);
  opacity:.22;
  pointer-events:none;
}
.hero > .container{
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero h1{
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.9px;
  text-shadow: 0 14px 34px rgba(0,0,0,.30);
  margin-bottom: 10px;
  color:#fff;
}
.hero p{
  max-width: 72ch;
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.hero-btns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* =========================
   HERO CHAT (ton HTML exact)
========================= */
.hero-chat{
  width: min(900px, 92vw);
  margin: 18px 0 0;
  position: relative;
  z-index: 5;
}

.hero-chat-form, #hero-chat-form{
  display:flex;
  gap:10px;
  align-items:center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.hero-chat-input, #hero-chat-input{
  flex:1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  padding: 12px 10px;
  -webkit-text-fill-color: #0f172a;
  caret-color: #0f172a;
}
.hero-chat-input::placeholder, #hero-chat-input::placeholder{
  color: rgba(15,23,42,.55);
  font-weight: 800;
}

.hero-chat-send, #hero-chat-form button{
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 950;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(14,165,233,.22);
  transition: transform .08s ease, filter .12s ease;
  white-space: nowrap;
}
.hero-chat-send:hover, #hero-chat-form button:hover{ filter:brightness(.98); }
.hero-chat-send:active, #hero-chat-form button:active{ transform: translateY(1px); }

.hero-chat-results, #hero-chat-results{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

/* messages (si ton JS ajoute .hero-chat-msg / .me) */
.hero-chat-msg{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 12px 14px;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
  white-space: pre-wrap;
  line-height: 1.55;
}
.hero-chat-msg.me{
  background: rgba(14,165,233,.10);
  border-color: rgba(14,165,233,.22);
  font-weight: 900;
}

/* fallback si ton JS injecte juste des div/p */
#hero-chat-results > *{
  color: #0f172a;
}

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

.section-light{
  background: transparent;
}

.section-gradient{
  background: transparent;
}

/* Titres sections */
.section-title{
  text-align: left;
  margin-bottom: 18px;
}
.section-title h2{
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 8px;
  font-weight: 950;
  color: var(--dark);
}
.section-title p{
  color: var(--muted);
  max-width: 90ch;
}

/* =========================
   GRIDS / CARDS (anti blanc sur blanc)
========================= */
.features-grid, .services-grid, .commerces-grid, .marches-grid, .stats-grid, .urgences-grid, .conseils-grid, .activites-grid{
  display:grid;
  gap: 14px;
}

.features-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.services-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.commerces-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
.marches-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.stats-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
.urgences-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.conseils-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.activites-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }

/* cards */
.feature-card, .service-card, .commerce-card, .marche-card, .stat-card, .activite-card, .conseil-card,
.inscription-form, .contact-container, .alert,
.saison-card, .urgence-category, .urgence-item{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Important: force texte lisible dans les cards */
.feature-card *, .service-card *, .commerce-card *, .marche-card *, .stat-card *,
.activite-card *, .conseil-card *, .inscription-form *, .contact-container *,
.urgence-category *, .urgence-item *{
  color: var(--text);
}

.feature-card, .service-card, .commerce-card, .marche-card, .stat-card, .activite-card, .conseil-card{
  padding: 18px;
}
.feature-card p, .service-card p, .commerce-card p, .activite-card p, .conseil-card p{
  color: var(--muted);
}

.feature-icon, .service-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  margin-bottom: 12px;
}

.feature-icon{
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.20);
  color: var(--primary);
}
.service-icon{
  background: rgba(245,158,11,.14);
  border: 1px solid rgba(245,158,11,.22);
  color: #7c4a03;
}

.service-list{ margin:12px 0 0; padding-left: 18px; color: var(--muted); }
.service-list li{ margin:6px 0; color: var(--muted); }

.stat-card{ padding: 16px; }
.stat-number{
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -.6px;
  color: var(--dark);
  display:block;
}
.stat-card span:last-child{ color: var(--muted); font-weight: 800; }

/* =========================
   SAISON / A LA UNE
========================= */
.saison-card{
  padding: 18px;
  background:
    linear-gradient(rgba(15,23,42,0.45), rgba(15,23,42,0.55)),
    url('torrevieja.png') center / cover no-repeat;
  color: #fff;
}
.saison-card *{ color:#fff; }

.saison-activites{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.saison-activite{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight: 900;
  cursor:pointer;
}
.saison-activite:hover{ background: rgba(255,255,255,.20); }
.saison-activite.active{ background: rgba(255,255,255,.26); }

/* =========================
   TABS Activités
========================= */
.activites-tabs{ background: transparent; }

.tab-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 14px;
}
.tab-btn{
  cursor:pointer;
  border-radius:999px;
  border:1px solid var(--line);
  background: white;
  padding:10px 12px;
  font-weight: 950;
  color: var(--dark);
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.tab-btn.active{
  background: rgba(14,165,233,.12);
  border-color: rgba(14,165,233,.22);
}
.tab-content .tab-pane{ display:none; }
.tab-content .tab-pane.active{ display:block; }

/* =========================
   URGENCES (calme, pas rouge)
========================= */
.urgences-section{
  background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(20,184,166,.42));
  color:#fff;
}
.urgences-section .section-title h2,
.urgences-section .section-title p{
  color:#fff !important;
}
.urgences-grid{ margin-top: 16px; }

.urgence-category{
  padding:16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.65);
}
.urgence-items{ display:grid; gap:10px; }

.urgence-item{
  padding:12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.08);
}

.urgence-icon{
  width:40px; height:40px;
  border-radius:14px;
  background: rgba(20,184,166,.14);
  border:1px solid rgba(20,184,166,.22);
  display:grid; place-items:center;
  font-size:18px;
  color: #0f172a;
}
.urgence-number{ margin:0; font-weight: 950; color: var(--dark); }
.urgence-desc, .urgence-adresse{ margin:4px 0; color: var(--muted); }

/* Conseils urgences */
.urgences-conseils{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
}
.urgences-conseils h3{ color:#fff; }

.conseil-card{ padding:14px; }
.conseil-card p{ color: var(--muted); }

/* =========================
   ALERTS / FORMS
========================= */
.alert{
  padding:12px 14px;
  margin: 0 0 14px;
  display:flex;
  gap:10px;
  font-weight: 900;
}
.alert-success{
  border-color: rgba(22,163,74,.28);
  background: rgba(22,163,74,.10);
}
.alert-danger{
  border-color: rgba(239,68,68,.28);
  background: rgba(239,68,68,.10);
}

/* Forms */
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form-group{ margin:10px 0; }
label{ font-weight: 950; font-size: 13px; margin-bottom:6px; display:block; color: var(--dark); }
.form-control{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font-size:14px;
  background:white;
  color: var(--text);
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
}
.form-control:focus{
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 0 0 4px rgba(14,165,233,.14);
}

.checkbox-group{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}
.checkbox-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(15,23,42,.04);
  border:1px solid var(--line);
  font-weight: 900;
  color: var(--dark);
  cursor:pointer;
}

/* =========================
   FOOTER (lisible)
========================= */
footer{
  margin-top: 24px;
  padding: 26px 0;
  background: rgba(255,255,255,.82);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:14px;
}
.footer-col{
  padding:16px;
  border-radius: var(--radius);
  background: var(--card);
  border:1px solid var(--line);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.footer-col h3{ margin:0 0 10px; color: var(--dark); }
.footer-col p{ margin:0; color: var(--muted); }
.footer-links{ list-style:none; margin:10px 0 0; padding:0; }
.footer-links li{ margin:10px 0; }
.footer-links a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 900;
}
.footer-links a:hover{ color: var(--dark); }

.social-links{ display:flex; gap:10px; margin-top:12px; }
.social-links a{
  width:38px;height:38px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(15,23,42,.04);
  border:1px solid var(--line);
  text-decoration:none;
}

.copyright{
  margin-top:14px;
  text-align:center;
  color: var(--muted);
  font-weight: 900;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .commerces-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .activites-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px){
  .desktop-nav{ display:none; }
  .mobile-nav{ display:block; }
  .hamburger-btn{ display:flex; }

  .features-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .marches-grid{ grid-template-columns: 1fr; }
  .urgences-grid{ grid-template-columns: 1fr; }
  .conseils-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }

  .hero{ padding: 52px 0 40px; }
  .hero-chat-form, #hero-chat-form{ flex-wrap: wrap; }
  .hero-chat-send, #hero-chat-form button{ width: 100%; }
}
/* ✅ HERO: tout centrer proprement */
.hero .hero-inner{
  width: min(920px, 92vw);
  margin: 0 auto;
  text-align: center;
}

/* ✅ Form chat: pas une barre géante, reste compact */
.hero .hero-chat{
  margin-top: 18px;
}

.hero .hero-chat-form{
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ✅ Résultats: cachés tant que vide */
#hero-chat-results[hidden]{
  display: none !important;
}
/* =========================================================
   WOW PACK — Animation premium (safe, léger, sans HTML)
   À coller tout en bas de style.css
========================================================= */

/* 1) Fond vivant très discret (grain + lueurs) */
body{
  position: relative;
}

/* Lueurs animées derrière le contenu */
body::before{
  content:"";
  position: fixed;
  inset: -20vmax;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(55vmax 35vmax at 20% 10%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(50vmax 30vmax at 80% 20%, rgba(245,158,11,.14), transparent 65%),
    radial-gradient(60vmax 45vmax at 55% 90%, rgba(99,102,241,.10), transparent 60%);
  filter: blur(10px);
  animation: torreGlowMove 14s ease-in-out infinite alternate;
}

@keyframes torreGlowMove{
  0%   { transform: translate3d(-1.2%, -0.8%, 0) scale(1.00); }
  50%  { transform: translate3d( 1.0%,  0.6%, 0) scale(1.03); }
  100% { transform: translate3d(-0.6%,  1.0%, 0) scale(1.02); }
}

/* Grain subtil (effet “ciné / premium”) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .07;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.20) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.12) 0 1px, transparent 1px 2px);
  mix-blend-mode: soft-light;
  animation: torreGrain 1.6s steps(2) infinite;
}

@keyframes torreGrain{
  0%{ transform: translate(0,0); }
  25%{ transform: translate(-1px, 1px); }
  50%{ transform: translate(1px, -1px); }
  75%{ transform: translate(1px, 1px); }
  100%{ transform: translate(0,0); }
}

/* 2) Cartes “vivantes” : hover élégant + micro-relief */
.feature-card,
.service-card,
.commerce-card,
.marche-card,
.stat-card,
.activite-card,
.conseil-card,
.contact-container,
.inscription-form{
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover,
.service-card:hover,
.commerce-card:hover,
.marche-card:hover,
.activite-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(15,23,42,.14);
  border-color: rgba(14,165,233,.22);
}

/* Petit “halo” qui suit le hover (très subtil) */
.feature-card::before,
.service-card::before,
.commerce-card::before,
.marche-card::before,
.activite-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 20px;
  pointer-events:none;
  opacity:0;
  background:
    radial-gradient(400px 220px at 30% 10%, rgba(14,165,233,.12), transparent 60%),
    radial-gradient(420px 240px at 80% 30%, rgba(245,158,11,.10), transparent 65%);
  transition: opacity .18s ease;
}

.feature-card,
.service-card,
.commerce-card,
.marche-card,
.activite-card{
  position: relative;
}

.feature-card:hover::before,
.service-card:hover::before,
.commerce-card:hover::before,
.marche-card:hover::before,
.activite-card:hover::before{
  opacity: 1;
}

/* 3) Boutons : petite brillance “gloss” */
.btn{
  position: relative;
  overflow: hidden;
}

.btn::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 55%;
  height: 180%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.20);
  filter: blur(2px);
  opacity: 0;
}

.btn:hover::after{
  opacity: 1;
  animation: torreShine .85s ease forwards;
}

@keyframes torreShine{
  0%{ transform: translateX(0) rotate(18deg); }
  100%{ transform: translateX(260%) rotate(18deg); }
}

/* 4) Respect de l’accessibilité : si l’utilisateur réduit les animations */
@media (prefers-reduced-motion: reduce){
  body::before, body::after,
  .btn::after,
  .feature-card, .service-card, .commerce-card, .marche-card, .activite-card{
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   FIX CENTRAGE SANS DÉCALAGE — à coller tout en bas
   Objectif : page centrée, mais mise en page intacte
========================================================= */

/* 1) Ne JAMAIS centrer tout le texte globalement */
html, body{
  text-align: left !important;
}

/* 2) La page est centrée via le container (pas via flex sur body) */
body{
  display: block !important;          /* évite les vieux display:flex qui cassent tout */
  margin: 0 !important;
}

/* 3) Container : largeur stable + centré */
.container{
  width: min(1120px, 92vw) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 4) Header : on garde le layout (logo à gauche / nav à droite) */
.header-content{
  text-align: left !important;
}

/* 5) Sections : éviter les décalages dus à align-items/justify sur des parents */
.section, header, footer{
  display: block !important;
}

/* 6) Grilles : on force un comportement normal */
.features-grid,
.services-grid,
.commerces-grid,
.marches-grid,
.stats-grid,
.urgences-grid,
.conseils-grid,
.activites-grid{
  justify-items: stretch !important;
  align-items: stretch !important;
}

/* 7) Centrage UNIQUEMENT du hero (titre + boutons + chat) */
.hero > .container{
  text-align: center !important;
}

/* Dans le hero : paragraphes centrés mais largeur propre */
.hero p{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Chat du hero : centré et pas “barre énorme” */
.hero-chat{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Résultats du chat : pas visible si vide (tu voulais ça) */
#hero-chat-results:empty{
  display: none !important;
}

/* Quand il y a du contenu, on affiche normalement */
#hero-chat-results{
  display: grid;
}

/* 8) Section titles (les titres de section) : centrés sans casser le reste */
.section-title{
  text-align: center !important;
}
.section-title p{
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 80ch;
}

/* 9) Cartes : texte normal à gauche (plus propre) */
.feature-card,
.service-card,
.commerce-card,
.marche-card,
.activite-card,
.conseil-card,
.contact-container,
.inscription-form,
.urgence-category,
.urgence-item{
  text-align: left !important;
}
/* =========================================================
   HERO — centrage propre (sans bulle, sans décaler le chat)
   Colle tout en bas de style.css
========================================================= */

/* 1) Centre le contenu du hero (titres + boutons + recherche) */
.hero .container{
  text-align: center;
}

/* 2) Boutons : bien centrés */
.hero-btns{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* 3) Recherche : largeur max (pas 100% écran) */
.hero-chat{
  margin: 18px auto 0;
  max-width: 820px; /* largeur premium */
  width: 100%;
}

/* 4) Barre de recherche : look simple (une seule ligne) */
#hero-chat-form{
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;

  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* 5) Input : sobre + lisible */
#hero-chat-input{
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  outline: none;
}

#hero-chat-input::placeholder{
  color: rgba(15,23,42,.55);
  font-weight: 700;
}

/* 6) Bouton : bien placé, pas au milieu tout seul */
#hero-chat-form button{
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  background: var(--primary);
  color: #fff;
}

/* 7) Résultats : pas de “bulle” encadrée → juste sous la barre */
#hero-chat-results{
  margin-top: 12px;
  text-align: left;
  display: none; /* caché tant qu’il n’y a rien */
}

/* Quand il y a des réponses (ton JS ajoute du contenu), ça s’affiche */
#hero-chat-results:not(:empty){
  display: block;
}

/* 8) Si tu as des messages en classes différentes, on les rend clean */
.hero-chat-msg,
.hc-msg,
.hc-msg .bubble{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  color: #0f172a;
  line-height: 1.55;
}

/* Variante “moi” si ton JS l’utilise */
.hero-chat-msg.me{
  background: rgba(14,165,233,.10);
  border-color: rgba(14,165,233,.20);
  font-weight: 900;
}

/* Mobile : barre en colonne, mais toujours propre */
@media (max-width: 768px){
  #hero-chat-form{
    flex-direction: column;
    align-items: stretch;
  }
  #hero-chat-form button,
  #hero-chat-input{
    width: 100%;
  }
}
/* ===== HERO SEARCH — barre propre (sans vide à droite) ===== */

/* Conteneur : pas full-width, bien centré */
.hero-chat{
  max-width: 720px;
  width: min(720px, 92vw);
  margin: 18px auto 0;
}

/* Barre : grid -> input prend TOUT, bouton prend sa largeur */
#hero-chat-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;

  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Input : occupe tout l’espace utile */
#hero-chat-input{
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  outline: none;
}

/* Placeholder discret + propre */
#hero-chat-input::placeholder{
  color: rgba(15,23,42,.45);
  font-weight: 700;
}

/* Focus plus “premium” */
#hero-chat-input:focus{
  border-color: rgba(14,165,233,.40);
  box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}

/* Bouton */
#hero-chat-form button{
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  background: var(--primary);
  color: #fff;
  white-space: nowrap;
}

/* Mobile : bouton dessous */
@media (max-width: 768px){
  #hero-chat-form{
    grid-template-columns: 1fr;
  }
  #hero-chat-form button{
    width: 100%;
  }
}
/* =========================
   PARTENAIRES (cards)
========================= */
.partners-toolbar{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}

#partners-q{
  width:min(640px, 100%);
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.15);
  outline: none;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  font-size: 1rem;
}

#partners-q:focus{
  border-color: rgba(14,165,233,.55);
  box-shadow: 0 12px 30px rgba(14,165,233,.15);
}

.partners-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.partners-empty{
  grid-column: 1 / -1;
  text-align:center;
  padding: 18px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(15,23,42,.22);
  background: rgba(255,255,255,.7);
  color: #334155;
  font-weight: 700;
}

.partner-card{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  padding: 16px;
  overflow:hidden;
}

.partner-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.04);
  color: #0f172a;
}

.badge.featured{
  background: rgba(245,158,11,.14);
  border-color: rgba(245,158,11,.35);
}

.badge.partner{
  background: rgba(14,165,233,.14);
  border-color: rgba(14,165,233,.35);
}

.partner-title{
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 6px;
}

.partner-meta{
  color:#475569;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 10px;
}

.partner-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.partner-links a{
  text-decoration:none;
  font-weight: 900;
  border: 1px solid rgba(15,23,42,.12);
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
}

.partner-links a:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}
/* =========================
   HERO SEARCH RESULTS (Google-like)
========================= */
.hero-chat-results.is-visible{
  display:block;
}

.hc-wrap{
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.hc-summary{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.hc-summary .hc-title{
  font-weight: 900;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.hc-summary .hc-desc{
  color: #516174;
  line-height: 1.55;
  font-weight: 700;
}

.hc-results{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 10px 12px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
}

.hc-result{
  padding: 12px 10px;
  border-radius: 14px;
}

.hc-result + .hc-result{
  border-top: 1px solid rgba(15,23,42,.08);
}

.hc-result a{
  text-decoration: none;
}

.hc-result .r-title{
  font-weight: 950;
  color: #0f172a;
  margin-bottom: 4px;
}

.hc-result .r-url{
  font-size: 12px;
  color: #0ea5e9;
  font-weight: 800;
  word-break: break-word;
  opacity: .95;
}

.hc-result .r-snippet{
  margin-top: 6px;
  color: #5b6b7a;
  line-height: 1.55;
  font-weight: 700;
}

.hc-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hc-cta a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  color: #0f172a;
}

.hc-cta a.primary{
  background: rgba(16,185,129,.14);
  border-color: rgba(16,185,129,.35);
}

/* =========================
   PARTENAIRES (4 cartes)
========================= */
.hero-partners{
  margin-top: 14px;
}

.partners-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 980px){
  .partners-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .partners-grid{ grid-template-columns: 1fr; }
}

.partner-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,.08);
  min-height: 110px;
}

.partner-top{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.partner-name{
  font-weight: 950;
  color: #0f172a;
  line-height: 1.2;
}

.partner-meta{
  font-size: 12px;
  font-weight: 900;
  color: #5b6b7a;
  opacity: .95;
}

.partner-stars{
  font-size: 12px;
  font-weight: 900;
  color: #f59e0b;
  white-space: nowrap;
}

.partner-desc{
  color:#5b6b7a;
  font-weight: 700;
  line-height: 1.45;
  font-size: 13px;
  margin-top: 6px;
}

.partner-links{
  margin-top: 10px;
  display:flex;
  gap:8px;
  flex-wrap: wrap;
}

.partner-links a{
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  color: #0f172a;
  text-decoration:none;
}
/* =========================================================
   ✅ FIX CENTRAGE GLOBAL (desktop + mobile)
   Colle ce bloc TOUT EN BAS de style.css
========================================================= */

/* 1) Empêche les décalages horizontaux (marges/éléments trop larges) */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img, video, svg, canvas {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

/* 2) Container: centre + padding responsive (évite les énormes marges sur téléphone) */
.container {
  width: min(1120px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(14px, 4vw, 22px) !important;
  padding-right: clamp(14px, 4vw, 22px) !important;
}

/* 3) Sections: évite les paddings trop grands qui “décalent” sur mobile */
section, header, footer {
  width: 100%;
  max-width: 100%;
}

/* 4) Centre les titres et blocs de section sans tout casser */
.section-title,
.section-title h2,
.section-title p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* 5) HERO: centre bien le contenu */
.hero .container {
  text-align: center;
}

/* Boutons hero */
.hero-btns {
  justify-content: center !important;
}

/* 6) Barre de recherche du HERO: centrée + largeur clean */
.hero-chat {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-chat-bar {
  width: min(920px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Input: prend la place, pas de “vide à droite” */
.hero-chat-bar input,
#hero-chat-input {
  width: 100%;
  min-width: 0;
}

/* 7) Résultats recherche + partenaires: centrés */
.hero-chat-results,
#hero-chat-results,
.hero-partners,
#hero-partners {
  width: min(920px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 8) “À la une à Torrevieja”: centre bien la card */
.saison-card {
  width: min(1100px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* Boutons des 4 rubriques “À la une”: centrés */
.saison-activites {
  justify-content: center !important;
}

/* Détails “À la une”: centre aussi */
#seasonal-details {
  width: min(900px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 9) Grilles: évite un “décalage” causé par padding/width */
.features-grid,
.services-grid,
.commerces-grid,
.stats-grid,
.marches-grid,
.urgences-grid,
.conseils-grid {
  margin-left: auto;
  margin-right: auto;
}

/* 10) Mobile: réduit les paddings trop gros + évite les offsets */
@media (max-width: 600px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-chat-bar {
    width: 100%;
  }

  /* Certains boutons prennent trop de place -> on les aligne bien */
  .hero-btns,
  .hc-cta,
  .partner-links {
    justify-content: center !important;
  }
}
/* =========================
   FIX HERO CHAT + PARTENAIRES
   (à coller en fin de style.css)
========================= */

.hero-chat { width: 100%; }
.hero-chat-bar {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-chat-bar input {
  flex: 1;
  min-width: 0;
}

.hero-chat-results {
  max-width: 860px;
  margin: 14px auto 0 auto;
  width: 100%;
  display: none;
}
.hero-chat-results.is-visible { display: block; }

.hc-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
}

.hc-title {
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.hc-body p {
  margin: 0 0 10px 0;
  color: #334155;
  line-height: 1.6;
}

.hc-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.7;
}
.hc-list li { margin: 6px 0; }

.hc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
}
.hc-btn:hover { transform: translateY(-1px); }

.hc-btn-primary {
  background: #16a34a;
  border-color: rgba(0,0,0,.08);
  color: #fff;
}

/* PARTENAIRES */
.partners-row{
  max-width: 860px;
  margin: 14px auto 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  min-width: 0;
}
.partner-name{
  font-weight: 950;
  color: #0f172a;
  margin: 0 0 6px 0;
  font-size: 14px;
}
.partner-meta{
  font-size: 12px;
  opacity: .85;
  margin: 0 0 8px 0;
}
.partner-note{
  font-size: 12px;
  color: #334155;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partner-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.partner-links a{
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.12);
  padding: 7px 10px;
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 980px){
  .partners-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .partners-row{ grid-template-columns: 1fr; }
  .hero-chat-bar{ gap: 8px; }
}
/* ===== PARTENAIRES (premium tabs) ===== */
.partners-nav{
  display:flex;
  justify-content:center;
  margin:18px auto 12px auto;
}

.partners-tabs{
  display:flex;
  gap:10px;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  max-width:100%;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.partners-tabs::-webkit-scrollbar{ height:8px; }
.partners-tabs::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.12); border-radius:999px; }

.ptab{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.92);
  color:#0f172a;
  font-weight:950;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  position:relative;
}

.ptab:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(0,0,0,.10);
}

.ptab-ico{
  width:28px;height:28px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,197,94,.16));
  border:1px solid rgba(59,130,246,.20);
}

.ptab.active{
  background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(34,197,94,.16));
  border-color:rgba(14,165,233,.30);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

.ptab.active::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:-8px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(14,165,233,.9), rgba(34,197,94,.9));
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}

.partners-hint{
  text-align:center;
  font-weight:900;
  opacity:.82;
  margin:8px 0 14px 0;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}

.partner-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:12px 12px;
  box-shadow:0 14px 34px rgba(0,0,0,.08);
  transition:transform .12s ease, box-shadow .12s ease;
}
.partner-card:hover{ transform:translateY(-2px); box-shadow:0 18px 44px rgba(0,0,0,.12); }

.partner-name{ font-weight:950; margin:0 0 6px 0; font-size:14px; }
.partner-meta{ font-size:12px; opacity:.85; margin:0 0 8px 0; }
.partner-note{ font-size:12px; line-height:1.5; margin:0; opacity:.92; }

.partner-links{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.partner-links a{
  font-size:12px;
  font-weight:950;
  text-decoration:none;
  color:#0f172a;
  border:1px solid rgba(15,23,42,.12);
  padding:7px 10px;
  border-radius:12px;
  background:#fff;
}

.partners-cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}
/* PARTNERS section – clean */
.partners-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(15,23,42,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.ptab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.92);
  color:#0f172a;
  font-weight:950;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.ptab:hover{ transform:translateY(-1px); box-shadow:0 12px 26px rgba(0,0,0,.10); }
.ptab.active{
  background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(59,130,246,.18));
  border-color:rgba(34,197,94,.35);
}

.ptab-ico{
  width:24px;height:24px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(59,130,246,.18), rgba(34,197,94,.16));
  border:1px solid rgba(59,130,246,.20);
  font-size:14px;
}
.ptab-txt{ font-size:13px; }

.partners-hint{
  text-align:center;
  margin:10px auto 0;
  max-width:900px;
  font-weight:900;
  opacity:.75;
}

.partners-grid{
  max-width:980px;
  margin:14px auto 0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
@media(max-width:980px){ .partners-grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media(max-width:520px){ .partners-grid{grid-template-columns:1fr} }

.partner-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  padding:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}
.partner-name{font-weight:950;margin:0 0 6px 0;font-size:14px}
.partner-meta{font-size:12px;opacity:.85;margin:0 0 8px 0}
.partner-note{font-size:12px;line-height:1.5;margin:0}
.partner-links{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.partner-links a{
  font-size:12px;font-weight:900;text-decoration:none;color:#0f172a;
  border:1px solid rgba(15,23,42,.12);
  padding:7px 10px;border-radius:12px;background:#fff
}

/* étoiles en OR */
.partner-stars{
  color:#fbbf24;
  text-shadow:0 2px 10px rgba(251,191,36,.30);
  letter-spacing:1px;
  font-weight:1000;
}

/* =========================
   PARTENAIRES — DESIGN PROPRE
   (tu peux le coller à la fin de style.css)
========================= */
#partenaires .section-title{ text-align:center; }
.partners-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.partner-card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:14px 14px 12px 14px;
  box-shadow:0 14px 36px rgba(0,0,0,.08);
  transition:transform .15s ease, box-shadow .15s ease;
  overflow:hidden;
}
.partner-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}
.partner-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.partner-name{
  margin:0;
  font-weight:950;
  letter-spacing:.1px;
  font-size:15px;
  line-height:1.15;
  color:#0f172a;
}
.partner-badge{
  flex:0 0 auto;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(14,165,233,.14);
  color:#0f172a;
  border:1px solid rgba(14,165,233,.25);
  white-space:nowrap;
}
.partner-meta{
  margin:0 0 10px 0;
  font-size:12px;
  line-height:1.4;
  color:rgba(15,23,42,.75);
}
.partner-note{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:rgba(15,23,42,.82);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.partner-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.partner-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:12px;
  font-weight:950;
  text-decoration:none;
  color:#0f172a;
  padding:8px 10px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(15,23,42,.12);
}
.partner-stars{
  font-size:12px;
  font-weight:900;
  opacity:.92;
  margin-left:6px;
}
.partners-foot{
  margin-top:18px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.partners-skeleton{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  width:100%;
}
.sk-card{
  height:120px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:linear-gradient(90deg, rgba(15,23,42,.05), rgba(15,23,42,.10), rgba(15,23,42,.05));
  background-size:200% 100%;
  animation:sk 1.1s infinite linear;
}
@keyframes sk{0%{background-position:0% 0}100%{background-position:200% 0}}
@media(max-width:980px){
  .partners-grid,.partners-skeleton{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:520px){
  .partners-grid,.partners-skeleton{ grid-template-columns:1fr; }
}

@media(max-width:980px){ .partners-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:520px){ .partners-grid{ grid-template-columns:1fr; } }
/* =========================
   PARTNERS — FIX ÉTOILES JAUNES (anti override)
   ========================= */

.partner-stars,
.partner-stars *,
.partner-card .partner-stars,
.partner-card .partner-stars *{
  color: #fbbf24 !important;          /* jaune */
  fill:  #fbbf24 !important;          /* si jamais c'est un svg */
  text-shadow: 0 2px 10px rgba(251,191,36,.35) !important;
}

.partner-stars{
  letter-spacing: 1px;
  font-weight: 900;
}
/* === STARS: TOUJOURS JAUNE, quoi qu’il arrive === */
.partner-card .partner-stars{
  color:#fbbf24 !important;
  font-weight:900 !important;
  letter-spacing:1px;
  text-shadow:0 2px 10px rgba(251,191,36,.35) !important;
}
.partner-card .partner-stars *{
  color:#fbbf24 !important;
  fill:#fbbf24 !important;
}

/* Sécurité: même si un style “active” recolore tout */
#partners-grid .partner-card .partner-meta{ color: rgba(15,23,42,.85) !important; }
#partners-grid .partner-card .partner-meta .partner-stars{ color:#fbbf24 !important; }
/* ================================
   MENU RUBRIQUES PARTENAIRES
   2 lignes × 5 boutons (desktop)
================================ */

.partners-menu{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
  max-width: 980px;
  margin: 0 auto 28px auto;
}

/* Boutons */
.partners-menu button{
  appearance:none;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.95);
  border-radius:14px;
  padding:12px 10px;
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  transition:all .2s ease;
  color:#0f172a;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}

/* Hover */
.partners-menu button:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(0,0,0,.12);
}

/* Actif */
.partners-menu button.active{
  background:#16a34a;
  color:#fff;
  border-color:#16a34a;
  box-shadow:0 14px 36px rgba(22,163,74,.35);
}

/* ================================
   RESPONSIVE
================================ */

/* Tablette */
@media (max-width: 980px){
  .partners-menu{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px){
  .partners-menu{
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-menu button{
    font-size:14px;
    padding:14px 12px;
  }
}
/* === PARTNERS TABS: 2 lignes de 5 (FORCÉ) === */
#partners-tabs.partners-tabs-2rows{
  display:grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch;
  width: 100%;
  max-width: 1000px;
  margin: 14px auto 0 auto;
  overflow: visible; /* évite le scroll horizontal */
}

/* Boutons: même hauteur + centrés */
#partners-tabs.partners-tabs-2rows .ptab{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.96);
  font-weight: 900;
  cursor: pointer;
  user-select: none;
}

/* Icône + texte */
#partners-tabs.partners-tabs-2rows .ptab-ico{font-size: 16px; line-height:1}
#partners-tabs.partners-tabs-2rows .ptab-txt{font-size: 13px; line-height:1.1}

/* Actif */
#partners-tabs.partners-tabs-2rows .ptab.active{
  border-color: rgba(22,163,74,.45);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

/* Responsive */
@media (max-width: 900px){
  #partners-tabs.partners-tabs-2rows{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 520px){
  #partners-tabs.partners-tabs-2rows{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  #partners-tabs.partners-tabs-2rows .ptab-txt{font-size: 12px}
}
/* =========================================================
   FIX MOBILE + PARTNERS UI (COLLER EN BAS DE style.css)
   ========================================================= */

/* --- HERO search : clic OK sur mobile + taille confortable --- */
.hero-chat { position: relative; z-index: 5; }
.hero-chat-bar{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 18px;
}
.hero-chat-bar input{
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  font-size: 16px; /* iOS: évite le zoom */
  padding: 0 14px;
}
.hero-chat-send{
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  white-space: nowrap;
}

/* Si un overlay ou un élément passe devant sur mobile */
.hero * { pointer-events: auto; }
header, .mobile-overlay { pointer-events: auto; }
.mobile-overlay.active { pointer-events: auto; }

/* --- Tabs 2 lignes : 5 + 5 bien aligné --- */
.partners-tabs-2rows{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
  max-width: 980px;
  margin: 10px auto 14px auto;
}
@media(max-width:900px){
  .partners-tabs-2rows{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media(max-width:520px){
  .partners-tabs-2rows{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* --- Boutons tabs jolis --- */
.ptab{
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 10px 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.ptab:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.ptab.active{
  background: rgba(22,163,74,.12);
  border-color: rgba(22,163,74,.35);
}

/* --- Etoiles JAUNES (stable) --- */
.pstars{ color:#fbbf24 !important; letter-spacing: 1px; }

/* --- Badge rubrique (petite bulle) --- */
.pbadge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.06);
}

/* --- Boutons dans cartes partenaires --- */
.partner-links a.pwa{
  background:#16a34a;
  color:#fff;
  border-color: rgba(22,163,74,.45);
}
/* ================================
   FIX BARRE DE RECHERCHE CHAT (MOBILE)
   ================================ */

@media (max-width: 768px) {

  /* Conteneur de la barre */
  .hero-chat,
  .hero-chat-bar {
    width: 100%;
    padding: 10px;
  }

  /* Champ input du chatbot */
  .hero-chat input,
  .hero-chat-bar input,
  #hero-chat-input {
    width: 100%;
    min-height: 52px;          /* hauteur confortable */
    font-size: 16px;           /* IMPORTANT : évite le zoom iOS */
    padding: 14px 16px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  /* Icône loupe / éléments collés */
  .hero-chat i,
  .hero-chat-bar i {
    font-size: 18px;
    margin-right: 8px;
  }

  /* Bouton rechercher */
  .hero-chat button,
  .hero-chat-send {
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
    border-radius: 14px;
    white-space: nowrap;
  }

  /* Empêche les éléments de se chevaucher */
  .hero-chat-bar {
    display: flex;
    gap: 8px;
    align-items: stretch;
  }
}
/* ==========================================
   FIX MOBILE HERO SEARCH (input + bouton)
   - Input large, texte visible
   - Bouton en dessous
   - Corrige les styles qui "écrasent" l'input
   ========================================== */

@media (max-width: 640px){

  /* Sécurise les largeurs */
  .hero .container,
  .hero-chat,
  #hero-chat-form,
  .hero-chat-bar{
    width: 100% !important;
    max-width: 100% !important;
  }

  /* On empile : input AU-DESSUS, bouton EN DESSOUS */
  .hero-chat-bar{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;

    padding: 12px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;

    /* si ton thème met un fond sombre/transparent */
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    backdrop-filter: blur(10px);
  }

  /* L’icône loupe ne doit plus prendre de place en ligne */
  .hero-chat-bar > i,
  .hero-chat-bar .fa-search{
    display: none !important;
  }

  /* INPUT : grand + texte visible + caret visible */
  #hero-chat-input,
  .hero-chat-bar input{
    width: 100% !important;
    max-width: 100% !important;
    min-height: 54px !important;

    padding: 14px 14px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;

    /* VISIBILITÉ DU TEXTE */
    background: #ffffff !important;
    color: #0f172a !important;
    caret-color: #0f172a !important;

    border: 1px solid rgba(15,23,42,0.18) !important;
    outline: none !important;

    /* iOS: évite zoom + améliore lisibilité */
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  /* Placeholder lisible */
  #hero-chat-input::placeholder,
  .hero-chat-bar input::placeholder{
    color: rgba(15,23,42,0.55) !important;
  }

  /* Bouton en dessous, pleine largeur */
  .hero-chat-send,
  .hero-chat-bar button,
  #hero-chat-form button[type="submit"]{
    width: 100% !important;
    min-height: 52px !important;

    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 900 !important;

    /* garde ton thème si tu as déjà des variables */
    box-sizing: border-box !important;
  }

  /* Petit plus : zone de clic plus agréable */
  #hero-chat-form{
    padding: 0 !important;
  }
}
/* =========================================================
   FIX “ÉTOILES / BADGES / ANNOTATIONS qui disparaissent”
   À COLLER TOUT EN BAS DU style.css
   Objectif : empêcher les overrides aléatoires
========================================================= */

/* 1) On force la couleur du texte des cartes (évite héritage noir/transparent) */
#partners-section, #partners-section *{
  color: inherit;
}
#partners-section .partner-card,
#partners-section .partner-card *{
  opacity: 1 !important;
  visibility: visible !important;
}

/* 2) Force étoiles JAUNES partout (même quand on clique sur une rubrique) */
#partners-section .stars,
#partners-section .partner-stars,
#partners-section .rating-stars,
#partners-section .partner-meta .stars,
#partners-section .partner-card .stars,
#partners-section .partner-card .partner-stars{
  color: #fbbf24 !important;
  -webkit-text-fill-color: #fbbf24 !important; /* iOS/Safari */
  text-shadow: 0 1px 0 rgba(0,0,0,.12) !important;
  filter: none !important;
}

/* 3) Empêche les thèmes “dark” ou hover/active de recolorer en noir */
#partners-section .ptab,
#partners-section .ptab:hover,
#partners-section .ptab:active,
#partners-section .ptab.active{
  color: #0f172a !important;
}
#partners-section .ptab *{
  color: inherit !important;
}

/* 4) Badge rubrique (petite bulle) : toujours visible */
#partners-section .partner-badge,
#partners-section .badge-cat,
#partners-section .partner-tag{
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(2,132,199,.10) !important;
  border: 1px solid rgba(15,23,42,.12) !important;
  color: #0f172a !important;
}

/* 5) Note/annotation : toujours visible */
#partners-section .partner-note,
#partners-section .short-desc,
#partners-section .notes,
#partners-section .partner-card p{
  opacity: 1 !important;
  visibility: visible !important;
  color: #334155 !important;
}

/* 6) Anti “reset” : certains CSS mettent UL/LI à zéro ou cachent */
#partners-section ul,
#partners-section li{
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
}

/* 7) Mini sécurité : si un style global met tout en noir via filter */
#partners-section{
  filter: none !important;
}

/* 8) Si tu as un “dark mode” automatique quelque part */
@media (prefers-color-scheme: dark){
  #partners-section .stars,
  #partners-section .partner-stars{
    color: #fbbf24 !important;
    -webkit-text-fill-color: #fbbf24 !important;
  }
}
/* ================================
   PARTNERS — FIX STABLE (badge + stars)
   Colle tout en bas de style.css
================================ */

/* étoiles toujours jaunes */
.partners-grid .pstars,
.partners-grid .pstars *{
  color:#f5b301 !important;
}

/* badge / annotation toujours visible */
.partners-grid .pbadges{
  display:flex !important;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 10px 0;
}
.partners-grid .pbadge{
  display:inline-flex !important;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  line-height:1;
  background:rgba(22,163,74,.12);
  border:1px solid rgba(22,163,74,.28);
  color:#0f172a;
  white-space:nowrap;
}
.partners-grid .pbadge .dot{
  width:7px;height:7px;border-radius:50%;
  background:#16a34a;
  display:inline-block;
}

/* pills catégorie */
.partners-grid .pcat{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0f172a;
}

/* boutons carte */
.partners-grid .plink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  text-decoration:none;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#0f172a;
}
.partners-grid .plink-wa{
  background:#16a34a;
  border-color:rgba(22,163,74,.35);
  color:#fff;
}

/* mobile: pas de “disparition” */
@media(max-width:520px){
  .partners-grid .pbadge{font-size:11px}
}
/* ===== SECTION ACCUEIL ANNONCES ===== */
.annonces-home {
  padding: 80px 20px;
  background: #f6f6f6;
}

.annonces-home-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* BLOC ROSE */
.annonces-widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  text-align: center;
}

.annonces-widget h3 {
  color: #e85a9c;
  font-size: 22px;
  margin-bottom: 15px;
}

.annonces-widget p {
  font-size: 15px;
  color: #444;
  margin-bottom: 25px;
}

.btn-pink {
  display: block;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #e85a9c;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.btn-outline {
  display: block;
  padding: 12px;
  border-radius: 14px;
  border: 2px solid #e85a9c;
  color: #e85a9c;
  font-weight: bold;
  text-decoration: none;
}

/* ANNONCES À DROITE */
.annonces-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ad-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.ad-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.ad-card p {
  font-size: 14px;
  color: #555;
}

.ad-link {
  display: inline-block;
  margin-top: 10px;
  color: #e85a9c;
  font-weight: bold;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .annonces-home-inner {
    grid-template-columns: 1fr;
  }

  .annonces-preview {
    grid-template-columns: 1fr;
  }
}
/* =============================
   Sécurisation mobile & empilement
   ============================= */

/* Empêche le chevauchement global */
body, html {
    box-sizing: border-box;
}

/* Sections toujours bien espacées */
section {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Grilles adaptatives */
@media (max-width: 768px) {
    .activites-grid,
    .services-grid,
    .urgences-grid,
    .features-grid,
    .contact-container > div,
    .inscription-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Marges internes plus confortables */
    .contact-container,
    .inscription-form {
        padding: 0 1rem;
    }

    /* Texte et boutons plus adaptés */
    .btn, .btn-whatsapp {
        width: 100% !important;
        font-size: 1.1rem;
        padding: 1rem !important;
    }
}
/* =============================
   Correction dernière section mobile
   ============================= */

@media (max-width: 768px) {
    /* Container principal : s'assure qu'il ne déborde pas */
    #inscription .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        overflow: hidden;
    }

    /* Formulaire et blocs d’avantages en colonne */
    #inscription .inscription-form,
    #inscription .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Chaque “feature-card” prend toute la largeur */
    #inscription .feature-card {
        width: 100% !important;
        margin: 0 auto;
    }

    /* Boutons du formulaire full width */
    #inscription .btn {
        width: 100% !important;
    }

    /* Texte centré */
    #inscription .section-title,
    #inscription h3,
    #inscription p {
        text-align: center !important;
    }
}
/* =============================
   Footer mobile : colonnes superposées
   ============================= */
@media (max-width: 768px) {
    footer .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        align-items: center; /* centre les blocs */
    }

    footer .footer-col {
        width: 100% !important; /* prend toute la largeur */
        text-align: center; /* centre le texte et les liens */
    }

    footer .footer-col ul.footer-links {
        padding: 0;
        list-style: none;
    }

    footer .footer-col ul.footer-links li {
        margin-bottom: 0.8rem;
    }

    footer .social-links {
        justify-content: center; /* centre les icônes sociales */
    }

    footer .copyright {
        text-align: center;
        margin-top: 2rem;
    }
}