/* ============================================================
    PARIS PRESTIGE DRIVE — Global CSS
   Propre, sans doublons, media queries fermées correctement
   ============================================================ */

/* ---- Variables ---- */
:root{
  --bg:#0b0f1a;
  --panel: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --gold:#d4af37;
  --gold2:#9a7b2f;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --page-bg:
    radial-gradient(900px 500px at 12% 18%, rgba(212,175,55,.12), transparent 55%),
    radial-gradient(900px 500px at 80% 70%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(160deg, #080c15, #0d1424);
}

/* ---- Reset ---- */
*{box-sizing:border-box}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--page-bg);
  color:var(--text);
  /* Transition fluide page load / changement de langue */
  opacity:0;
  transition: opacity .22s ease;
}
body.ppd-ready { opacity: 1; }
body.ppd-fade  { opacity: 0; }

a{color:inherit;text-decoration:none}

.container{width:min(1120px, 92vw); margin:0 auto}

/* ============================================================
   TOPBAR / NAV
   ============================================================ */

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,14,22,.70);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-inner{
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 900px){
  .topbar-inner{
    padding-left: 12px;
    padding-right: 12px;
  }
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
  margin-right: 8px;
}

.brand:focus{ outline: none; }
.brand:focus-visible{
  outline: 2px solid rgba(212,175,55,.65);
  outline-offset: 4px;
  border-radius: 14px;
}

.brandDot{
  display: none; /* remplacé par .brandLogo */
}

.brandLogo{
  height: 62px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}

/* Logo mobile — taille réduite + brandName affiché */
@media (max-width: 600px){
  .brandLogo{ height: 44px; }
  .brandName{ display: block !important; font-size: 12px; }
}

.brandText{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  min-width: 0;
}

.brandName{
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 13px;
  text-transform: uppercase;
}

.brandTag{
  margin-top: 2px;
  font-size: 11px;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  opacity: .75;
}

@media (max-width: 1100px){ .brandTag{ max-width: 160px; } }
@media (max-width: 980px){ .brandTag{ display: none; } }

.nav{
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.navLink{
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: .2s;
  white-space: nowrap;
}

.navLink:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.navLink.active{
  background: rgba(212,175,55,.18);
  outline: 1px solid rgba(212,175,55,.25);
  color: #fff;
}

@media (max-width: 900px){ .navLink{ font-size: 13px; padding: 7px 9px; } }

.navRight{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.lang{
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.15);
}

.langBtn{
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  padding: 6px 10px;
  border-radius: 999px;
}

.langBtn.active{
  background: rgba(212,175,55,.22);
  color: #fff;
}

.cta{
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  color: #0b0f18;
  background: #d4af37;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(212,175,55,.18);
  white-space: nowrap;
}
.cta:hover{ filter: brightness(1.05); }

@media (max-width: 980px){
  .topbar-inner{
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand{ flex: 1 1 100%; }
  .nav{
    justify-content: flex-start;
    overflow-x: auto;
    flex: 1 1 100%;
    padding-bottom: 6px;
  }
  .navRight{ flex: 1 1 100%; justify-content: flex-start; min-width: 0; }
}

/* ============================================================
   LAYOUT / SECTIONS
   ============================================================ */

.section{ padding: 26px 0; }
.section.alt{ background: rgba(255,255,255,.02); }
.sectionInner{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.headRow{ display:flex; justify-content:space-between; align-items:flex-end; gap:12px; flex-wrap:wrap; margin-bottom: 14px; }
.home{ min-height: 60vh; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.h1{ font-size: 26px; margin: 0 0 6px; letter-spacing:-.4px; }
.h2{ font-size: 30px; margin: 0 0 10px; }
.h3{ font-size: 18px; margin: 14px 0 6px; }
.p{ opacity: .9; margin: 0 0 10px; }
.sub{ color:var(--muted); margin:0; line-height:1.35; opacity: .85; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-weight:850;
  cursor:pointer;
  width:100%;
  text-decoration: none;
}

.btn.primary{
  border-color: rgba(212,175,55,.55);
  background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(154,123,47,.95));
  color: #121212;
}

.btn.small{ padding: 10px 12px; border-radius: 12px; }
.btn:hover{ filter: brightness(1.05); }
.btnRow{display:flex; gap:10px; margin-top: 10px}

/* ============================================================
   FORMS
   ============================================================ */

label{display:block; font-size:12px; color:var(--muted); margin:0 0 6px; font-weight:700}

.field{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
  font-family: inherit;
}

.field:focus{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.14);
}

.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 640px){ .formGrid{grid-template-columns:1fr;} }

@media (max-width: 900px){
  main.container{ padding-left: 14px; padding-right: 14px; }
  input, textarea, select, button{ font-size: 16px; }
  .btn, button{ min-height: 44px; }
}

/* ============================================================
   HERO (home)
   ============================================================ */

.hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin: 22px auto;
  max-width: 1200px;
}
/* Inner-page hero titles: add padding so border-radius doesn't clip text */
.hero > .h1,
.hero > .sub,
.hero > p {
  padding-left: 28px;
  padding-right: 28px;
}

