/* ===================== VARIABLES ===================== */
:root{
  --header-h:64px;
  --accent:#ff6b00;
  --accent2:#ff8f3a;
  --border:#e5e6ea;
  --bg:#ffffff;
  --text:#111111;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,.08);
}

/* ===================== BASE ===================== */
*{ box-sizing:border-box; }
html,body{ width:100%; max-width:100%; overflow-x:hidden; margin:0; padding:0; color:var(--text); background:var(--bg); }
img,video{ display:block; max-width:100%; height:auto; }
.container{ width:100%; max-width:1080px; margin:0 auto; padding:0 16px; }
main{ display:block; }
a{ color:inherit; text-decoration:none; }

/* Logo */
.logo:hover{ opacity:.9; }
.logo img{
  height:48px; width:auto; display:block; object-fit:contain; transition:transform .2s ease;
}
.logo:hover img{ transform:scale(1.03); }

/* ===================== HEADER / NAV ===================== */
.header{
  position:fixed; top:0; left:0; right:0; z-index:300;
  background:transparent; transition:.25s;
}
.header.scrolled{
  background:rgba(255,255,255,.75);
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}
@media (prefers-color-scheme:dark){
  .header.scrolled{ background:rgba(22,24,28,.55); }
}

.container.nav{
  display:flex; align-items:center; gap:16px;
  height:64px; padding:8px 0;
}
.logo{ flex:0 0 auto; }
.menu{ display:none; margin-left:auto; }
@media (min-width:900px){
  .menu{ display:flex; gap:18px; align-items:center; }
}

/* ===================== BURGER / DRAWER ===================== */
.burger{
  margin-left:auto;
  width:42px; height:42px; border-radius:12px; border:1px solid var(--border);
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  display:inline-flex; align-items:center; justify-content:center;
  position:relative; cursor:pointer; z-index:310; transition:background .2s ease;
}
.burger span{
  position:absolute; width:22px; height:2px; background:var(--text);
  border-radius:2px; transition:transform .25s ease, opacity .2s ease, top .25s ease;
}
.burger span:nth-child(1){ top:13px; }
.burger span:nth-child(2){ top:20px; }
.burger span:nth-child(3){ top:27px; }
.burger.active span:nth-child(1){ transform:rotate(45deg); top:20px; }
.burger.active span:nth-child(2){ opacity:0; }
.burger.active span:nth-child(3){ transform:rotate(-45deg); top:20px; }
@media (min-width:900px){ .burger{ display:none; } }

.drawer{ position:fixed; inset:0; display:none; z-index:250; }
.drawer.active{ display:block; }
.drawer .overlay{
  position:absolute; inset:0;
  background:rgba(255,255,255,.45);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  transition:opacity .25s ease; opacity:1;
}
.drawer .panel{
  position:absolute; top:0; right:0; width:min(380px,78vw); height:100%;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px) saturate(140%); -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-left:2px solid rgba(255,107,0,.35);
  box-shadow:0 10px 40px rgba(255,107,0,.25);
  padding:18px 16px; display:flex; flex-direction:column; gap:12px;
  transform:translateX(100%); transition:transform .25s ease;
}
.drawer.active .panel{ transform:translateX(0); }

/* Cartes internes orangées (liens/langues) */
.menu-card{
  background:linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,107,0,.10));
  border:1px solid rgba(255,107,0,.35); border-radius:16px; padding:12px;
  backdrop-filter:blur(16px) saturate(140%); -webkit-backdrop-filter:blur(16px) saturate(140%);
  box-shadow:0 10px 30px rgba(0,0,0,.08);  margin-top: 60px; /* décale le bloc complet */
}
.menu-card .list{ display:flex; flex-direction:column; gap:8px; }
.menu-card .list a{
  display:block; padding:12px 10px; border-radius:12px;
  background:rgba(255,255,255,.4); border:1px solid rgba(255,255,255,.45);
  color:#000; font-weight:700;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.menu-card .list a:hover{
  transform:translateX(3px);
  background:rgba(255,107,0,.12);
  border-color:rgba(255,107,0,.6);
}

