/* ================================
   SECTION 1 – HERO – MRHBAZHNI
   ================================ */

/* 1) Rétablir l'ancienne image EXACTEMENT comme avant */
.et_pb_section_0 {
    background-image: url("https://mrhbazhni.com/wp-content/uploads/2025/11/marrakech-acrobats.jpg") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 200px 0 !important;
    position: relative !important;
}

/* 2) Overlay foncé comme la version précédente */
.et_pb_section_0:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35); /* identique à ton rendu précédent */
    z-index: 1;
}

/* 3) Conteneur du texte (tes classes existantes) */
.mzh-hero-wrapper {
    position: relative !important;
    z-index: 2 !important;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

/* 4) Titre */
.mzh-hero-title {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* 5) Sous-titre */
.mzh-hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 35px;
}

/* 6) Groupe de boutons */
.mzh-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Bouton primaire */
.mzh-btn-primary {
    background-color: var(--mw-red);
    padding: 16px 38px;
    font-size: 19px;
    border-radius: 8px;
    color: #fff !important;
    display: inline-block;
    font-weight: 600;
}

/* Bouton secondaire */
.mzh-btn-secondary {
    border: 2px solid #fff;
    padding: 16px 38px;
    font-size: 19px;
    border-radius: 8px;
    color: #fff !important;
    display: inline-block;
    font-weight: 600;
}

/* Force hero title color without breaking global H1 style */
.mzh-hero-wrapper .mzh-hero-title {
    color: #fff !important;
}

.mzh-hero-subtitle span:not(:last-child)::after {
    content: " • ";
}

/* ---------------------------------------------------
   RESPONSIVE — Mobile (rendu optimisé)
--------------------------------------------------- */
@media (max-width: 980px) {
    .et_pb_section_0 {
        padding: 140px 0 !important;
        background-position: center top !important;
    }

    .mzh-hero-title {
        font-size: 42px;
        line-height: 1.1;
    }

    .mzh-hero-subtitle {
        font-size: 20px;
    }

    .mzh-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .mzh-btn-primary,
    .mzh-btn-secondary {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
	
}

@media (max-width: 768px) {
    .mzh-hero-subtitle {
        text-align: center !important;
    }

    /* Efface les puces sur mobile */
    .mzh-hero-subtitle span::after {
        content: "" !important;
    }

    /* Met chaque élément sur sa propre ligne */
    .mzh-hero-subtitle span {
        display: block;
        margin-bottom: 8px;
    }

    .mzh-hero-subtitle span:last-child {
        margin-bottom: 0;
    }
}



/* ===================================================
   SECTION 2 — WHY CHOOSE US (FULL CSS)
   Classes: mzh-why-*
   =================================================== */

/* Global section wrapper */
.mzh-why-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ---------- Header (Title + Subtitle) ---------- */

.mzh-why-head {
    text-align: center;
    margin-bottom: 50px;
}

.mzh-why-section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--mw-navy);
    margin: 0 0 12px 0;
}

.mzh-why-section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Grid ---------- */

.mzh-why-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Card ---------- */

.mzh-why-item {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Icon */
.mzh-why-icon {
    font-size: 40px;
    color: var(--mw-red);
    margin-bottom: 15px;
}

/* Card title */
.mzh-why-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--mw-navy);
}

/* Card text */
.mzh-why-text {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Hover effect */
.mzh-why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

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

/* Tablet */
@media (max-width: 980px) {

    .mzh-why-section-title {
        font-size: 32px;
    }

    .mzh-why-section-subtitle {
        font-size: 16px;
    }

    .mzh-why-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .mzh-why-head {
        margin-bottom: 35px;
    }

    .mzh-why-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 50px 20px;
    }

    .mzh-why-item {
        padding: 25px 20px;
    }
}


/* ===========================================
   SECTION 3 — Popular Morocco Private Tours
   Classes: mzh-s3*
   =========================================== */

.mzh-s3{
  max-width:1200px;
  margin:0 auto;
  padding:80px 0;
}

.mzh-s3-head{
  text-align:center;
  margin-bottom:40px;
}

.mzh-s3-title{
  font-size:40px;
  color:var(--mw-navy);
  margin:0 0 10px 0;
}

.mzh-s3-subtitle{
  font-size:18px;
  color:#666;
  margin:0;
}

/* Grid */
.mzh-s3-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}

/* Card */
.mzh-s3-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.mzh-s3-img{
  height:190px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.mzh-s3-body{
  padding:20px 22px 10px;
  flex:1;
}

.mzh-s3-name{
  font-size:20px;
  color:var(--mw-navy);
  margin:0 0 10px 0;
}

.mzh-s3-meta{
  font-size:14px;
  color:#777;
  margin:0 0 10px 0;
}

.mzh-s3-price{
  font-size:18px;
  font-weight:700;
  color:var(--mw-red);
  margin:0 0 6px 0;
}

.mzh-s3-note{
  font-size:14px;
  color:#555;
  margin:0;
}

.mzh-s3-foot{
  padding:14px 22px 22px;
}

.mzh-s3-cta{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--mw-red);
  color:var(--mw-red);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* Hover */
.mzh-s3-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1200px){
  .mzh-s3-grid{ grid-template-columns:repeat(3, 1fr); }
}