.heroBg{ position:absolute; inset:0; background-size: cover; background-position:center; transform: scale(1.02); }
.heroOverlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25)); }
.heroInner{ position:relative; padding: 48px 20px; display:flex; justify-content:flex-start; }
.heroCard{ width:min(560px, 92vw); background: rgba(20,22,28,.62); border:1px solid rgba(255,255,255,.10); backdrop-filter: blur(10px); border-radius: 20px; padding: 22px; }
.heroKicker{ opacity:.9; font-weight:700; }
.heroTitle{ font-size: 40px; line-height:1.1; margin: 10px 0 10px; }
.heroText{ opacity:.92; margin: 0 0 16px; }
.heroCtas{ display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0 14px; }
.heroMini{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px; }
.miniItem{ padding: 10px 12px; border-radius: 14px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); min-width: 140px; }
.miniTop{ font-weight:800; }
.miniBot{ opacity:.85; font-size: 13px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.hiw-orbit{
  --hiw-gold: #d4af37;
  --hiw-gold-2: #9a7b2f;
  --hiw-muted: rgba(255,255,255,0.72);
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(212,175,55,0.16), transparent 60%),
    radial-gradient(900px 320px at 80% 15%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(180deg, #070b14, #0d1526);
  padding: 48px 0 56px 0;
  color: var(--text);
}

.hiw-orbit__inner{
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.hiw-orbit__kicker{
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 800;
  color: var(--hiw-gold);
  margin-bottom: 12px;
}

.hiw-orbit__title{
  margin: 0 0 24px 0;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}

.hiw-orbit__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  width: min(900px, 88vw);
  margin: 36px auto 0;
  position: relative;
}

.hiw-orbit__step{
  text-align: center;
  padding-top: 12px;
  position: relative;
}

.hiw-orbit__step:not(:last-child)::after{
  content:"";
  position:absolute;
  left: calc(50% + 28px);
  top: 40px;
  width: calc(100% + 36px);
  height: 0;
  border-top: 2px dashed rgba(212,175,55,0.7);
  opacity: 0.9;
}

.hiw-orbit__step:not(:last-child)::before{
  content:"";
  position:absolute;
  top: 37px;
  left: calc(100% + 70px + 28px);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 8px solid rgba(212,175,55,0.8);
}

.hiw-orbit__num{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  color: #0b0f1a;
  background: radial-gradient(circle at 35% 25%, #f0d07a, var(--hiw-gold-2));
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  margin: 0 auto 18px;
}

.hiw-orbit__stepTitle{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 900;
}

.hiw-orbit__stepText{
  margin: 0;
  font-size: 14px;
  color: var(--hiw-muted);
  line-height: 1.55;
}

@media (max-width: 980px){
  .hiw-orbit__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 36px; }
  .hiw-orbit__step:not(:last-child)::after{ display: none; }
  .hiw-orbit__step:not(:last-child)::before{ display: none; }
}
@media (max-width: 560px){
  .hiw-orbit__grid{ grid-template-columns: 1fr; gap: 24px; }
  .hiw-orbit__stepTitle{ font-size: 19px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.reasons{
  padding: 64px 20px;
  color: var(--text);
}

.reasons__header{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px auto;
}

.reasons__header h2{
  margin: 0 0 10px 0;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
}

.reasons__header p{
  margin: 0;
  font-size: clamp(14px, 1.6vw, 20px);
  color: var(--muted);
}

.reasons__grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.reason-card{
  background: rgba(20, 18, 28, 0.72);
  border: 1px solid rgba(215, 181, 109, 0.75);
  border-radius: 10px;
  padding: 26px 26px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.reason-card__icon{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 6px auto 14px auto;
}

.reason-card h3{
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 800;
}

.reason-card p{
  margin: 0 auto;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 980px){ .reasons__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px){ .reasons__grid{ grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES SECTION (home)
   ============================================================ */

.svcGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 900px){ .svcGrid{ grid-template-columns: 1fr; } }

.svcX{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.svcXImg{
  height: 160px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.svcXBody{ padding: 16px; }

.svcXTop{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  margin-bottom: 10px;
}

.svcXIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-size: 20px;
  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.30);
  box-shadow: 0 12px 26px rgba(212,175,55,.10);
  flex: 0 0 auto;
}

.svcXTitle{ margin: 0; font-weight: 950; letter-spacing: -.2px; font-size: 18px; }
.svcXSub{ margin: 4px 0 0; color: rgba(255,255,255,.70); font-size: 13px; }
.svcXText{ margin: 0 0 10px; color: rgba(255,255,255,.86); line-height: 1.55; font-size: 14px; }
.svcXList{ margin: 0 0 12px; padding-left: 18px; color: rgba(255,255,255,.78); font-size: 13.5px; }
.svcXList li{ margin: 6px 0; }

.svcXActions{ display:flex; gap: 10px; flex-wrap: wrap; }
.svcXActions .btn{ width: auto; min-width: 140px; }

/* Mise à disposition pleine largeur */
.svcXWide{
  grid-column: 1 / -1;
  border-color: rgba(212,175,55,.25);
  background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(255,255,255,.04));
}

.svcXWideGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
}
@media (max-width: 900px){ .svcXWideGrid{ grid-template-columns: 1fr; } }

.svcXImgWide{ height: 220px; border-radius: 14px; border: 1px solid rgba(255,255,255,.10); }

.svcXNotice{
  margin: 10px 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);
  background: rgba(212,175,55,.10);
  color: rgba(255,255,255,.88);
  font-size: 13.5px;
}

.svcXWideSide{ display:flex; flex-direction: column; gap: 10px; padding-top: 8px; }

.svcXPill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.86);
  font-weight: 850;
  font-size: 13px;
}

/* ============================================================
   CARDS GRID
   ============================================================ */

.cards3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px){ .cards3{ grid-template-columns: 1fr; } }

