/* POLICE GLOBALE */
body {
  font-family: 'Zolando', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
}



/* ================== NAVBAR ================== */
#navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: 'Zolando', sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

/* Logo */
.nav-logo a {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FF8C00;
  text-decoration: none;
}

/* Liens desktop */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links ul li a:hover {
  color: #FF8C00;
}

/* CTA WhatsApp */
.nav-cta a {
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-cta a:hover {
  transform: scale(1.05);
}

/* Hamburger mobile */
.nav-toggle {
  display: none; /* caché sur desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* ================== RESPONSIVE ================== */
@media screen and (max-width: 992px) {
  .nav-links, .nav-cta {
    display: none; /* cacher les liens et CTA sur mobile par défaut */
  }

  .nav-toggle {
    display: flex; /* afficher hamburger */
  }

  /* Menu mobile actif */
  .nav-links.mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .nav-links.mobile-active ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-cta.mobile-active {
    display: block;
    text-align: center;
    margin: 1rem 0;
  }
}



/* HERO */
.hero {
  min-height: 100vh;
  background: url("images/hero.jpg") center/cover no-repeat;
}

.overlay {
  min-height: 100vh;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.hero-wrapper {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

/* TEXTE GAUCHE */
.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: 4rem; /* titre bien grand */
  font-weight: 800;
  line-height: 1.15;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #FFD700, #FF8C00); /* dégradé jaune → orange */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f0f0f0;
}

.hero-text p {
  margin-top: 1.4rem;
  max-width: 520px;
  font-size: 1.05rem;
  color: #e4e4e4;
}

/* FORMULAIRE DROITE */
.hero-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-form h3 {
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  color: #FF8C00;
}

.form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.hero-form textarea {
  resize: none;
  height: 105px;
}

.hero-form button {
  width: 100%;
  padding: 0.95rem;
  margin-top: 0.5rem;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  text-align: center;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin: 1.2rem auto 0;
  }
}



/* Section 2 : Pourquoi nous choisir */
#why-us {
  padding: 5rem 1.5rem;
  background: #f9f9f9;
  font-family: 'Zolando', sans-serif;
  text-align: center;
}

#why-us .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#why-us .section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: #555;
}

#why-us .why-us-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

#why-us .why-us-feature {
  background: #fff;
  padding: 1.8rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#why-us .why-us-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Icônes avec dégradé jaune → orange */
#why-us .why-us-feature i {
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

#why-us .why-us-feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#why-us .why-us-feature p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
}




/* Section 2.1 : Nos services */
#services{
  padding:5rem 1.5rem;
  background:#f9f9f9;
  font-family:'Zolando',sans-serif;
  text-align:center;
}

#services .section-title{
  font-size:2.5rem;
  font-weight:800;
  margin-bottom:0.8rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

#services .section-subtitle{
  font-size:1.15rem;
  margin-bottom:3rem;
  color:#555;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
}

.service-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  opacity:0;
  transform:translateY(30px);
}

.service-card.visible{
  opacity:1;
  transform:translateY(0);
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.service-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.service-info{
  padding:1rem 1.2rem;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.service-info h3{
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:0.5rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.service-info p{
  font-size:0.95rem;
  color:#555;
  margin-bottom:1rem;
  line-height:1.4;
}

.service-cta{
  align-self:flex-start;
  padding:0.6rem 1.2rem;
  border-radius:8px;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition:background 0.3s ease;
}

.service-cta:hover{
  background:linear-gradient(90deg,#FFB700,#FF6C00);
}





/* Section 3 : Nos biens disponibles */
#properties {
  padding: 5rem 1.5rem;
  background: #fff;
  font-family: 'Zolando', sans-serif;
  text-align: center;
}

#properties .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#properties .section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: #555;
}

#properties .properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

#properties .property-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

#properties .property-card.visible {
  opacity: 1;
  transform: translateY(0);
}

#properties .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

#properties .property-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#properties .property-info {
  padding: 1rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#properties .property-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#properties .property-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8rem;
}

#properties .property-info .property-cta {
  align-self: flex-start;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