.divider{
  border:0; height:1px; margin:14px 0;
  background:linear-gradient(90deg, rgba(255,255,255,.72), rgba(255,107,0,.6), rgba(255,107,0,0));
}

.lang-card{
  background:linear-gradient(135deg, rgba(255,107,0,.12), rgba(255,107,0,.08));
  border:1px solid rgba(255,107,0,.25); border-radius:16px; padding:12px;
  backdrop-filter:blur(12px) saturate(140%); -webkit-backdrop-filter:blur(12px) saturate(140%);
}
.lang-card .label{ margin:0 0 8px 2px; font-size:14px; color:#000; font-weight:700; text-transform:uppercase; opacity:.9; }
.lang-buttons{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.btn-lang{
  height:40px; border-radius:12px; border:1px solid rgba(255,107,0,.3);
  background:rgba(255,255,255,.5); color:#ff6b00; font-weight:700;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.btn-lang:hover{ background:rgba(255,107,0,.15); border-color:rgba(255,107,0,.5); }

/* CTA drawer */
.btn-cta{
  margin-top:12px; height:48px; border-radius:14px; border:none;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff; font-weight:800; letter-spacing:.3px;
  box-shadow:0 8px 24px rgba(255,107,0,.35);
  display:flex; align-items:center; justify-content:center;
}
.pulse{ position:relative; animation:pulseGlow 2.1s ease-out infinite; }
@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(255,107,0,.6);}
  70%{box-shadow:0 0 0 18px rgba(255,107,0,0);}
  100%{box-shadow:0 0 0 0 rgba(255,107,0,0);}
}
html[dir="rtl"] .menu-card .list a:hover{ transform:translateX(-3px); }

/* ===================== HERO ===================== */
.hero{
  position:relative; height:100vh; min-height:560px;
  overflow:hidden; display:grid; align-items:end; isolation:isolate;
}
@supports (height: 100dvh){ .hero{ height:100dvh; } }
@supports (height: 100svh){ .hero{ height:100svh; } }

.hero video{
  position:absolute; inset:0; width:100%; height:100%;
  max-width:none; object-fit:cover; object-position:center; pointer-events:none; z-index:0;
}
.hero .shade{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.35) 38%, rgba(0,0,0,.60) 100%),
    radial-gradient(60% 40% at 70% 20%, rgba(255,107,0,.20) 0%, rgba(255,107,0,0) 70%);
}
.hero .content{
  position:relative; z-index:2; color:#fff;
  padding: calc(var(--header-h) + 8px) 0 56px;
}
.hero h1{ margin:10px 0 8px; line-height:1.15; text-shadow:0 2px 18px rgba(0,0,0,.35); }
.hero p{ max-width:720px; margin:0 0 14px; text-shadow:0 2px 14px rgba(0,0,0,.35); }
.hero .cta{ display:flex; gap:10px; flex-wrap:wrap; }
.hero + .section{ margin-top:0; }

/* ===================== BUTTONS (généraux) ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px; border-radius:12px; border:1px solid var(--border);
  background:#fff; color:#111; font-weight:700; text-decoration:none;
  transition:transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{
  border:none; background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff; box-shadow:0 8px 20px rgba(255,107,0,.28);
}
.btn-primary:hover{ box-shadow:0 10px 26px rgba(255,107,0,.38); }
.btn-wa{
  border:none; background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff; font-weight:800; box-shadow:0 8px 20px rgba(255,107,0,.28);
}
.btn-wa:hover{ box-shadow:0 10px 26px rgba(255,107,0,.38); }

/* ===================== FORM / POPUP ===================== */
.popup{ position:fixed; inset:0; display:none; z-index:120; }
.popup.active{ display:grid; place-items:center; }
.popup .overlay{ position:absolute; inset:0; background:rgba(0,0,0,.48); }
.popup .box{
  position:relative; background:var(--bg); border:1px solid var(--border);
  border-radius:16px; padding:16px; width:94%; max-width:520px; box-shadow:var(--shadow);
}
.popup .close{ position:absolute; right:8px; top:8px; border:none; background:transparent; font-size:20px; opacity:.7; }