.svcCard{ border-radius: 18px; overflow:hidden; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05); padding: 12px; }
.svcImg{ height: 160px; border-radius: 14px; background-size:cover; background-position:center; }

/* ============================================================
   VEHICLE RANGE CARD (home)
   ============================================================ */

.vehSimpleCard{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.vehSimpleTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px 8px;
}

.vehSimpleTitle{ margin:0; font-weight: 950; letter-spacing: -.3px; }
.vehSimpleSub{ margin: 4px 0 0; color: rgba(255,255,255,.70); font-size: 13px; }

.vehSimpleBadge{
  border: 1px solid rgba(212,175,55,.45);
  background: rgba(212,175,55,.12);
  color: rgba(255,255,255,.92);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.vehSimpleImg{
  height: 280px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0,0,0,.12);
}

.vehSimpleBottom{
  padding: 12px 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.vehSimpleDesc{ margin:0; color: rgba(255,255,255,.75); max-width: 520px; }

@media (max-width: 520px){
  .vehSimpleImg{ height: 220px; }
  .vehSimpleBottom{ justify-content: stretch; }
  .vehSimpleBottom .btn{ width: 100%; }
}

/* ============================================================
   VEHICLE INFO BLOCK (vehicules page)
   ============================================================ */

.vehicleInfoBlock{
  width: min(1200px, 92%);
  margin: 48px auto;
}

.vehicleInfoTitle{
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #d6aa3c;
  margin-bottom: 28px;
}

.vehicleInfoGrid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
}

