/* =========================================================
   PAGE DESTINATION MAROC — ZHNI EVENTS
   ========================================================= */

/* =========================
   BASE GLOBALE
   ========================= */

.zhni-container{
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-left: 76px;
  padding-right: 76px;
  box-sizing: border-box;
}

.zhni-section-kicker{
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #66fcf1;
}

.zhni-btn-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.zhni-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
}

.zhni-btn--primary{
  color: #0b0c10;
  background: linear-gradient(135deg, #66fcf1 0%, #54a29e 100%);
  box-shadow: 0 14px 30px rgba(102,252,241,0.18);
}

.zhni-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(102,252,241,0.24);
  color: #0b0c10;
}

.zhni-btn--secondary{
  color: #ffffff;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(197,198,199,0.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.01);
}

.zhni-btn--secondary:hover{
  transform: translateY(-2px);
  border-color: #66fcf1;
  color: #66fcf1;
  background: rgba(255,255,255,0.03);
}

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

.zhni-destination-hero{
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background-color: #0b0c10;
}

.zhni-destination-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zhni-destination-hero__bg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zhni-destination-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2,6,13,0.84) 0%,
      rgba(8,17,29,0.78) 32%,
      rgba(17,31,45,0.56) 62%,
      rgba(17,31,45,0.38) 100%
    );
}

.zhni-destination-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.10) 45%,
      rgba(11,12,16,0.34) 100%
    );
}

.zhni-destination-hero .zhni-container{
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 120px;
}

.zhni-destination-hero__content{
  max-width: 860px;
}