.form .grid{ display:grid; gap:10px; }
input,select,textarea{
  width:100%; height:44px; padding:0 12px; border-radius:12px; border:1px solid var(--border);
  background:#fff; color:#111; font:inherit;
}
textarea{ height:96px; padding:10px 12px; resize:vertical; }
.form button[type="submit"]{ margin-top:8px; }
@media (min-width:720px){
  .form .grid{ grid-template-columns:repeat(2,1fr); }
  .form .grid textarea{ grid-column:1/-1; }
}
@media (prefers-color-scheme:dark){
  input,select,textarea{ background:#0f1113; color:#f3f3f3; border-color:#222; }
}

/* ===================== GALLERY ===================== */
.gallery{
  display:grid; grid-template-columns:repeat(2,1fr); gap:8px;
  width:100%; max-width:100%; overflow:hidden; padding:0; margin:0 auto;
}
.gallery img{
  display:block; width:100%; height:auto; border-radius:14px; object-fit:cover;
  opacity:0; transform:translateY(12px); transition:opacity .4s ease, transform .4s ease;
}
.gallery img.visible{ opacity:1; transform:none; }
.gallery img:hover{ transform:scale(1.04); }
@media (max-width:600px){ .gallery{ grid-template-columns:1fr 1fr; gap:6px; } }
@media (min-width:900px){ .gallery{ grid-template-columns:repeat(4,1fr); gap:10px; } }

/* ===================== CARDS / SECTIONS ===================== */
.section{ padding:48px 0; }
.cards{ display:grid; grid-template-columns:1fr; gap:14px; }
.card{
  background:var(--card); border:1px solid var(--border); border-radius:16px;
  overflow:hidden; box-shadow:var(--shadow);
}
.card .body{ padding:14px; }
@media (min-width:900px){ .cards{ grid-template-columns:repeat(3,1fr); } }

/* =======================================================
   EXPERIENCE SECTIONS (Shared)
   ======================================================= */
.experience-section{
  --accent:#ff6b00; --accent2:#ff8f3a;
  padding:56px 0;
  background:linear-gradient(180deg,#fff 0,#fff 48%,#fff7f0 100%);
}
.experience-section .container{ width:100%; max-width:1080px; margin:0 auto; padding:0 16px; }

/* Banner */
.experience-section .banner{
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow:0 10px 38px rgba(0,0,0,.12); transform:translateZ(0);
}
.experience-section .banner img{
  width:100%; height:56svh; min-height:320px; object-fit:cover; display:block;
  transform:scale(1.03); transition:transform .9s ease;
}
.experience-section .banner:hover img{ transform:scale(1.06); }
.experience-section .badge{
  position:absolute; left:14px; top:14px; padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.85); font-weight:800; color:#111; backdrop-filter:blur(8px);
}
.experience-section .tag{
  position:absolute; right:14px; bottom:14px; padding:8px 12px; border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff; font-weight:800; box-shadow:0 8px 24px rgba(255,107,0,.35);
}

/* Title + chips */
.experience-section .title{ display:flex; flex-direction:column; gap:10px; margin:18px 0 8px; }
.experience-section h2{ font-size:clamp(26px,4vw,38px); line-height:1.1; color:#111; margin:0; }
.experience-section .subtitle{ color:#565a61; font-weight:600; }

.experience-section .chips{ display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 18px; }
.experience-section .chip{
  padding:8px 10px; border-radius:12px; background:#fff; border:1px solid #eee; color:#222; font-weight:700;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.experience-section .chip--price{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff; border:none; box-shadow:0 10px 24px rgba(255,107,0,.28);
}

/* Layout + article */
.experience-section .grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:6px; }
@media (min-width:900px){
  .experience-section .grid{ grid-template-columns:1.35fr .9fr; gap:22px; }
}
.experience-section .article{
  background:#fff; border:1px solid #eee; border-radius:16px; padding:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}
.experience-section .article p{ color:#222; line-height:1.6; margin:0 0 12px; }

/* Inline images 
/*.experience-section .figure{
/*  border-radius:14px; overflow:hidden; box-shadow:0 10px 26px rgba(0,0,0,.10); margin:10px 0 14px;
/*  transform:translateY(8px); opacity:0; transition:transform .6s ease,opacity .6s ease;
} */ 
/*.experience-section .figure img{ width:100%; height:auto; display:block; object-fit:cover; }
/*@media (min-width:900px){
/*  .experience-section .figure.float-left{ float:left; width:46%; margin:4px 16px 12px 0; }
/*  .experience-section .figure.float-right{ float:right; width:46%; margin:4px 0 12px 16px; }
/*}  */
.experience-section .figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* optionnel — rend les images plus douces */
}

/* Pour éviter que le conteneur parent s’écrase à cause des floats */
.experience-section::after {
  content: "";
  display: table;
  clear: both;
}

/* Desktop */
@media (min-width: 900px) {
  .experience-section .figure.float-left {
    float: left;
    width: 46%;
    margin: 4px 16px 12px 0;
  }

  .experience-section .figure.float-right {
    float: right;
    width: 46%;
    margin: 4px 0 12px 16px;
  }
}

/* Side card */
.experience-section .side{
  background:#fff; border:1px solid #eee; border-radius:16px; padding:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.08); position:sticky; top:84px; align-self:start;
}
.experience-section .side h3{ margin:6px 0 10px; font-size:18px; }
.experience-section .inc{ display:grid; grid-template-columns:1fr 1fr; gap:8px; margin:10px 0 6px; }
.experience-section .inc .item{
  background:#fff7f0; border:1px solid rgba(255,107,0,.18); color:#222; padding:10px;
  border-radius:12px; font-weight:700;
}
.experience-section .note{ color:#565a61; font-size:13px; margin:8px 0 12px; }

/* Reveal + Animations */
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

.pulse{ position:relative; animation:pulseGlow 2.1s ease-out infinite; }
@keyframes pulseGlow{
  0%{ box-shadow:0 0 0 0 rgba(255,107,0,.55); }
  70%{ box-shadow:0 0 0 18px rgba(255,107,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,107,0,0); }
}

/* ===== Tours grid (1 col mobile, 2 cols desktop) ===== */
.tours-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:900px){ .tours-grid{ grid-template-columns:repeat(2,1fr); gap:16px; } }

/* ===== Tour card: clickable + hover + micro-move ===== */
.card.tour{
  position:relative; border-radius:16px; overflow:hidden;
  border:1px solid var(--border); background:#fff;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transform:translateY(6px);
  transition:transform .22s ease, box-shadow .22s ease;
  cursor:pointer;
}
.card.tour img{
  width:100%; height:220px; object-fit:cover; display:block; transition:transform .5s ease;
}
.card.tour .body{ padding:14px; }
.card.tour h3{ margin:0 0 6px; line-height:1.25; }
.card.tour p{ margin:0 0 10px; color:#565a61; }
.card.tour .details{ align-self:flex-start; }
.card.tour .full-link{ position:absolute; inset:0; z-index:1; }
.card.tour:hover{ transform:translateY(0); box-shadow:0 12px 28px rgba(0,0,0,.10); }
.card.tour:hover img{ transform:scale(1.04); }
.card.tour:active{ transform:translateY(1px) scale(.995); }
.card.tour.reveal{ opacity:0; transform:translateY(14px); }
.card.tour.reveal.in{ opacity:1; transform:translateY(0); transition:opacity .45s ease, transform .45s ease, box-shadow .22s ease; }

/* === WHY US PAGE ================================ */
.why-grid{ display:grid; grid-template-columns:1fr; gap:28px; }
@media (min-width:900px){ .why-grid{ grid-template-columns:repeat(3, 1fr); } }
.why-card{
  background:rgba(255,255,255,.7); border-radius:18px; overflow:hidden;
  box-shadow:0 8px 28px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover{ transform: translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,.12); }
.why-card img{ width:100%; height:220px; object-fit:cover; }
.why-card .content{ padding:16px 18px; }

.cta-section{ text-align:center; margin:60px auto; }
.cta-section h2{ font-size:1.8rem; margin-bottom:8px; }
.cta-section p{ margin-bottom:18px; opacity:.85; }

/* === FORM PRO ================================ */
.form-pro{
  margin-top:24px; background:rgba(255,255,255,.75); border-radius:18px; padding:20px;
  box-shadow:0 8px 26px rgba(0,0,0,.08);
}
.form-pro input, .form-pro textarea{ background:#fff; }

/* === CONTACT + MAP ============================ */
.contact-grid{ display:grid; gap:24px; margin-top:48px; }
@media (min-width:900px){
  .contact-grid{ grid-template-columns:1fr 1fr; align-items:start; }
}
.contact-grid .map{
  width:100%; height:320px; border-radius:16px; border:none;
  box-shadow:0 8px 22px rgba(0,0,0,.1);
}

/* === FOOTER ============================================== */
.footer{
  background: linear-gradient(180deg, rgba(255,107,0,.08), rgba(255,107,0,.15));
  border-top: 1px solid rgba(255,107,0,.25);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  color: #222; padding: 48px 0 24px; position: relative; z-index: 10;
}
.footer-grid{ display:grid; grid-template-columns:1fr; gap:28px; }
@media (min-width:900px){ .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-logo{ width:52px; height:auto; margin-bottom:8px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.15)); }
.footer .logo{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.1rem; color: var(--accent,#ff6b00); }
.footer-desc{ max-width:300px; margin:10px 0 16px; font-size:.95rem; line-height:1.45; }

.footer-social{ display:flex; gap:10px; margin-top:6px; }
.footer-social a{
  width:38px; height:38px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,107,0,.25); background: rgba(255,107,0,.08); color:#ff6b00; font-size:20px;
  transition:all .25s ease;
}
.footer-social a:hover{
  transform:translateY(-2px);
  background: linear-gradient(135deg,#ff6b00,#ff8f3a);
  color:#fff; box-shadow:0 4px 16px rgba(255,107,0,.35);
}

.footer-contact h3, .footer-legal h3{
  color: var(--accent,#ff6b00); margin-bottom:10px; font-size:1rem; font-weight:700;
}
.footer-contact p, .footer-legal p{ margin:4px 0; }
.footer a{ color:#222; text-decoration:none; transition: color .25s ease; }
.footer a:hover{ color: var(--accent,#ff6b00); }

.footer-bottom{
  margin-top:28px; border-top: 1px solid rgba(255,107,0,.2);
  padding-top:16px; text-align:center; font-size:.9rem; opacity:.85;
  display:flex; flex-direction:column; align-items:center; gap:4px;
}
.footer-bottom .credit{ font-size:.85rem; opacity:.7; transition:opacity .3s ease, color .3s ease; }
.footer-bottom .credit a{ color:var(--accent,#ff6b00); font-weight:700; text-decoration:none; }
.footer-bottom .credit a:hover{ opacity:1; text-decoration:underline; }

@media (prefers-color-scheme: dark){
  .footer-bottom .credit a{ color:#ff8f3a; }
}
/* ================ajout pour header desktop ======================== */
/* ===== Header desktop layout & styles ===== */
.container.nav{
  display:flex; align-items:center; gap:18px;
  height:72px; padding:10px 0;
}

/* Logo + nom */
.brand{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:800; color:#111; text-decoration:none;
}
.brand img{
  height:46px; width:auto; display:block; object-fit:contain; 
  transition:transform .2s ease;
}
.brand:hover img{ transform:scale(1.03); }
.brand-name{ font-size:1.05rem; letter-spacing:.2px; }

/* Menu */
.menu{
  display:none;            /* mobile hidden */
  margin-left:auto;        /* pousse le menu à droite; le CTA suivra */
  gap:16px;
}
.menu a{
  display:inline-flex; align-items:center;
  height:40px; padding:0 12px; border-radius:10px;
  font-weight:700; color:#222; text-decoration:none;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}
.menu a:hover{
  background:rgba(17,17,17,.06);
  transform:translateY(-1px);
}
.menu a.is-active{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
}

/* CTA WhatsApp (header) */
.header-wa{
  margin-left:12px;
  display:inline-flex; align-items:center; gap:8px;
  height:40px; padding:0 14px; border-radius:12px; border:none;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff; font-weight:800;
  box-shadow:0 8px 20px rgba(255,107,0,.28);
}
.header-wa:hover{ box-shadow:0 10px 26px rgba(255,107,0,.38); }
.header-wa i{ font-size:18px; line-height:0; }

/* Cacher le burger sur desktop (force) */
@media (min-width: 900px){
  .menu{ display:flex; align-items:center; }
  .burger{ display:none !important; }
}
/* Si tu veux élargir la coupure desktop : passe à 1024px */
@media (min-width: 1024px){
  .menu{ gap:18px; }
}

/* ===== Ajustement RTL : header et burger ===== */

/* 1️⃣ Active la direction RTL pour les pages arabes */
html[lang="ar"], body[lang="ar"] {
  direction: rtl;
  text-align: right;
}



/* 3️⃣ Force le menu (quand affiché sur desktop) à rester à gauche du logo */
html[lang="ar"] .menu {
  margin-left: 0;
  margin-right: auto;
}

/* 4️⃣ Corrige les espacements */
html[lang="ar"] .brand {
  flex-direction: row-reverse;
}
html[lang="ar"] .brand-name {
  margin-right: 8px;
  margin-left: 0;
}

/* 5️⃣ Burger à gauche sans décaler les autres éléments */
html[lang="ar"] .burger {
  margin-right: auto;
  margin-left: 0;
}
/* Ajoute dans /assets/css/style.css */
.filters .chip{
  padding:.46rem .8rem; border:1px solid #e6e6e6; background:#fff; cursor:pointer; font-weight:500;
}
.filters .chip[aria-pressed="true"]{
  background:#583512; color:#fff; border-color:#583512;
}
.masonry{ column-count:1; column-gap:12px; }
@media (min-width:640px){ .masonry{ column-count:2 } }
@media (min-width:980px){ .masonry{ column-count:3 } }
.gl-card img{ transition:transform .25s ease; }
.gl-card:hover img{ transform:scale(1.02); }

/* ===== Lightbox Galerie ===== */
#gl-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;         /* Centre verticalement */
  justify-content: center;     /* Centre horizontalement */
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

#gl-lightbox.active {
  display: flex !important;    /* Affiche la lightbox centrée */
}

#gl-lightbox .box {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  background: #000;
  padding: 0;
  border: none;
  display: grid;
  place-items: center;
}

#gl-lightbox img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  margin: auto;
}

#gl-lightbox .close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

#gl-lightbox .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
}
#gl-prev { left: 20px; }
#gl-next { right: 20px; }

#gl-cap {
  color: #fff;
  opacity: 0.9;
  text-align: center;
  padding: 10px;
  font-size: 0.95rem;
}

.faq-section {
  max-width: 900px;
  margin: 4rem auto;
  line-height: 1.7;
}
.faq-section h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.faq-grid {
  display: grid;
  gap: 1.8rem;
}
.faq-item h3 {
  color: var(--accent, #583512);
  margin-bottom: .4rem;
}
.faq-item p {
  margin: 0;
}
.faq-cta {
  text-align: center;
  margin-top: 3rem;
}
.faq-cta .btn-wa {
  background: #25D366;
  color: #fff;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

[dir="rtl"] .faq-section { direction: rtl; text-align: right; }
[dir="rtl"] .faq-item h3 { text-align: right; }
[dir="rtl"] .faq-cta { text-align: center; } /* garde le CTA centré */

.intro-contact {
  max-width: 800px;
  margin: 3rem auto;
  text-align: center;
  line-height: 1.7;
}
.intro-contact h1 {
  margin-bottom: 1rem;
}
.section-pro {
  background: #fffaf5;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}
.section-pro h2 {
  margin-bottom: .6rem;
}
.section-pro p {
  max-width: 700px;
  margin: 0 auto 1.4rem;
  line-height: 1.6;
}
.form-note {
  text-align: center;
  color: #666;
  font-size: .9rem;
  margin-top: .8rem;
}


/* =============== style lien section gallery =============== */
.gallery-link {
  position: relative;
  cursor: pointer;
}

.gallery-link .full-link {
  position: absolute;
  inset: 0; /* couvre toute la section */
  z-index: 2;
  text-indent: -9999px;
  background: transparent;
}
.gallery-link:hover {
  opacity: 0.95;
  transition: opacity .3s ease;
}