.vehicleInfoImage{
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.vehicleInfoImage img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.vehicleInfoContent{ color: rgba(255,255,255,.88); }
.vehicleInfoIntro{ font-size: 15px; line-height: 1.6; margin: 0 0 18px; }

.vehicleInfoList{ list-style: none; padding: 0; margin: 0; }
.vehicleInfoList li{ margin-bottom: 16px; line-height: 1.55; }
.vehicleInfoList b{ color: #fff; font-weight: 900; }

@media (max-width: 900px){
  .vehicleInfoGrid{ grid-template-columns: 1fr; gap: 22px; }
  .vehicleInfoTitle{ font-size: 20px; }
}

/* ============================================================
   VEHICLE CARDS (vehicules page)
   ============================================================ */

.vehX.isUnavailable{
  position: relative;
  opacity: .55;
  filter: grayscale(1);
}

.vehX.isUnavailable::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  pointer-events:none;
  z-index: 5;
}

.vehX.isUnavailable .vehXBody,
.vehX.isUnavailable .vehXImg{ position: relative; z-index: 6; }

.vehX.isUnavailable .btn{ pointer-events:none; opacity:.45; }

.vehXImg{ position:relative; }

.vehXUnavailableTag{
  position:absolute;
  left: 12px;
  bottom: 12px;
  z-index: 7;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
}

.vehXUnavailableText{ margin: 12px 0 0; color: rgba(255,255,255,.80); font-weight: 900; }

/* ============================================================
   FOOTER
   ============================================================ */

/* ============================================================
   FOOTER — Modern redesign
   ============================================================ */
.site-footer {
  background: #07090f;
  border-top: 1px solid rgba(212,175,55,.15);
  color: #e6e6e6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 0;
}
/* 3-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 52px;
}
/* Brand col */
.footer-brand-name {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  color: #d4af37;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 300px;
}
/* Section headings */
.footer-heading {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Nav links — 2-col grid */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2px;
  column-gap: 12px;
}
.footer-links li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 2.3;
  transition: color .18s;
  display: block;
}
.footer-links li a:hover { color: #d4af37; }
/* Contact items */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .18s;
}
.footer-contact-item:hover { color: #d4af37; }
.footer-contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: rgba(212,175,55,.7);
}
.footer-contact-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 6px;
  padding-left: 24px;
}
/* Gold divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,.2) 25%, rgba(212,175,55,.2) 75%, transparent 100%);
}
/* Bottom bar */
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: rgba(255,255,255,.38);
}
.footer-trust-item svg {
  width: 13px; height: 13px;
  color: rgba(212,175,55,.65);
  flex-shrink: 0;
}
.footer-trust-sep { color: rgba(255,255,255,.15); font-size: 14px; }
.footer-pay-chips {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.footer-pay-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.42);
  letter-spacing: .03em;
}
.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
/* Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-inner { padding: 48px 20px 0; }
}

/* legacy compat */
.footer-container { display: none; } /* replaced by footer-grid */
.footer-col {}
.footer-bottom{
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  text-align: center;
  font-size: 13px;
  color: #9aa1b2;
}

/* ============================================================
   CONTACT OVERLAY / MODAL
   ============================================================ */

#contactConfirmOverlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}

#contactConfirmOverlay[hidden]{ display: none !important; }

.confirmModal{
  width: min(520px, 92vw);
  border-radius: 18px;
  padding: 18px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  text-align: center;
}

.confirmIcon{
  width: 46px;
  height: 46px;
  margin: 2px auto 10px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212,175,55,.16);
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: 0 10px 24px rgba(212,175,55,.12);
  font-size: 22px;
}

