/* Comptoir des Voyageurs — Site V1 (HTML/CSS/JS)
   Auteur: ChatGPT
*/
:root{
  --bg:#f4fbff;
  --bg2:#e8f7ff;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#4c5b78;
  --blue:#19a5e5;
  --blue2:#0b7fc0;
  --blue3:#056aa6;
  --orange:#ff8a00;
  --shadow: 0 18px 50px rgba(2, 28, 62, .14);
  --shadow2: 0 10px 30px rgba(2, 28, 62, .12);
  --radius: 22px;
  --radius2: 16px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 800px at 70% -10%, #d2f3ff 0%, transparent 55%),
              radial-gradient(1000px 800px at 10% 10%, #e1fbff 0%, transparent 55%),
              linear-gradient(180deg, var(--bg), #ffffff);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button{font-family:inherit}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px;
  width:auto; height:auto;
  padding:10px 14px;
  background:#fff;
  border-radius:12px;
  box-shadow:var(--shadow2);
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.72);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid rgba(11,127,192,.10);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 220px;
}
.brand img{
  width:42px; height:42px;
  border-radius:14px;
  box-shadow: 0 10px 20px rgba(25,165,229,.25);
}
.brand .name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .name b{font-size:14px; letter-spacing:.2px}
.brand .name span{font-size:12px; color:var(--muted)}

.nav-links{
  display:flex; align-items:center; gap:18px;
}
.nav-links a{
  padding:10px 10px;
  border-radius:12px;
  color:rgba(11,18,32,.86);
  font-weight:600;
  font-size:14px;
}
.nav-links a:hover{background:rgba(25,165,229,.10)}
.nav-links a.active{background:rgba(25,165,229,.14); color:var(--blue3)}

.nav-actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(11,127,192,.18);
  background:linear-gradient(180deg, #ffffff, #f4fbff);
  color:rgba(11,18,32,.92);
  font-weight:800;
  font-size:14px;
  box-shadow: 0 10px 25px rgba(2, 28, 62, .07);
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 16px 35px rgba(2, 28, 62, .10)}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--blue), var(--blue3));
  color:#fff;
}
.btn.primary:hover{box-shadow: 0 18px 40px rgba(11,127,192,.30)}
.btn.orange{
  border:0;
  background: linear-gradient(135deg, var(--orange), #ffb100);
  color:#1f1200;
}
.btn.small{padding:10px 12px; border-radius:12px; font-size:13px}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  box-shadow:none;
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(11,127,192,.18);
  background:rgba(255,255,255,.75);
  box-shadow: 0 10px 25px rgba(2, 28, 62, .07);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(11,18,32,.88);
  margin:4px auto;
  border-radius:999px;
}

.mobile-drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:80;
  background:rgba(2, 12, 25, .55);
  backdrop-filter: blur(8px);
}
.mobile-panel{
  position:absolute; right:14px; top:70px;
  width:min(420px, calc(100% - 28px));
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,127,192,.14);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mobile-panel header{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 14px;
  border-bottom:1px solid rgba(11,127,192,.12);
}
.mobile-panel header b{font-size:14px}
.mobile-panel .items{padding:10px}
.mobile-panel .items a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 12px;
  border-radius:14px;
  font-weight:800;
  color:rgba(11,18,32,.90);
}
.mobile-panel .items a:hover{background:rgba(25,165,229,.10)}
.mobile-panel .actions{
  padding:12px;
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.hero{
  position:relative;
  padding:60px 0 36px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.06fr .94fr;
  gap:24px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(25,165,229,.12);
  border:1px solid rgba(11,127,192,.18);
  color: rgba(11,127,192,.95);
  font-weight:900;
  font-size:12px;
  letter-spacing:.2px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height:1.02;
  letter-spacing:-.9px;
}
h1 .accent{color:var(--blue3)}
h1 .orange{color:var(--orange)}
.lead{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.55;
  color:rgba(11,18,32,.76);
  max-width:54ch;
}

.hero-actions{
  display:flex; flex-wrap:wrap; gap:12px;
  align-items:center;
  margin: 16px 0 18px;
}
.badges{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.80);
  border:1px solid rgba(11,127,192,.12);
  box-shadow: 0 12px 25px rgba(2, 28, 62, .06);
  font-weight:800;
  color:rgba(11,18,32,.85);
  font-size:13px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(180deg, var(--blue), var(--blue3));
  box-shadow: 0 8px 16px rgba(11,127,192,.32);
}