@media (max-width: 980px){
  .mzh-s3{ padding:60px 20px; }
  .mzh-s3-grid{ grid-template-columns:repeat(2, 1fr); }
  .mzh-s3-img{ height:170px; }
}

@media (max-width: 600px){
  .mzh-s3-grid{ grid-template-columns:1fr; }
  .mzh-s3-card{ max-width:420px; margin:0 auto; }
  .mzh-s3-title{ font-size:32px; }
  .mzh-s3-subtitle{ font-size:16px; }
}


/* ===========================================
   SECTION 4 — Discover Morocco (Categories Grid)
   Classes: mzh-s4*
   =========================================== */

.mzh-s4{
  max-width:1200px;
  margin:0 auto;
  padding:80px 0;
}

.mzh-s4-head{
  text-align:center;
  margin-bottom:40px;
}

.mzh-s4-title{
  font-size:40px;
  color:var(--mw-navy);
  margin:0 0 10px 0;
}

.mzh-s4-subtitle{
  font-size:18px;
  color:#666;
  margin:0;
}

/* Grid */
.mzh-s4-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

/* Card */
.mzh-s4-card{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  min-height:260px;
  text-decoration:none;
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.mzh-s4-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:scale(1.02);
  transition:transform .35s ease;
}

/* Overlay for readability */
.mzh-s4-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.65) 100%
  );
  z-index:1;
}

/* Content */
.mzh-s4-body{
  position:relative;
  z-index:2;
  padding:22px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:10px;
}

.mzh-s4-name{
  font-size:22px;
  font-weight:800;
  margin:0;
  color:#fff !important;
}

.mzh-s4-note{
  font-size:14px;
  color:rgba(255,255,255,0.92);
  margin:0;
  line-height:1.45;
}

/* CTA */
.mzh-s4-cta{
  align-self:flex-start;
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.35);
  font-size:13px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

/* Hover */
.mzh-s4-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 40px rgba(0,0,0,0.14);
}
.mzh-s4-card:hover .mzh-s4-img{
  transform:scale(1.08);
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1200px){
  .mzh-s4-grid{ grid-template-columns:repeat(3, 1fr); }
}

@media (max-width: 980px){
  .mzh-s4{ padding:60px 20px; }
  .mzh-s4-grid{ grid-template-columns:repeat(2, 1fr); }
  .mzh-s4-card{ min-height:240px; }
}

@media (max-width: 600px){
  .mzh-s4-grid{ grid-template-columns:1fr; }
  .mzh-s4-card{ min-height:220px; }
  .mzh-s4-title{ font-size:32px; }
  .mzh-s4-subtitle{ font-size:16px; }
}


/* ===========================================
   SECTION 5 — Testimonials (Swiper)
   Classes: mzh-s5*
   =========================================== */

.mzh-s5{
  max-width:1200px;
  margin:0 auto;
  padding:80px 0;
}

.mzh-s5-head{
  text-align:center;
  margin-bottom:40px;
}

.mzh-s5-title{
  font-size:40px;
  color:var(--mw-navy);
  margin:0 0 10px 0;
}

.mzh-s5-subtitle{
  font-size:18px;
  color:#666;
  margin:0;
}

/* Slider container */
.mzh-s5-slider{
  position:relative;
  padding:10px 0 50px;
}

/* Card */
.mzh-s5-card{
  background:#fff;
  border-radius:18px;
  padding:26px 26px 22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  height:100%;
}

.mzh-s5-stars{
  color:var(--mw-red);
  font-size:18px;
  letter-spacing:2px;
  margin-bottom:14px;
}

.mzh-s5-text{
  font-size:16px;
  color:#444;
  line-height:1.6;
  margin:0 0 18px 0;
}