.confirmModal h2{ margin: 0 0 8px; font-size: 18px; font-weight: 950; }
.confirmTxt{ margin: 0 auto 14px; color: rgba(255,255,255,.85); line-height: 1.45; font-size: 14px; }
.confirmActions{ display: flex; justify-content: center; margin-top: 10px; }
.confirmHint{ margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,.70); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

@media (max-width: 980px){
  .contactGrid{ display: grid; grid-template-columns: 1fr !important; gap: 14px !important; }
  .contactGrid > *{ width: 100%; }
}

/* ============================================================
   FILE UPLOAD
   ============================================================ */

.fileField{
  padding: 10px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(212,175,55,.45);
  cursor: pointer;
}

.fileField::-webkit-file-upload-button{
  background: linear-gradient(180deg, rgba(212,175,55,.95), rgba(154,123,47,.95));
  color: #0b0f18;
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  margin-right: 10px;
  font-weight: 900;
  cursor: pointer;
}

.fileHint{ margin-top: 6px; font-size: 12px; color: rgba(255,255,255,.65); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */

.link{ display:inline-block; margin-top: 6px; text-decoration:none; opacity:.95; }
.routeMeta{ color:var(--muted2); font-size:12px; margin:0 0 12px }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* ============================================================
   REVIEWS / TESTIMONIALS SECTION
   ============================================================ */

.reviews-section {
  padding: 56px 20px;
  background: rgba(255,255,255,.02);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-header {
  text-align: center;
  margin-bottom: 32px;
}
.reviews-kicker {
  letter-spacing: .25em;
  font-size: 11px;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 10px;
}
.reviews-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
}
.reviews-stars {
  color: #d4af37;
  font-size: 15px;
  font-weight: 700;
}
.reviews-stars span { color: rgba(255,255,255,.85); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.review-stars { color: #d4af37; font-size: 18px; margin-bottom: 10px; }
.review-text {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  font-style: italic;
}
.review-author {
  color: rgba(255,255,255,.60);
  font-size: 12.5px;
  font-weight: 700;
}

/* ============================================================
   MODERN VISUAL ENHANCEMENTS — Dark Premium Upgrade
   ============================================================ */

html { scroll-behavior: smooth; }

/* ---- Keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(212,175,55,.20); }
  50%       { box-shadow: 0 14px 38px rgba(212,175,55,.42); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes subtleGrain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-1%,-1%); }
  30% { transform: translate(1%,1%); }
  50% { transform: translate(-1%,0); }
  70% { transform: translate(0,1%); }
  90% { transform: translate(1%,-1%); }
}

/* ---- Page background amélioré ---- */
:root {
  --page-bg:
    radial-gradient(ellipse 900px 500px at 10% 15%, rgba(212,175,55,.13), transparent 60%),
    radial-gradient(ellipse 700px 400px at 85% 75%, rgba(100,120,255,.06), transparent 55%),
    radial-gradient(ellipse 600px 300px at 50% 100%, rgba(212,175,55,.06), transparent 60%),
    linear-gradient(160deg, #070b14 0%, #0c1220 50%, #080d18 100%);
}

/* ---- Hero upgrades ---- */
.hero {
  box-shadow: 0 32px 90px rgba(0,0,0,.65);
}
.heroCard {
  animation: fadeUp .65s cubic-bezier(.22,.68,0,1.2) both;
  background: rgba(8,12,22,.72);
  border-color: rgba(212,175,55,.20);
  box-shadow: 0 28px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}
.heroTitle {
  background: linear-gradient(130deg, #ffffff 25%, #f0d87a 60%, #d4af37 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heroKicker {
  color: #d4af37;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

/* ---- CTA button glow pulse ---- */
.cta {
  animation: goldPulse 3.5s ease-in-out infinite;
  transition: filter .2s, transform .15s;
  background: linear-gradient(135deg, #e8c84a, #d4af37 50%, #b89228);
}
.cta:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 14px 40px rgba(212,175,55,.5);
}

/* ---- Buttons primaires upgrade ---- */
.btn.primary {
  background: linear-gradient(135deg, #e8c84a 0%, #d4af37 50%, #9a7b2f 100%);
  background-size: 200% auto;
  transition: background-position .4s, filter .2s, transform .15s, box-shadow .25s;
  box-shadow: 0 6px 22px rgba(212,175,55,.28);
  border: none;
}
.btn.primary:hover {
  background-position: right center;
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,175,55,.48);
}

/* ---- Reason cards hover ---- */
.reason-card {
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s, border-color .25s;
  background: rgba(15,16,28,.80);
  backdrop-filter: blur(8px);
}
.reason-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(212,175,55,.35), 0 0 28px rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.55);
}

/* ---- Service cards hover ---- */
.svcX {
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s;
}
.svcX:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.15);
}
.svcXIcon {
  transition: background .25s, box-shadow .25s;
}
.svcX:hover .svcXIcon {
  background: rgba(212,175,55,.22);
  box-shadow: 0 8px 24px rgba(212,175,55,.22);
}

/* ---- Review cards hover ---- */
.review-card {
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s, border-color .25s;
  background: rgba(12,14,24,.75);
  backdrop-filter: blur(8px);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,.45), 0 0 0 1px rgba(212,175,55,.22);
  border-color: rgba(212,175,55,.28);
}

/* ---- Van card hover ---- */
.vehSimpleCard {
  transition: box-shadow .25s, transform .25s;
}
.vehSimpleCard:hover {
  box-shadow: 0 32px 90px rgba(0,0,0,.65), 0 0 0 1px rgba(212,175,55,.22);
  transform: translateY(-3px);
}

/* ---- Nav upgrades ---- */
.topbar {
  background: rgba(6,9,16,.85);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom-color: rgba(212,175,55,.08);
}
.navLink {
  transition: background .18s, color .18s, transform .15s;
}
.navLink:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
}
.navLink.active {
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(212,175,55,.10));
  border: 1px solid rgba(212,175,55,.28);
  box-shadow: 0 0 12px rgba(212,175,55,.12);
}