.zhni-destination-hero h1{
  margin: 0 0 24px;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.zhni-destination-hero-lead{
  max-width: 740px;
  margin: 0;
  color: #c5c6c7;
  font-size: 18px;
  line-height: 1.9;
}

.zhni-destination-hero-lead strong{
  color: #ffffff;
  font-weight: 700;
}

/* =========================
   TABLETTE
   ========================= */

@media (max-width: 980px){
  .zhni-container{
    padding-left: 42px;
    padding-right: 42px;
  }

  .zhni-destination-hero{
    min-height: 680px;
  }

  .zhni-destination-hero .zhni-container{
    padding-top: 120px;
    padding-bottom: 96px;
  }

  .zhni-destination-hero h1{
    max-width: 100%;
    font-size: clamp(36px, 7vw, 54px);
    line-height: 1.06;
  }

  .zhni-destination-hero-lead{
    max-width: 680px;
    font-size: 17px;
  }

  .zhni-btn-row{
    margin-top: 32px;
  }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px){
  .zhni-container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .zhni-section-kicker{
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .zhni-destination-hero{
    min-height: 620px;
    align-items: flex-end;
  }

  .zhni-destination-hero::before{
    background:
      linear-gradient(
        180deg,
        rgba(2,6,13,0.58) 0%,
        rgba(8,17,29,0.72) 40%,
        rgba(11,12,16,0.88) 100%
      );
  }

  .zhni-destination-hero .zhni-container{
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .zhni-destination-hero h1{
    margin-bottom: 18px;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .zhni-destination-hero-lead{
    max-width: 100%;
    font-size: 16px;
    line-height: 1.8;
  }

  .zhni-btn-row{
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }

  .zhni-btn{
    width: 100%;
    min-height: 50px;
    padding: 0 20px;
    font-size: 14px;
  }
}


/* =========================
   SECTION 02 — DESTINATION
   ========================= */

.zhni-destination-section-two{
  position: relative;
  padding: 120px 0;
  background: #111820;
}

.zhni-destination-section-two::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.zhni-destination-section-two__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.zhni-destination-section-two__content{
  max-width: 760px;
}

.zhni-destination-section-two__content h2{
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.zhni-destination-section-two__content p{
  margin: 0 0 18px;
  color: #c5c6c7;
  font-size: 17px;
  line-height: 1.9;
}

.zhni-destination-section-two__content strong{
  color: #ffffff;
}

/* CARD */

.zhni-destination-highlight-card{
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(102,252,241,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.zhni-destination-highlight-card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(102,252,241,0.10), transparent 60%);
  pointer-events: none;
}

.zhni-destination-highlight-card__label{
  display: inline-block;
  margin-bottom: 16px;
  color: #66fcf1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.zhni-destination-highlight-card h3{
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 25px;
}

.zhni-destination-highlight-card ul{
  margin: 0;
  padding-left: 18px;
}

.zhni-destination-highlight-card li{
  margin-bottom: 12px;
  color: #c5c6c7;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 980px){

  .zhni-destination-section-two{
    padding: 90px 0;
  }

  .zhni-destination-section-two__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px){

  .zhni-destination-section-two{
    padding: 70px 0;
  }

  .zhni-destination-highlight-card{
    padding: 24px;
    border-radius: 22px;
  }

}


/* =========================
   SECTION 03 — TERRITOIRES
   ========================= */

.zhni-destination-section-three{
  position: relative;
  padding: 120px 0;
  background: #0f1620;
}

.zhni-destination-section-three::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.zhni-destination-section-three .zhni-section-heading-center{
  margin-bottom: 80px;
}

.zhni-destination-section-three .zhni-section-heading-center h2{
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.zhni-destination-section-three .zhni-section-heading-center p{
  max-width: 620px;
  margin: 0 auto;
  color: #c5c6c7;
  font-size: 17px;
  line-height: 1.8;
}

/* GRID */

.zhni-destination-territories-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

/* CARD */

.zhni-destination-territory-card{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 440px;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.zhni-destination-territory-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: brightness(0.88) contrast(1.05);
}

.zhni-destination-territory-card:hover img{
  transform: scale(1.08);
  filter: brightness(1) contrast(1.1);
}

/* OVERLAY */

.zhni-destination-territory-overlay{
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.0) 20%,
    rgba(0,0,0,0.85) 100%
  );
}

.zhni-destination-territory-overlay h3{
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.zhni-destination-territory-overlay p{
  margin: 0;
  color: #c5c6c7;
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 980px){

  .zhni-destination-section-three{
    padding: 90px 0;
  }

  .zhni-destination-territories-grid{
    grid-template-columns: 1fr;
  }

}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 640px){

  .zhni-destination-territory-card{
    height: 320px;
  }

  .zhni-destination-section-three .zhni-section-heading-center{
    margin-bottom: 50px;
  }

  .zhni-destination-section-three .zhni-section-heading-center h2{
    font-size: clamp(28px, 8vw, 34px);
  }

  .zhni-destination-territory-overlay{
    padding: 20px;
  }

  .zhni-destination-territory-overlay h3{
    font-size: 20px;
  }

}


/* =========================
   SECTION 04 — CURATION
   ========================= */

.zhni-destination-section-four{
  position: relative;
  padding: 120px 0;
  background: #0b0c10;
}

.zhni-destination-section-four::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* GRID */

.zhni-destination-section-four__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* TEXTE */

.zhni-destination-section-four__content{
  max-width: 620px;
}

.zhni-destination-section-four__content h2{
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.zhni-destination-section-four__content p{
  margin: 0 0 18px;
  color: #c5c6c7;
  font-size: 17px;
  line-height: 1.9;
}

.zhni-destination-section-four__content strong{
  color: #ffffff;
}

/* STACK IMAGES */

.zhni-destination-media-stack{
  position: relative;
  height: 480px;
}

/* IMAGE PRINCIPALE */

.zhni-destination-media-stack__item--main{
  position: absolute;
  width: 75%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* IMAGE SECONDAIRE */

.zhni-destination-media-stack__item--secondary{
  position: absolute;
  width: 55%;
  height: 60%;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0c10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* IMG */

.zhni-destination-media-stack img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.zhni-destination-media-stack__item:hover img{
  transform: scale(1.05);
}

@media (max-width: 980px){

  .zhni-destination-section-four{
    padding: 90px 0;
  }

  .zhni-destination-section-four__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zhni-destination-media-stack{
    height: 420px;
  }

}

@media (max-width: 640px){

  .zhni-destination-section-four{
    padding: 70px 0;
  }

  .zhni-destination-media-stack{
    height: auto;
  }

  .zhni-destination-media-stack__item{
    position: relative;
    width: 100%;
    height: auto;
  }

  .zhni-destination-media-stack__item--secondary{
    margin-top: 16px;
  }

}


/* =========================
   SECTION 05 — MÉTHODE
   ========================= */

.zhni-destination-section-five{
  position: relative;
  padding: 120px 0;
  background: #111820;
}

.zhni-destination-section-five::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* INTRO */

.zhni-destination-method-intro{
  max-width: 820px;
  margin-bottom: 60px;
}

.zhni-destination-method-title{
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.zhni-destination-method-lead{
  margin: 0;
  color: #c5c6c7;
  font-size: 17px;
  line-height: 1.9;
}

/* GRID */

.zhni-destination-method-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

/* CARD */

.zhni-destination-method-step{
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .25s ease;
}

.zhni-destination-method-step:hover{
  transform: translateY(-4px);
  border-color: rgba(102,252,241,0.40);
}

.zhni-destination-method-number{
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #66fcf1;
}

.zhni-destination-method-step h3{
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
  color: #ffffff;
}

.zhni-destination-method-step p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #c5c6c7;
}

@media (max-width: 980px){

  .zhni-destination-section-five{
    padding: 90px 0;
  }

  .zhni-destination-method-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .zhni-destination-method-title{
    font-size: clamp(28px, 5vw, 40px);
  }

}

@media (max-width: 640px){

  .zhni-destination-section-five{
    padding: 70px 0;
  }

  .zhni-destination-method-intro{
    margin-bottom: 40px;
  }

  .zhni-destination-method-title{
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
  }

  .zhni-destination-method-lead{
    font-size: 16px;
    line-height: 1.8;
  }

  .zhni-destination-method-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .zhni-destination-method-step{
    padding: 24px;
    border-radius: 22px;
  }

  .zhni-destination-method-step h3{
    font-size: 18px;
  }

  .zhni-destination-method-step p{
    font-size: 14px;
    line-height: 1.75;
  }

}


/* =========================
   SECTION 06 — CTA FINAL
   ========================= */

.zhni-strategie-cta{
  padding: 120px 0;
  background: #0b0c10;
}

.zhni-strategie-cta-box{
  padding: 64px;
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(102,252,241,0.12) 0%,
      rgba(31,40,51,0.6) 40%,
      rgba(31,40,51,0.9) 100%
    );
  border: 1px solid rgba(102,252,241,0.25);
  text-align: center;
}

.zhni-strategie-cta-box h2{
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  color: #ffffff;
}

.zhni-strategie-cta-box p{
  max-width: 680px;
  margin: 0 auto 34px;
  font-size: 17px;
  line-height: 1.8;
  color: #c5c6c7;
}

.zhni-strategie-cta-box strong{
  color: #ffffff;
}

.zhni-strategie-cta-actions{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .zhni-strategie-cta{
    padding: 90px 0;
  }

  .zhni-strategie-cta-box{
    padding: 48px;
  }
}

@media (max-width: 640px){
  .zhni-strategie-cta{
    padding: 70px 0;
  }

  .zhni-strategie-cta-box{
    padding: 36px;
    border-radius: 24px;
  }

  .zhni-strategie-cta-box h2{
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
  }

  .zhni-strategie-cta-box p{
    font-size: 16px;
    line-height: 1.8;
  }

  .zhni-strategie-cta-actions{
    flex-direction: column;
  }

  .zhni-strategie-cta-actions .zhni-btn{
    width: 100%;
  }
}


/* =========================
   SECTION — MRHBA ZHNI
   ========================= */

.zhni-destination-section-mrhba{
  position: relative;
  padding: 120px 0;
  background: #111820;
}

.zhni-destination-section-mrhba::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.zhni-destination-section-mrhba__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.zhni-destination-section-mrhba__content{
  max-width: 760px;
}

.zhni-destination-section-mrhba__content h2{
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.zhni-destination-section-mrhba__content p{
  margin: 0 0 18px;
  color: #c5c6c7;
  font-size: 17px;
  line-height: 1.9;
}

.zhni-destination-section-mrhba__content p:last-child{
  margin-bottom: 0;
}

.zhni-destination-section-mrhba__content strong{
  color: #ffffff;
}

.zhni-destination-section-mrhba__card{
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(102,252,241,0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.zhni-destination-section-mrhba__card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(102,252,241,0.10), transparent 60%);
  pointer-events: none;
}

.zhni-destination-section-mrhba__label{
  display: inline-block;
  margin-bottom: 16px;
  color: #66fcf1;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.zhni-destination-section-mrhba__card h3{
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
}

.zhni-destination-section-mrhba__card ul{
  margin: 0;
  padding-left: 18px;
}

.zhni-destination-section-mrhba__card li{
  margin-bottom: 12px;
  color: #c5c6c7;
  font-size: 16px;
  line-height: 1.8;
}

.zhni-destination-section-mrhba__card li:last-child{
  margin-bottom: 0;
}

@media (max-width: 980px){

  .zhni-destination-section-mrhba{
    padding: 90px 0;
  }

  .zhni-destination-section-mrhba__grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

@media (max-width: 640px){

  .zhni-destination-section-mrhba{
    padding: 70px 0;
  }

  .zhni-destination-section-mrhba__content h2{
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
  }

  .zhni-destination-section-mrhba__content p{
    font-size: 16px;
    line-height: 1.8;
  }

  .zhni-destination-section-mrhba__card{
    padding: 24px;
    border-radius: 22px;
  }

  .zhni-destination-section-mrhba__card h3{
    font-size: 22px;
  }

  .zhni-destination-section-mrhba__card li{
    font-size: 15px;
    line-height: 1.75;
  }

}