/* =====================================================
   GLOBAL
===================================================== */

:root{
  --orange:#ee8d0d;
  --orange-hover:#d97706;
}

body{
  margin:0;
  padding:0;
  font-family: system-ui, -apple-system, sans-serif;
}

/* =====================================================
   HEADER
===================================================== */

.header{
  background:#f8f9fa;
}

.logo{
  height:72px;
}
@media (max-width:768px){
  .logo{ height:56px; }
}
@media (max-width:576px){
  .logo{ height:48px; }
}

/* =====================================================
   HERO
===================================================== */

.hero{
  background:url('image3.jpeg') center/cover no-repeat;
  min-height:600px;
  display:flex;
  align-items:center;
  position:relative;
}

/* Overlay */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero .container{
  position:relative;
  z-index:2;
}

/* Zone droite desktop */
@media (min-width:992px){

  .hero-wizard{ padding:120px 0; }

  .hero-right-zone{
    margin-left:50%;
    transform:translateX(-18%);
    max-width:640px;
    text-align:left;
  }

  .hero-title{
    font-size:54px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    text-shadow:0 10px 30px rgba(0,0,0,0.35);
  }

  .hero-subtitle{
    font-size:19px;
    margin-top:14px;
    color:#fff;
    opacity:.9;
    max-width:520px;
  }

  .hero-start-btn{
    margin-top:22px;
    padding:18px 34px;
    border-radius:999px;
    font-weight:800;
    box-shadow:0 18px 55px rgba(0,0,0,0.35);
  }
}

/* Tablet */
@media (max-width:991.98px){
  .hero{
    min-height:520px;
    background-position:left center;
  }

  .hero-wizard{ padding:80px 0; }

  .hero-right-zone{
    margin:0 auto;
    transform:none;
    text-align:center;
    max-width:720px;
  }

  .hero-title{
    font-size:38px;
    line-height:1.18;
    color:#fff;
  }

  .hero-subtitle{
    font-size:17px;
    margin-top:14px;
    color:#fff;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-start-btn{
    margin-top:18px;
  }
}

/* Mobile */
@media (max-width:576px){
  .hero{
    min-height:440px;
  }

  .hero::before{
    background:rgba(0,0,0,0.55);
  }

  .hero-title{
    font-size:30px;
    line-height:1.25;
  }

  .hero-subtitle{
    font-size:16px;
    line-height:1.6;
  }

  .hero-start-btn{
    width:100%;
    max-width:420px;
    margin-top:16px;
  }
}

/* =====================================================
   BOUTONS
===================================================== */

.btn-primary{
  background:var(--orange);
  border-color:var(--orange);
}

.btn-primary:hover{
  background:var(--orange-hover);
  border-color:var(--orange-hover);
}

/* =====================================================
   PROCESS
===================================================== */

.process h2{
  font-size:2rem;
  margin-bottom:40px;
}

.logos{
  display:block;
  width:40%;
  margin:0 auto;
  object-fit:contain;
}

@media (max-width:768px){
  .logos{ width:60%; }
}
@media (max-width:576px){
  .logos{ width:80%; }
}

/* =====================================================
   AVANTAGES
===================================================== */

.medicare-advantage img{
  width:100%;
  border-radius:12px;
}

.advantage-text{
  background:#f28c00;
  color:#fff;
  border-radius:12px;
}

.advantage-list{
  list-style:none;
  padding:0;
}

.advantage-list li{
  margin-bottom:12px;
}

/* =====================================================
   AVIS
===================================================== */

.avis{
  display:block;
  width:min(720px,100%);
  margin:0 auto;
  object-fit:contain;
}

/* =====================================================
   WIZARD
===================================================== */

.wizard-card{
  background:rgba(255,255,255,0.98);
  border-radius:22px;
  box-shadow:0 25px 70px rgba(0,0,0,0.28);
  max-width:800px;
  width:100%;
  margin-left:auto;
  padding:20px;
}

.wizard-progress{
  height:8px;
  background:rgba(0,0,0,0.08);
  border-radius:999px;
  overflow:hidden;
}

.wizard-progress-bar{
  height:100%;
  background:var(--orange);
  transition:width 220ms ease;
}

.wiz-grid{
  display:grid;
  gap:14px;
}

.wiz-grid.two{
  grid-template-columns:repeat(2,1fr);
}

@media (max-width:420px){
  .wiz-grid.two{ grid-template-columns:1fr; }
}