/* ---- HIW numbers glow ---- */
.hiw-orbit__num {
  box-shadow: 0 8px 26px rgba(212,175,55,.42), 0 18px 45px rgba(0,0,0,.55);
  transition: transform .22s, box-shadow .22s;
}
.hiw-orbit__step:hover .hiw-orbit__num {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 36px rgba(212,175,55,.6), 0 22px 55px rgba(0,0,0,.6);
}
.hiw-orbit__title {
  background: linear-gradient(130deg, #ffffff 30%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hiw-orbit {
  background:
    radial-gradient(ellipse 900px 320px at 20% 0%, rgba(212,175,55,.18), transparent 60%),
    radial-gradient(ellipse 700px 300px at 80% 15%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #060a13 0%, #0c1424 100%);
}

/* ---- Mini items ---- */
.miniItem {
  transition: background .2s, border-color .2s, transform .18s;
}
.miniItem:hover {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.25);
  transform: translateY(-2px);
}

/* ---- Service wide card ---- */
.svcXWide {
  border-color: rgba(212,175,55,.30);
  background: linear-gradient(135deg, rgba(212,175,55,.09), rgba(255,255,255,.04));
}

/* ---- Footer top border gold ---- */
.site-footer {
  border-top: 1px solid rgba(212,175,55,.14);
  background:
    radial-gradient(ellipse 700px 300px at 5% 50%, rgba(212,175,55,.06), transparent 55%),
    radial-gradient(circle at top left, #1a2030, #0b0f18 60%);
}

/* ---- Sections h2 gradient ---- */
.h2, .reasons__header h2 {
  background: linear-gradient(130deg, #ffffff 30%, rgba(212,175,55,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Forms glow amélioré ---- */
.field:focus {
  border-color: rgba(212,175,55,.65);
  box-shadow: 0 0 0 3px rgba(212,175,55,.16), 0 2px 12px rgba(212,175,55,.10);
}

/* ---- Section alt upgrade ---- */
.section.alt {
  background:
    radial-gradient(ellipse 800px 200px at 50% 0%, rgba(212,175,55,.05), transparent 60%),
    rgba(255,255,255,.02);
}

/* ---- Pill badge upgrade ---- */
.vehSimpleBadge {
  background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(212,175,55,.10));
  transition: background .2s;
}

/* ---- Fade-up utility class ---- */
.fadeUp { animation: fadeUp .55s cubic-bezier(.22,.68,0,1.2) both; }

/* ============================================================
   RESPONSIVE — Mobile / Tablet / Cross-browser
   ============================================================ */

/* ---- Hamburger button (hidden on desktop) ---- */
.navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.navToggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navToggle.open span:nth-child(2) { opacity: 0; }
.navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   MOBILE NAV — Tiroir latéral (slide-in depuis droite)
   Actif sur tous les appareils ≤ 700px
   ══════════════════════════════════════════════════ */

/* Bouton Réserver dans le drawer : visible UNIQUEMENT sur mobile */
#navCtaMobile { display: none !important; }
@media (max-width: 700px) {
  #navCtaMobile { display: block !important; }
}

/* ── Backdrop – body-level, no stacking-context issues ── */
.navBackdrop {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.navBackdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Mobile Drawer – body-level element, slides from the right ── */
.mobileDrawer {
  display: none;   /* hidden on desktop */
}

@media (max-width: 700px) {
  /* ── Topbar ── */
  .topbar-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .navToggle { display: flex; }
  .nav { display: none !important; }   /* desktop nav hidden on mobile */
  .cta { display: none; }

  /* Lang switcher compact */
  .navRight {
    flex: 0 0 auto;
    min-width: 0;
    gap: 6px;
  }
  .lang { padding: 3px; gap: 2px; }
  .langBtn { font-size: 12px; padding: 5px 9px; }

  /* ── Drawer panel ── */
  .mobileDrawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(82vw, 310px);
    z-index: 9999;          /* always above everything */

    background: linear-gradient(160deg, #0d1323 0%, #060d1a 100%);
    border-left: 1px solid rgba(212,175,55,.20);
    box-shadow: -16px 0 60px rgba(0,0,0,.75);

    overflow-y: auto;
    overflow-x: hidden;

    transform: translateX(100%);
    transition: transform .30s cubic-bezier(.4,0,.2,1);
    -webkit-transition: -webkit-transform .30s cubic-bezier(.4,0,.2,1);
  }
  .mobileDrawer.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  /* ── Drawer header ── */
  .drawerHead {
    display: flex;
    align-items: center;
    padding: 0 24px;
    min-height: 64px;
    background: rgba(0,0,0,.30);
    border-bottom: 1px solid rgba(212,175,55,.14);
    flex-shrink: 0;
  }
  .drawerTitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.40);
  }

  /* ── Drawer links ── */
  .mobileDrawer a.navLink {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 28px;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    letter-spacing: .3px;
    transition: background .15s, color .15s, padding-left .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobileDrawer a.navLink:active,
  .mobileDrawer a.navLink.active {
    background: rgba(212,175,55,.10);
    color: #d4af37;
    border-left: 3px solid #d4af37;
    padding-left: 25px;
  }

  /* ── CTA at bottom ── */
  .drawerCta {
    display: block;
    margin: 24px 20px 36px;
    padding: 15px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #b8962a 100%);
    color: #0a0d14;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    letter-spacing: .4px;
    -webkit-tap-highlight-color: transparent;
  }
}

/* ---- Tablet: 701–900px ---- */
@media (min-width: 701px) and (max-width: 900px) {
  .topbar-inner { flex-wrap: wrap; }
  .brand { flex: 1 1 auto; }
  .nav { overflow-x: auto; padding-bottom: 6px; flex-wrap: nowrap; }
  .navRight { margin-left: auto; }
}

/* ---- Very small phones ---- */
@media (max-width: 380px) {
  .heroTitle { font-size: clamp(22px, 8vw, 38px) !important; }
  .heroBadge { font-size: 11px; padding: 5px 10px; }
  .cta, .btn { font-size: 13px; padding: 10px 14px; }
}

/* ---- Global overflow protection ---- */
html, body { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; height: auto; }
table { max-width: 100%; overflow-x: auto; display: block; }
pre, code { overflow-x: auto; max-width: 100%; }

/* ---- Input/form cross-browser fixes ---- */
input, select, textarea, button {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.6);
  cursor: pointer;
}
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.6);
  cursor: pointer;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px !important;
}