.mzh-s5-author{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.mzh-s5-name{
  font-weight:800;
  color:var(--mw-navy);
  font-size:15px;
}

.mzh-s5-meta{
  color:#777;
  font-size:13px;
}

/* Nav */
.mzh-s5-nav{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  pointer-events:none;
}

.mzh-s5-prev,
.mzh-s5-next{
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:800;
  color:var(--mw-navy);
  cursor:pointer;
  pointer-events:auto;
  transition:transform .2s ease;
}

.mzh-s5-prev:hover,
.mzh-s5-next:hover{
  transform:scale(1.06);
}

/* Pagination */
.mzh-s5-pagination{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  text-align:center;
}

/* Swiper bullets styling */
.mzh-s5-pagination .swiper-pagination-bullet{
  width:9px;
  height:9px;
  opacity:0.35;
}
.mzh-s5-pagination .swiper-pagination-bullet-active{
  opacity:1;
}

/* Responsive spacing */
@media (max-width: 980px){
  .mzh-s5{ padding:60px 20px; }
  .mzh-s5-title{ font-size:32px; }
  .mzh-s5-subtitle{ font-size:16px; }
  .mzh-s5-nav{ display:none; } /* cleaner on tablets/mobile */
}

@media (max-width: 600px){
  .mzh-s5-card{ padding:22px 20px; }
}


/* ===========================================
   SECTION 6 — About Morocco / Branding
   Classes: mzh-s6*
   =========================================== */

.mzh-s6{
  max-width:1200px;
  margin:0 auto;
  padding:90px 0;
}

.mzh-s6-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

/* Immersive image (change URL here) */
.mzh-s6-media{
  min-height:420px;
  border-radius:22px;
  background-image:url("https://mrhbazhni.com/wp-content/uploads/2025/11/marrakech-acrobats.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 18px 50px rgba(0,0,0,0.12);
  position:relative;
  overflow:hidden;
}

/* subtle overlay for premium look */
.mzh-s6-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}

/* Content */
.mzh-s6-content{
  padding:10px 0;
}

.mzh-s6-title{
  font-size:42px;
  color:var(--mw-navy);
  margin:0 0 14px 0;
}

.mzh-s6-lead{
  font-size:18px;
  line-height:1.7;
  color:#555;
  margin:0 0 20px 0;
  max-width:520px;
}

.mzh-s6-points{
  list-style:none;
  padding:0;
  margin:0 0 26px 0;
}

.mzh-s6-points li{
  font-size:16px;
  color:#444;
  margin:0 0 10px 0;
}

/* Buttons */
.mzh-s6-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.mzh-s6-btn-primary,
.mzh-s6-btn-secondary{
  display:inline-block;
  padding:14px 22px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  letter-spacing:.02em;
  transition:transform .2s ease, box-shadow .2s ease;
}

.mzh-s6-btn-primary{
  background:var(--mw-red);
  color:#fff !important;
  box-shadow:0 12px 28px rgba(0,0,0,0.16);
}

.mzh-s6-btn-secondary{
  border:1px solid rgba(0,0,0,0.12);
  color:var(--mw-navy) !important;
  background:#fff;
}

.mzh-s6-btn-primary:hover,
.mzh-s6-btn-secondary:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,0.18);
}

/* ===========================================
   Responsive
   =========================================== */

@media (max-width: 980px){
  .mzh-s6{ padding:65px 20px; }
  .mzh-s6-grid{
    grid-template-columns: 1fr;
    gap:26px;
  }
  .mzh-s6-media{
    min-height:320px;
  }
  .mzh-s6-title{
    font-size:34px;
  }
}

@media (max-width: 600px){
  .mzh-s6-media{
    min-height:260px;
    border-radius:18px;
  }
  .mzh-s6-title{
    font-size:30px;
  }
  .mzh-s6-lead{
    font-size:16px;
  }
  .mzh-s6-actions a{
    width:100%;
    text-align:center;
  }
}


/* ===========================================
   SECTION 7 — Footer CTA Premium
   Classes: mzh-s7*
   =========================================== */

.mzh-s7{
  background:linear-gradient(
    135deg,
    var(--mw-red),
    var(--mw-dark-red)
  );
  padding:90px 20px;
  text-align:center;
}

.mzh-s7-inner{
  max-width:900px;
  margin:0 auto;
}

.mzh-s7-title{
  font-size:44px;
  font-weight:900;
  color:#fff !important;
  margin:0 0 14px 0;
}

.mzh-s7-subtitle{
  font-size:18px;
  color:rgba(255,255,255,0.92);
  margin:0 0 34px 0;
  line-height:1.6;
}

/* Buttons */
.mzh-s7-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.mzh-s7-btn-primary,
.mzh-s7-btn-secondary{
  display:inline-block;
  padding:16px 28px;
  border-radius:999px;
  font-size:16px;
  font-weight:800;
  letter-spacing:.04em;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}

/* Primary CTA */
.mzh-s7-btn-primary{
  background:#fff;
  color:var(--mw-red) !important;
  box-shadow:0 14px 34px rgba(0,0,0,0.18);
}

/* Secondary CTA */
.mzh-s7-btn-secondary{
  border:2px solid rgba(255,255,255,0.9);
  color:#fff !important;
  background:transparent;
}

/* Hover */
.mzh-s7-btn-primary:hover,
.mzh-s7-btn-secondary:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(0,0,0,0.22);
}

/* ===========================================
   Responsive
   =========================================== */

@media (max-width: 980px){
  .mzh-s7{
    padding:70px 20px;
  }
  .mzh-s7-title{
    font-size:36px;
  }
}

@media (max-width: 600px){
  .mzh-s7-title{
    font-size:30px;
  }
  .mzh-s7-subtitle{
    font-size:16px;
  }
  .mzh-s7-actions a{
    width:100%;
    text-align:center;
  }
}