#properties .property-info .property-cta:hover {
  background: linear-gradient(90deg, #FFB700, #FF6C00);
}

@media(max-width:768px){
  #properties .property-card img {height:180px;}
}




/* Section 3.1 : Notre méthodologie */
#methodology{
  padding:5rem 1.5rem;
  background:#fff;
  font-family:'Zolando',sans-serif;
  text-align:center;
}

#methodology .section-title{
  font-size:2.5rem;
  font-weight:800;
  margin-bottom:0.8rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

#methodology .section-subtitle{
  font-size:1.15rem;
  margin-bottom:3rem;
  color:#555;
}

.method-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
}

.method-card{
  background:#f9f9f9;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s;
  opacity:0;
  transform:translateY(30px);
}

.method-card.visible{
  opacity:1;
  transform:translateY(0);
}

.method-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.method-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.method-info{
  padding:1rem 1.2rem;
  text-align:left;
}

.method-info h3{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:0.5rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.method-info p{
  font-size:0.95rem;
  color:#555;
  line-height:1.4;
}



/* Section 4 : Témoignages */
#testimonials{
  padding:5rem 1.5rem;
  background:#f9f9f9;
  font-family:'Zolando',sans-serif;
  text-align:center;
}

#testimonials .section-title{
  font-size:2.5rem;
  font-weight:800;
  margin-bottom:0.8rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

#testimonials .section-subtitle{
  font-size:1.15rem;
  margin-bottom:3rem;
  color:#555;
}

#testimonials .testimonials-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  max-width:1000px;
  margin:0 auto;
}

#testimonials .testimonial-card{
  background:#fff;
  padding:2rem;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  opacity:0;
  transform:translateY(30px);
}

#testimonials .testimonial-card.visible{
  opacity:1;
  transform:translateY(0);
}

#testimonials .testimonial-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

#testimonials .testimonial-text{
  font-size:0.95rem;
  color:#555;
  margin-bottom:1rem;
  line-height:1.5;
  font-style:italic;
}

#testimonials .testimonial-name{
  font-size:1.1rem;
  font-weight:700;
  color:#003f8f;
}

#testimonials .testimonial-role{
  font-size:0.9rem;
  color:#777;
}



/* Section 5 : Contact Premium */
#contact {
  font-family: 'Zolando', sans-serif;
  padding:5rem 1.5rem;
  background:#fff;
}

.contact-container {
  max-width:1200px;
  margin:0 auto;
}

.contact-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  border-radius:16px;
  padding:2rem;
  flex-wrap:wrap;
}

/* Formulaire */
#contact-form {
  background: rgba(255,255,255,0.95);
  padding:2rem;
  border-radius:12px;
  flex:1;
  min-width:280px;
  max-width:500px;
  box-sizing:border-box;
}

#contact-form h2.form-title{
  margin-bottom:0.5rem;
  font-size:2rem;
  font-weight:800;
  background: linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

#contact-form p.form-subtitle{
  font-size:1rem;
  margin-bottom:1.5rem;
  color:#555;
}

#contact-form .form-group{
  margin-bottom:1rem;
}

#contact-form input,
#contact-form textarea{
  width:100%;
  padding:0.8rem;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:1rem;
  box-sizing:border-box;
}

#contact-form textarea{resize:none;}

#contact-form button{
  width:100%;
  padding:0.8rem;
  background: linear-gradient(90deg,#FFD700,#FF8C00);
  border:none;
  border-radius:8px;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#contact-form button:hover{
  background: linear-gradient(90deg,#FFB700,#FF6C00);
  transform:scale(1.02);
}

/* Image à droite */
.contact-image{
  flex:1;
  min-width:280px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.contact-image img{
  width:100%;
  max-width:500px;
  border-radius:12px;
  object-fit:cover;
}

/* ================== RESPONSIVE ================== */
@media(max-width:992px){
  .contact-content{
    flex-direction:column;
    align-items:center;
    padding:1.5rem;
  }
  .contact-image{
    margin-top:1.5rem;
    width:100%;
  }
  #contact-form{
    width:100%;
    max-width:450px;
  }
}

@media(max-width:576px){
  #contact-form h2.form-title{
    font-size:1.5rem;
  }
  #contact-form p.form-subtitle{
    font-size:0.9rem;
  }
  #contact-form button{
    font-size:0.95rem;
  }
  .contact-image img{
    max-width:100%;
  }
}