/* ---- Touch-friendly tap targets ---- */
@media (pointer: coarse) {
  .btn, .cta, .navLink, .langBtn, select, input, textarea {
    min-height: 44px;
  }
  .langBtn { min-height: 36px; }
}

/* ---- Smooth scroll for all anchors ---- */
html { scroll-behavior: smooth; }

/* ---- Hero responsive ---- */
@media (max-width: 600px) {
  .heroCard {
    padding: 28px 18px 22px !important;
    margin: 0 8px !important;
  }
  .heroActions { flex-direction: column; gap: 10px; }
  .heroActions .btn,
  .heroActions .cta { width: 100%; text-align: center; }
}

/* ---- Section padding mobile ---- */
@media (max-width: 600px) {
  .section { padding-top: 40px !important; padding-bottom: 40px !important; }
  .section.hero { padding-top: 80px !important; }
  .h2 { font-size: clamp(22px, 6vw, 36px) !important; }
  .h3 { font-size: clamp(16px, 4.5vw, 22px) !important; }
}

/* ---- Footer mobile ---- */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
  .footer-col { width: 100%; }
}

/* ---- Widget responsive extras ---- */
@media (max-width: 480px) {
  .quoteBar { padding: 14px 12px; }
  .quoteValue { font-size: 28px !important; }
  .btn.primary, .btn.ghost { font-size: 14px; padding: 12px 18px; }
}