.hero-card{
  position:relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.80), rgba(244,251,255,.92));
  border:1px solid rgba(11,127,192,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 460px;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-60px -80px auto auto;
  width:280px; height:280px;
  background: radial-gradient(circle at 40% 40%, rgba(25,165,229,.55), transparent 62%);
  filter: blur(6px);
  transform: rotate(15deg);
}
.hero-card .poster{
  position:absolute; inset:0;
  opacity:1;
}
.hero-card .poster img{
  width:100%; height:100%;
  object-fit:cover;
  transform: scale(1.06);
  filter:saturate(1.05);
}
.hero-card .overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.85) 58%, rgba(255,255,255,.92));
}
.hero-card .floating{
  position:absolute;
  left:18px;
  bottom:18px;
  right:18px;
  display:grid;
  gap:10px;
}
.mini-offer{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  padding:14px 14px;
  border-radius:18px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(11,127,192,.14);
  box-shadow: 0 12px 26px rgba(2, 28, 62, .08);
}
.mini-offer b{font-size:14px}
.mini-offer span{font-size:12px; color:var(--muted); font-weight:700}
.pill{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,138,0,.14);
  border:1px solid rgba(255,138,0,.28);
  font-weight:1000;
  font-size:12px;
  color:#4a2b00;
}

.section{
  padding:56px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(232,247,255,.75), rgba(255,255,255,0));
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing:-.4px;
}
.section-head p{
  margin:0;
  color:rgba(11,18,32,.70);
  max-width:52ch;
  line-height:1.5;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.card{
  background: rgba(255,255,255,.88);
  border:1px solid rgba(11,127,192,.12);
  border-radius: var(--radius2);
  box-shadow: 0 12px 28px rgba(2, 28, 62, .06);
  overflow:hidden;
}

.service{
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service:hover{transform: translateY(-2px); box-shadow: 0 16px 35px rgba(2, 28, 62, .10)}
.icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(25,165,229,.18), rgba(11,127,192,.10));
  border: 1px solid rgba(11,127,192,.16);
  flex:0 0 auto;
}
.icon svg{width:22px; height:22px; fill:rgba(11,127,192,.95)}
.service b{display:block; margin:0 0 6px; font-size:14px}
.service p{margin:0; color:rgba(11,18,32,.72); line-height:1.45; font-size:13px}

.cta-strip{
  margin-top:16px;
  padding:16px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(25,165,229,.12), rgba(255,138,0,.10));
  border:1px solid rgba(11,127,192,.14);
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  padding:16px;
}
.step .num{
  width:44px; height:44px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--blue), var(--blue3));
  color:#fff;
  display:grid; place-items:center;
  font-weight:1000;
  box-shadow: 0 14px 26px rgba(11,127,192,.26);
}
.step b{display:block; margin:12px 0 6px; font-size:15px}
.step p{margin:0; color:rgba(11,18,32,.70); line-height:1.5; font-size:13px}

.carousel{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(11,127,192,.12);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.carousel-track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}
.slide{
  min-width:100%;
  padding:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:center;
}
.slide img{
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(2, 28, 62, .14);
  border:1px solid rgba(11,127,192,.12);
}
.slide h3{margin:0 0 10px; font-size:22px; letter-spacing:-.2px}
.slide p{margin:0 0 14px; color:rgba(11,18,32,.70); line-height:1.5}
.pills{
  display:flex; flex-wrap:wrap; gap:8px;
}
.pills .tag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(11,127,192,.16);
  background: rgba(25,165,229,.10);
  font-weight:900;
  font-size:12px;
  color: rgba(11,127,192,.95);
}
.carousel-controls{
  position:absolute;
  inset:auto 14px 14px 14px;
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:center;
}
.dots{
  display:flex; gap:6px;
}
.dotbtn{
  width:10px; height:10px;
  border-radius:999px;
  border:0;
  background: rgba(11,127,192,.18);
  cursor:pointer;
}
.dotbtn.active{background: linear-gradient(135deg, var(--blue), var(--blue3))}
.navbtn{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(11,127,192,.14);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(2, 28, 62, .08);
  cursor:pointer;
}
.navbtn:hover{transform: translateY(-1px)}
.navbtn svg{width:18px; height:18px; fill: rgba(11,18,32,.88)}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.plan{
  padding:18px;
  position:relative;
}
.plan .label{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  border:1px solid rgba(11,127,192,.16);
  background: rgba(25,165,229,.10);
  color: rgba(11,127,192,.95);
}
.plan h3{margin:12px 0 8px; font-size:18px}
.plan p{margin:0 0 14px; color:rgba(11,18,32,.70); line-height:1.5; font-size:13px}
.plan ul{margin:0; padding-left:18px; color:rgba(11,18,32,.78); line-height:1.7; font-weight:700; font-size:13px}
.plan .price{
  margin-top:14px;
  font-size:13px;
  color:rgba(11,18,32,.72);
  font-weight:800;
}
.plan.featured{
  border:1px solid rgba(255,138,0,.35);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,235,.85));
  transform: translateY(-3px);
}
.plan.featured::after{
  content:"Recommandé";
  position:absolute; top:14px; right:14px;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  background: rgba(255,138,0,.16);
  border:1px solid rgba(255,138,0,.30);
  color:#4a2b00;
}

.stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.stat{
  padding:16px;
  text-align:left;
}
.stat b{
  display:block;
  font-size:28px;
  letter-spacing:-.6px;
}
.stat span{color:rgba(11,18,32,.70); font-weight:800; font-size:13px}

.form{
  padding:18px;
}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field{
  display:flex; flex-direction:column;
  gap:6px;
}
label{font-weight:900; font-size:12px; color:rgba(11,18,32,.78)}
input, select, textarea{
  border-radius:14px;
  border:1px solid rgba(11,127,192,.16);
  padding:12px 12px;
  background: rgba(255,255,255,.92);
  outline:none;
  font-weight:700;
  color:rgba(11,18,32,.90);
}
textarea{min-height:110px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(11,127,192,.45);
  box-shadow: 0 0 0 4px rgba(25,165,229,.12);
}

.footer{
  padding:26px 0 36px;
  border-top:1px solid rgba(11,127,192,.10);
  background: linear-gradient(180deg, rgba(244,251,255,.55), rgba(255,255,255,0));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.footer small{color:rgba(11,18,32,.62); font-weight:700; line-height:1.6}
.footer-links{
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:flex-end;
}
.footer-links a{
  padding:10px 10px;
  border-radius:12px;
  background: rgba(25,165,229,.10);
  border:1px solid rgba(11,127,192,.14);
  font-weight:900;
  font-size:13px;
}
.footer-links a:hover{transform: translateY(-1px)}
.subfooter{
  margin-top:14px;
  display:flex; justify-content:space-between; gap:10px;
  flex-wrap:wrap;
  color:rgba(11,18,32,.62);
  font-weight:700;
  font-size:12px;
}

.whatsapp{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:70;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(135deg, #25D366, #10b559);
  color:#fff;
  font-weight:1000;
  box-shadow: 0 18px 40px rgba(16,181,89,.28);
  border: 0;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.whatsapp:hover{transform: translateY(-2px); box-shadow: 0 24px 50px rgba(16,181,89,.35)}
.whatsapp svg{width:18px; height:18px; fill:#fff}
.whatsapp span{display:block; font-size:13px}

.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1; transform:none}

.page-hero{
  padding:44px 0 10px;
}
.page-hero h1{font-size: clamp(28px, 4vw, 44px)}
.breadcrumbs{display:flex; gap:8px; color:rgba(11,18,32,.60); font-weight:800; font-size:12px}
.breadcrumbs a{color:rgba(11,127,192,.95)}

.doc-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.doc{
  padding:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.doc .file{
  width:44px; height:44px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(255,138,0,.18), rgba(25,165,229,.12));
  border:1px solid rgba(11,127,192,.14);
  display:grid; place-items:center;
  flex:0 0 auto;
}
.doc .file svg{width:20px; height:20px; fill: rgba(11,18,32,.85)}
.doc b{display:block; margin:0 0 4px}
.doc p{margin:0; color:rgba(11,18,32,.70); font-size:13px; line-height:1.45}
.doc .actions{margin-top:10px; display:flex; gap:10px; flex-wrap:wrap}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; }
  .hero-card{min-height:420px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr 1fr}
  .slide{grid-template-columns:1fr; }
  .nav-links{display:none}
  .burger{display:block}
  .footer-grid{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
  .doc-grid{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}


/* --- Responsive improvements (V2) --- */
@media (max-width: 980px){
  .container{width:min(var(--max), calc(100% - 28px));}
  .nav{padding:12px 0;}
  .brand{min-width:unset;}
  .nav-actions{gap:8px; flex-wrap:wrap; justify-content:flex-end;}
  .hero{padding:44px 0 22px;}
  .hero-actions{gap:10px}
  .hero-card{min-height:unset;}
  .hero-card .poster img{transform: scale(1.03);}
  .hero-card .floating{position:relative; left:auto; right:auto; bottom:auto; padding:14px;}
  .mini-offer{padding:12px 12px}
  .slide{padding:16px;}
  .carousel-controls{inset:auto 12px 12px 12px;}
  .stats{grid-template-columns:1fr;}
  .whatsapp{right:14px; bottom:14px;}
}

@media (max-width: 520px){
  h1{letter-spacing:-.6px}
  .lead{font-size:15px}
  .badge{font-size:12px}
  .brand img{width:38px;height:38px}
  .brand .name b{font-size:13px}
  .brand .name span{font-size:11px}
  .mini-offer{flex-direction:column; align-items:flex-start}
  .mini-offer .btn.small{width:100%}
  .navbtn{width:42px;height:42px}
  .footer-links{gap:8px}
  .footer-links a{width:100%; justify-content:center; text-align:center}
  .doc{align-items:flex-start}
}

.burger{flex:0 0 auto;}


/* --- V3 components --- */
.dest-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.dest{
  position:relative;
  overflow:hidden;
}
.dest img{
  width:100%;
  height:190px;
  object-fit:cover;
  filter:saturate(1.05);
}
.dest-body{padding:14px}
.dest-body b{display:block;margin:0 0 6px}
.dest-body p{margin:0 0 10px;color:rgba(11,18,32,.70);line-height:1.45;font-weight:700;font-size:13px}
.chip{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(25,165,229,.10);
  border:1px solid rgba(11,127,192,.16);
  font-weight:900;
  font-size:12px;
  color: rgba(11,127,192,.95);
}
.chip-orange{
  background: rgba(255,138,0,.14);
  border-color: rgba(255,138,0,.28);
  color:#4a2b00;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.gitem{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(11,127,192,.12);
  box-shadow: 0 16px 36px rgba(2, 28, 62, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gitem:hover img{transform: translateY(-2px); box-shadow: 0 20px 44px rgba(2, 28, 62, .14);}

.lightbox{
  display:none;
  position:fixed;
  inset:0;
  z-index:120;
  background:rgba(2, 12, 25, .72);
  backdrop-filter: blur(10px);
  align-items:center;
  justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lightbox .panel{
  width:min(980px, 100%);
  background:rgba(255,255,255,.92);
  border:1px solid rgba(11,127,192,.14);
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.lightbox header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 12px;
  border-bottom:1px solid rgba(11,127,192,.12);
}
.lightbox header b{font-size:14px}
.lightbox .content{padding:12px}
.lightbox .content img{
  width:100%;
  max-height:70vh;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
}

.sim{padding:18px}
.sim-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.sim-result{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed rgba(11,127,192,.18);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.sim-result b{font-size:14px}
.hint{margin-top:6px;color:rgba(11,18,32,.60);font-weight:700;font-size:12px;line-height:1.4}

.filters{padding:14px}
.filter-row{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.fbtn{
  border:1px solid rgba(11,127,192,.16);
  background: rgba(25,165,229,.08);
  padding:10px 12px;
  border-radius:999px;
  font-weight:1000;
  cursor:pointer;
}
.fbtn.active{
  background: linear-gradient(135deg, var(--blue), var(--blue3));
  color:#fff;
  border:0;
}
.fsearch{
  flex:1 1 220px;
  min-width:200px;
}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.dcard{overflow:hidden}
.dcard img{width:100%; height:170px; object-fit:cover}
.dbody{padding:14px}
.dbody b{display:block;margin:0 0 6px}
.dbody p{margin:0 0 10px;color:rgba(11,18,32,.70);line-height:1.45;font-weight:700;font-size:13px}
.dmeta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}

@media (max-width: 980px){
  .dest-grid{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .sim-grid{grid-template-columns: 1fr 1fr}
  .cards{grid-template-columns: 1fr}
}
@media (max-width: 520px){
  .gallery{grid-template-columns: 1fr}
  .sim-grid{grid-template-columns: 1fr}
}