/* Section 6 : FAQ */
#faq{
  padding:5rem 1.5rem;
  background:#f9f9f9;
  font-family:'Zolando',sans-serif;
  text-align:center;
}

#faq .section-title{
  font-size:2.5rem;
  font-weight:800;
  margin-bottom:0.8rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

#faq .section-subtitle{
  font-size:1.15rem;
  margin-bottom:3rem;
  color:#555;
}

.faq-grid{
  max-width:900px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:1rem;
  text-align:left;
}

.faq-item{
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  background:#fff;
}

.faq-question{
  width:100%;
  text-align:left;
  padding:1rem 1.2rem;
  font-size:1rem;
  font-weight:700;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  color:#fff;
  border:none;
  outline:none;
  cursor:pointer;
  transition:background 0.3s ease;
}

.faq-question:hover{
  background:linear-gradient(90deg,#FFB700,#FF6C00);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 1.2rem;
  transition:max-height 0.4s ease, padding 0.4s ease;
  background:#fff;
}

.faq-answer p{
  margin:1rem 0;
  color:#555;
  line-height:1.5;
}

/* Affiche l'accordéon ouvert */
.faq-item.active .faq-answer{
  max-height:300px; /* s’adapte au texte */
  padding:1rem 1.2rem;
}


/* ================== FOOTER GLOBAL ================== */
#footer{
  background:#111;
  color:#fff;
  font-family:'Zolando',sans-serif;
  padding:4rem 1.5rem 2rem 1.5rem;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:2rem;
  max-width:1200px;
  margin:0 auto;
  box-sizing:border-box;
}

.footer-container h3{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:1rem;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-container p, 
.footer-container a, 
.footer-container li{
  font-size:0.95rem;
  color:#fff;
  line-height:1.6;
  text-decoration:none;
  transition:color 0.3s ease;
}

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

.footer-links li{
  margin-bottom:0.6rem;
}

.footer-links li a:hover{
  color:#FFD700;
}

/* Newsletter */
.footer-newsletter input, 
.footer-newsletter textarea{
  width:100%;
  margin-bottom:0.8rem;
  padding:0.7rem 1rem;
  border-radius:8px;
  border:none;
  outline:none;
  font-size:0.95rem;
  box-sizing:border-box;
}

.footer-newsletter button{
  width:100%;
  padding:0.8rem;
  border:none;
  border-radius:8px;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-newsletter button:hover{
  background:linear-gradient(90deg,#FFB700,#FF6C00);
  transform:scale(1.02);
}

/* Footer bas */
.footer-bottom{
  text-align:center;
  margin-top:2rem;
  font-size:0.85rem;
  color:#aaa;
  border-top:1px solid rgba(255,255,255,0.2);
  padding-top:1rem;
}

/* ================== RESPONSIVE ================== */
@media(max-width:992px){
  .footer-container{
    flex-direction:column;
    align-items:center;
    gap:1.5rem;
  }

  .footer-newsletter input, 
  .footer-newsletter textarea, 
  .footer-newsletter button{
    max-width:100%;
  }

  .footer-links ul{
    text-align:center;
  }

  .footer-links li{
    margin-bottom:0.5rem;
  }
}

@media(max-width:576px){
  .footer-container h3{
    font-size:1rem;
  }

  .footer-container p, 
  .footer-container a, 
  .footer-container li{
    font-size:0.9rem;
  }

  .footer-newsletter input, 
  .footer-newsletter textarea{
    font-size:0.9rem;
    padding:0.6rem 0.8rem;
  }

  .footer-newsletter button{
    font-size:0.9rem;
    padding:0.7rem 0.8rem;
  }

  .footer-bottom{
    font-size:0.8rem;
  }
}


/* BOT FLOTTANT DIFFÉRÉ : BotDelayedPro */
#bot-delayed-pro{
  position:fixed;
  bottom:20px;
  right:20px;
  z-index:9999;
  font-family:'Zolando',sans-serif;
  display:none; /* invisible au départ */
}

.bot-button{
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  justify-content:center;
  align-items:center;
  cursor:pointer;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  transition:transform 0.3s ease;
}
.bot-button:hover{
  transform:scale(1.05);
}
.bot-button img{
  width:35px;
  height:35px;
}

.bot-popup{
  display:none;
  width:320px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.25);
  position:absolute;
  bottom:70px;
  right:0;
  padding:1rem;
}

.bot-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:0.5rem;
}
.bot-header h4{
  margin:0;
  font-size:1.1rem;
  font-weight:700;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
#bot-close{
  cursor:pointer;
  font-size:1.2rem;
  font-weight:700;
  color:#333;
}