/* ---- Sticky aside becomes bottom bar on mobile ---- */
@media (max-width: 860px) {
  .card.sticky { position: static; top: auto; }
}

/* ---- Review grid mobile ---- */
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr !important; }
}

/* ---- Cross-browser: -webkit-fill-color fallback ---- */
@supports not (-webkit-text-fill-color: transparent) {
  .h2, .reasons__header h2, .heroTitle, .hiw-orbit__title {
    background: none;
    color: #d4af37;
  }
}

/* ---- Focus-visible for accessibility ---- */
:focus-visible {
  outline: 2px solid rgba(212,175,55,.7);
  outline-offset: 3px;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1050px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(212,175,55,.18);
  border-color: rgba(212,175,55,.22);
}

.dest-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,.04);
}
.dest-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.dest-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,175,55,.35);
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.dest-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dest-title {
  font-size: 17px;
  font-weight: 800;
  color: rgba(255,255,255,.95);
  margin: 0;
  line-height: 1.3;
}
.dest-text {
  font-size: 13.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.dest-tags span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: .02em;
}

/* ---- Reason card emoji icon ---- */
.reason-card__emoji {
  font-size: 36px;
  margin-bottom: 10px;
  line-height: 1;
  display: block;
}

/* ---- Social icons footer ---- */
.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  transition: background .2s, transform .18s, border-color .2s, color .2s;
  text-decoration: none;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { transform: scale(1.1); border-color: transparent; }
.social-instagram:hover { background: #e1306c; color: #fff; }
.social-tiktok:hover    { background: #111; color: #fff; }
.social-whatsapp:hover  { background: #25d366; color: #fff; }
.social-facebook:hover  { background: #1877f2; color: #fff; }
.social-youtube:hover   { background: #ff0000; color: #fff; }
.social-tripadvisor:hover { background: #34e0a1; border-color: #34e0a1; color: #111; }

/* legacy — hidden */
.footer-trust  { display: none; }
.trust-badge   { display: none; }
.trust-label   { display: none; }
.trust-sub     { display: none; }
.pay-icons     { display: none; }
.pay-chip      { display: none; }