.wiz-choice{
  border:2px solid rgba(0,0,0,0.08);
  background:#fff;
  border-radius:14px;
  padding:16px;
  text-align:center;
  transition:.2s;
}

.wiz-choice:hover{
  border-color:var(--orange);
}

.wiz-choice.is-selected{
  border-color:var(--orange);
  box-shadow:0 12px 30px rgba(238,141,13,0.18);
}

.wizard-nav{
  display:flex;
  gap:12px;
  margin-top:16px;
}

.wizard-next,
.wizard-submit{
  flex:1;
  height:48px;
  border-radius:999px;
  font-weight:800;
}

/* =====================================================
   THANK YOU
===================================================== */

.thankyou-page{
  background:#f5f5f5;
}

.thank-icon{
  width:70px;
  height:70px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:36px;
}

.form-check-label a {
  text-decoration: underline;
}

.wiz-grid.one { grid-template-columns: 1fr; }
.wiz-choice { text-align: left; }
.wiz-label { line-height: 1.35; }

/* Icône container */
.wiz-choice .wiz-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  font-size: 20px;
  transition: all .2s ease;
}

/* Couleur par défaut (orange branding) */
.wiz-choice .wiz-ico i {
  color: #f58c00; /* orange Vérisanté */
}

/* Fond doux coloré */
.wiz-choice .wiz-ico {
  background: rgba(245, 140, 0, 0.12);
}

/* Hover */
.wiz-choice:hover .wiz-ico {
  background: rgba(245, 140, 0, 0.20);
  transform: scale(1.05);
}

/* Quand sélectionné */
.wiz-choice.is-selected {
  border-color: #f58c00;
  box-shadow: 0 10px 25px rgba(245, 140, 0, 0.25);
}

.wiz-choice.is-selected .wiz-ico {
  background: #f58c00;
}

.wiz-choice.is-selected .wiz-ico i {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1c1c1c;
  color: white;
  padding: 15px;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-settings {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.cookie-settings-box {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* ============================= */
/* COOKIE BANNER OPTIMISÉ       */
/* ============================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 18px 20px;
  z-index: 9999;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-buttons .btn-primary {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border: none;
  font-weight: 600;
  padding: 8px 18px;
}

.cookie-buttons .btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
}

.cookie-buttons .btn-link {
  font-size: 13px;
  text-decoration: none;
}

/* ============================= */
/* COOKIE SETTINGS MODAL        */
/* ============================= */

.cookie-settings {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-settings-box {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
  animation: fadeInScale .25s ease-out;
}

.cookie-settings-box h6 {
  font-weight: 600;
}

.cookie-settings-box .form-check-label {
  font-size: 14px;
}

.cookie-settings-box .btn-primary {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border: none;
  font-weight: 600;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-buttons .btn {
    flex: 1;
    text-align: center;
  }
}

/* ===== Formulaire - Questions en gras, pas les réponses ===== */

/* Style global des boutons (choix) */
.wiz-choice {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  font-size: 16px; /* Taille de police plus grande */
  text-align: left;
  margin-bottom: 15px; /* Ajoute de l'espace entre les réponses */
}

.wiz-choice:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.wiz-choice .wiz-label {
  font-weight: normal; /* Garder la police normale pour les réponses */
  font-size: 16px; /* Taille de texte agréable */
  line-height: 1.4;
  color: #333; /* Couleur plus foncée pour la lisibilité */
}

/* Conteneur des questions */
.wiz-step .wiz-grid {
  display: grid;
  gap: 20px; /* Plus d'espace entre les réponses */
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
  margin-bottom: 20px;
}

/* Adaptation mobile - Une seule colonne */
@media (max-width: 768px) {
  .wiz-step .wiz-grid {
    grid-template-columns: 1fr; /* Une seule colonne pour mobile */
  }

  .wiz-choice {
    font-size: 16px; /* Ajuste la taille de police pour mobile */
  }
}

/* ===== Questions - Gras uniquement ===== */
.wiz-step .wizard-question {
  font-weight: bold; /* Met en gras la question */
  font-size: 18px; /* Augmente la taille des questions principales */
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* === Questions en gras dans le wizard === */
.wiz-question {
  font-weight: bold; /* Met en gras la question */
  font-size: 18px; /* Augmente la taille de la question */
  color: #333; /* Couleur légèrement plus foncée pour la lisibilité */
  line-height: 1.4;
}