.bot-popup p{
  font-size:0.95rem;
  margin-bottom:1rem;
  color:#555;
  line-height:1.5;
}

.bot-cta{
  display:block;
  text-align:center;
  background:linear-gradient(90deg,#FFD700,#FF8C00);
  color:#fff;
  font-weight:700;
  font-size:0.95rem;
  padding:0.8rem;
  border-radius:8px;
  text-decoration:none;
  transition:transform 0.2s ease, background 0.2s ease;
}
.bot-cta:hover{
  background:linear-gradient(90deg,#FFB700,#FF6C00);
  transform:scale(1.03);
}




/* ================== POPUP CONTENEUR IMAGE À GAUCHE ================== */
#popup-welcome-side{
  display:none; /* caché par défaut */
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:9999;
  justify-content:center;
  align-items:center;
  font-family:'Zolando',sans-serif;
  background:rgba(0,0,0,0.3); /* léger overlay derrière */
  padding:1rem;
  box-sizing:border-box;
}

.popup-box{
  display:flex;
  max-width:900px;
  width:90%;
  background:linear-gradient(135deg,#1f1f1f,#000000);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0, 0, 0, 0.468);
  position:relative;
  flex-wrap:wrap; /* permet l’empilement sur mobile */
}

/* Image à gauche */
.popup-image{
  flex:1 1 50%;
  min-width:300px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
}

.popup-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0; /* pas de bordure sur image */
}

/* Texte à droite */
.popup-text{
  flex:1 1 50%;
  min-width:300px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-sizing:border-box;
}

.popup-text h2{
  font-size:2rem;
  font-weight:800;
  margin-bottom:1rem;
  color:#fff;
}

.popup-text p{
  font-size:1rem;
  line-height:1.6;
  color:#fff;
  margin-bottom:1.5rem;
}

/* CTA */
.popup-cta{
  display:inline-block;
  background:#fff;
  color:#FF8C00;
  font-weight:700;
  padding:0.8rem 1.5rem;
  border-radius:12px;
  text-decoration:none;
  font-size:1rem;
  transition:transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-align:center;
  max-width:200px;
}
.popup-cta:hover{
  transform:scale(1.05);
  background:#FFD700;
  color:#fff;
}

/* Bouton de fermeture */
#popup-close{
  position:absolute;
  top:15px;
  right:20px;
  font-size:2rem;
  font-weight:700;
  color:#fff;
  cursor:pointer;
}

/* ================== RESPONSIVE ================== */
@media(max-width:992px){
  .popup-box{
    flex-direction:column;
    max-width:95%;
  }

  .popup-image, .popup-text{
    flex:1 1 100%;
    min-width:auto;
    width:100%;
  }

  .popup-text{
    padding:1.5rem;
    text-align:center;
  }

  .popup-text h2{
    font-size:1.7rem;
  }

  .popup-text p{
    font-size:0.95rem;
  }

  .popup-cta{
    margin:0 auto;
  }
}

@media(max-width:576px){
  .popup-text h2{
    font-size:1.5rem;
  }
  .popup-text p{
    font-size:0.9rem;
  }
  .popup-cta{
    font-size:0.95rem;
    padding:0.7rem 1.2rem;
  }
}
