/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  overflow-x:hidden;      /* kill horizontal scroll everywhere */
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;      /* extra safety */
}

/* Make sure media never overflow */
img,
video{
  max-width: 100%;
  height: auto;
  display:block;
}

/* =========================
   FADE HELPERS
========================= */
.fade-top,
.fade-bottom{
  position: relative;
  overflow: hidden;
}

.fade-top::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 240px;
  z-index: 3;
  pointer-events:none;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 35%,
    rgba(0,0,0,0.45) 70%,
    rgba(0,0,0,0) 100%
  );
}

.fade-bottom::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 320px;
  z-index: 3;
  pointer-events:none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 45%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0) 100%
  );
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.hero-bg{
  position:absolute; inset:0;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  z-index:0;
  opacity:0;
  transition: opacity 650ms ease;
}

.hero-bg-1{ background-image: url("images/mauritius-bg4.png"); }
.hero-bg-2{ background-image: url("images/mauritius-bg6.png"); }
.hero-bg-3{ background-image: url("images/mauritius-bg1.png"); }

.hero-bg.is-active{ opacity:1; }

.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.24) 45%, rgba(0,0,0,0.40) 100%);
  z-index:1;
}

.hero-bottom-shade{
  position:absolute; left:0; right:0; bottom:0;
  height:60vh;
  background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.80) 26%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.00) 100%);
  z-index:2;
  pointer-events:none;
}

/* =========================
   NAV BASE
========================= */
.nav{
  position:relative; z-index:10;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 50px;
  gap: 18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  opacity:.9;
  text-transform:uppercase;
  white-space: nowrap;
  text-decoration:none;
  color:inherit;
}
.nav-links{
  display:flex;
  gap:26px;
  flex-wrap: wrap;
  justify-content:center;
}
.nav-links a{
  color:rgba(255,255,255,0.75);
  text-decoration:none;
  font-size:14px;
  white-space: nowrap;
}
.nav-links a:hover{ color:#fff; }
.nav-cta{
  padding:8px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  text-decoration:none;
  color:#fff;
  font-size:14px;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.nav-right{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:6px;
  padding:3px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lang-btn{
  border:0;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  padding:6px 8px;
  border-radius:999px;
  cursor:pointer;
}
.lang-btn.is-active{
  background: rgba(255,255,255,0.20);
  color:#fff;
}

/* HAMBURGER BUTTON (base – hidden on desktop) */
.nav-toggle{
  display:none;
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.35);
  background:rgba(0,0,0,0.30);
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:16px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transform-origin:center;
  transition:transform .2s ease, opacity .2s ease;
}
/* turn hamburger into X when nav is open */
.nav.is-open .nav-toggle span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}
.nav.is-open .nav-toggle span:nth-child(2){
  opacity:0;
}
.nav.is-open .nav-toggle span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* HERO MAIN */
.hero-main{
  position:relative; z-index:9;
  min-height: calc(100vh - 80px);
  display:flex; justify-content:space-between; align-items:center;
  padding: 0 50px;
}
.hero-title-wrap{ width: min(720px, 70vw); }
.hero-title{
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.swipe{ margin-top: 18px; }
.swipe-text{
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72);
}

/* RIGHT INDICATOR */
.hero-right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-width: 90px;
}
.indicator{
  position:relative;
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.ind-item{
  width: 60px;
  text-align:right;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  line-height: 1.2;
  padding: 0;
}
.ind-item.is-active{
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 700;
}
.ind-marker{
  position:absolute;
  right: -1px;
  top: 0;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transform: translate(100%, -50%);
}

/* BOTTOM INFO */
.bottom-info{
  position:absolute;
  left: 50px;
  right: 120px;
  bottom: 90px;
  z-index:9;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}
.bottom-info p{
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 260px;
}
.bottom-info .p-left{ text-align:left; }
.bottom-info .p-center{ text-align:center; margin: 0 auto; }
.bottom-info .p-right{ text-align:right; margin-left:auto; }

.bottom-rule{
  position:absolute;
  left: 50px;
  right: 50px;
  bottom: 40px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  z-index:9;
}

/* =========================
   WHY CHOOSE US
========================= */
.why{
  position:relative;
  min-height:100vh;
  background:#000;
  overflow:hidden;
}
.why-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 50px 80px;
}

.why-title-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-bottom: 45px;
}
.why-line{
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.22);
}
.why-title{
  font-size: 44px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  text-align:center;
}

.why-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items:start;
}

.why-top,
.why-bottom{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
}
.why-top{ margin-top: 10px; }
.why-bottom{ margin-top: 240px; }
.why-highlight{ color: rgba(255,255,255,0.95); }

/* Timeline */
.timeline{
  --tl-gap: clamp(18px, 2vw, 28px);
  --tl-img-w: clamp(140px, 16vw, 190px);
  --tl-img-h: clamp(96px, 11vw, 130px);
  --tl-text-max: 320px;

  position:relative;
  display:flex;
  flex-direction:column;
  gap: 56px;
  padding: 12px 0;
}
.tl-line{
  position:absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.18);
  transform: translateX(-50%);
}
.tl-step{
  position:relative;
  display:grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  column-gap: var(--tl-gap);
  row-gap: 8px;
  align-items:start;
}

.tl-step-1,
.tl-step-2,
.tl-step-3{
  top: auto;
}

.tl-dot{
  position:absolute;
  left: 50%;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  transform: translate(-50%, -50%);
}

.tl-label{
  position:relative;
  min-width: 0;
  max-width: var(--tl-text-max);
}
.tl-small{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin-bottom: 2px;
}
.tl-big{
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255,255,255,0.95);
  overflow-wrap: anywhere;
}

.tl-desc{
  position:relative;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
  max-width: var(--tl-text-max);
  overflow-wrap: anywhere;
}

/* Step 2 LEFT of line */
.text-left .tl-label,
.text-left .tl-desc{
  grid-column: 1;
  justify-self: end;
  text-align:left;
}

/* Step 1 & 3 RIGHT of line (desktop) */
.text-right .tl-label,
.text-right .tl-desc{
  grid-column: 3;
  justify-self: start;
  text-align:left;
}

/* IMAGES */
.tl-images{
  position:relative;
  width: var(--tl-img-w);
  height: var(--tl-img-h);
  max-width: 100%;
  grid-row: 1 / span 2;
  margin-top: 4px;
}
.tl-img{
  position:relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  overflow:hidden;
}
.tl-right{
  grid-column: 3;
  justify-self: start;
}
.tl-left{
  grid-column: 1;
  justify-self: end;
}

.img-1a{ background: url("images/ontime.jpg") center/cover no-repeat; }
.img-2a{ background: url("images/driver.jpg") center/cover no-repeat; }
.img-3a{ background: url("images/taxi.webp") center/cover no-repeat; }

/* =========================
   WHAT'S INCLUDED
========================= */
.included{
  position: relative;
  background: #000;
  padding: 70px 0 90px;
  overflow: hidden;
}
.included-bg{
  position: absolute;
  inset: 0;
  background: url("images/your-bg.jpg") center/cover no-repeat;
  z-index: 0;
  transform: scale(1.06);
  opacity: 0.95;
}
.included::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.65) 24%,
    rgba(0,0,0,0.18) 60%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events:none;
}
.included::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 240px;
  z-index:1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.78) 40%,
    rgba(0,0,0,0.20) 72%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events:none;
}

.included-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.included-title-row{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}

.included-title{
  font-size: 44px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}
.included-line{
  flex:1;
  height:1px;
  background: rgba(255,255,255,0.22);
  transform: translateY(10px);
}

.included-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.inc-card{
  border-radius: 14px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.38);
  box-shadow: 0 18px 60px rgba(0,0,0,0.65);
  backdrop-filter: blur(14px);
  min-height: 120px;
  transition: background .25s ease, border-color .25s ease;
}

.inc-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}

.inc-icon{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(184, 176, 90, 0.95);
}
.inc-icon svg{ width:22px; height:22px; }

.inc-head h3{
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.inc-card p{
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 240px;
}

.inc-card:hover{
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.50);
}

/* =========================
   VEHICLES / RATES
========================= */
.vehicles{
  background:#000;
  padding: 70px 0 140px;
}
.vehicles-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}

.sec-title-row{
  display:flex;
  align-items:center;
  gap: 14px;
  margin-bottom: 18px;
}
.sec-title{
  font-size: 34px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
}
.sec-line{
  flex:1;
  height:1px;
  background: rgba(255,255,255,0.18);
  transform: translateY(10px);
}

.vehicle-scroller{
  display:flex;
  gap: 18px;
  justify-content: center;
  overflow-x: auto;
  padding: 18px 6px 24px;
  scroll-snap-type: x mandatory;
}
.vehicle-scroller::-webkit-scrollbar{ height: 8px; }
.vehicle-scroller::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.vehicle-scroller::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
}

.v-card{
  scroll-snap-align: start;
  min-width: 260px;
  max-width: 260px;
  border-radius: 16px;
  padding: 16px 18px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  box-shadow: 0 18px 60px rgba(0,0,0,0.70);
  backdrop-filter: blur(12px);
}

.v-photo{
  width: 100%;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25);
  margin-bottom: 14px;
}
.v-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.95;
  transform: scale(1.02);
}

.v-top h3{
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}
.v-sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}

.v-prices{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.v-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 8px 0;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}
.v-row strong{
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}

.v-meta{
  display:flex;
  gap: 16px;
  align-items:center;
  margin: 18px 0 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.v-meta-item{
  display:flex;
  gap: 8px;
  align-items:center;
  color: rgba(184, 176, 90, 0.95);
  font-weight: 700;
}
.v-ico{ filter: grayscale(1); opacity: 0.9; }

.v-btn{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.90);
  font-weight: 800;
  font-size: 16px;
  cursor:pointer;
}
.v-btn:hover{
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
}

/* =========================
   TRANSFER FORM
========================= */
.transfer-form-section{
  position: relative;
  background:#000;
  padding: 120px 18px;
}

.transfer-form-bg{
  position:absolute;
  inset:0;
  background: url("images/form.jpg") center/cover no-repeat;
  z-index:0;
  transform: scale(1.05);
}
.transfer-form-dim{
  position:absolute;
  inset:0;
  z-index:1;
  background: rgba(0,0,0,0.35);
}

.transfer-form-container{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.transfer-form-container h2{
  text-align:center;
  font-size: 44px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
}
.form-subtitle{
  text-align:center;
  margin-top: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
}

.transfer-form{ margin-top: 28px; }

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.form-group.full-width{ grid-column: span 2; }

.form-group label{
  font-size: 12px;
  color: rgba(255,255,255,0.80);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.20);
  color: rgba(255,255,255,0.92);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder{
  color: rgba(255,255,255,0.55);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: rgba(184, 176, 90, 0.75);
}

.form-submit-btn{
  margin-top: 18px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: #000;
  font-weight: 900;
  font-size: 16px;
  cursor:pointer;
}
.form-submit-btn:hover{
  background: rgba(255,255,255,0.98);
}

/* =========================
   DESTINATIONS GRID
========================= */
.destinations{
  background:#000;
  padding: 90px 0 80px;
}

.dest-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.dest-head{
  text-align:center;
  margin-bottom: 18px;
}
.dest-kicker{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dest-title{
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

.dest-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.dest-card{
  position: relative;
  height: 360px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
  box-shadow: 0 18px 60px rgba(0,0,0,0.70);
  transition: transform .25s ease, border-color .25s ease;
}

.dest-img{
  position:absolute;
  inset:0;
}
.dest-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.05);
  opacity: 0.95;
}

.dest-card::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 65%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events:none;
}

.dest-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:2;
  padding: 16px 14px 16px;
  text-align:center;
}

.dest-rank{
  font-size: 12px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 4px;
}
.dest-name{
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.35;
}

.dest-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.28);
}

.dest-bottom-line{
  margin-top: 22px;
  height: 1px;
  background: rgba(255,255,255,0.18);
}

/* =========================
   TOUR SECTIONS
========================= */
.tour-sections{
  margin-top: 36px;
}

.tour-head{
  text-align:center;
  margin-bottom: 18px;
}
.tour-kicker{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tour-title{
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  font-weight: 900;
}

.tour-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.tour-card{
  border-radius: 16px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.38);
  box-shadow: 0 18px 60px rgba(0,0,0,0.70);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.tour-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.30);
  background: rgba(0,0,0,0.48);
}

.tour-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.tour-name{
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,0.94);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.tour-duration{
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
}
.tour-duration span{
  color: rgba(184, 176, 90, 0.95);
  font-weight: 900;
  margin-right: 6px;
}

.tour-list{
  margin-top: 12px;
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.tour-list li{
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.74);
}

.tour-note{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

.tour-note strong{
  color: rgba(184, 176, 90, 0.95);
}

/* Learn More / CTA button inside tour cards */
.tour-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.tour-btn:hover{
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.38);
  transform: translateY(-1px);
}

/* =========================
   ACTIVITIES CARDS
========================= */
.activities{
  position: relative;
  background: #000;
  padding: 90px 0 110px;
  overflow: hidden;
}

.activities-bg{
  position:absolute;
  inset:0;
  background: url("images/pont.jpg") center/cover no-repeat;
  z-index:0;
  transform: scale(1.06);
  opacity: 0.95;
}
.activities-dim{
  position:absolute;
  inset:0;
  z-index:1;
  background: radial-gradient(circle at 10% 10%, rgba(0,0,0,0.0) 100%, rgba(0,0,0,0.82) 150%, rgba(0,0,0,0.95) 100%);
}

/* make "View All Activities" super visible */
#activities .tour-btn{
  background: rgba(255,255,255,0.92) !important;
  color: #000 !important;
  border-color: rgba(255,255,255,0.22) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,0.65) !important;
  font-weight: 900 !important;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
#activities .tour-btn:hover{
  background: rgba(255,255,255,0.98) !important;
  border-color: rgba(255,255,255,0.35) !important;
  transform: translateY(-1px);
}

/* make sure activities content is above overlays */
#activities .act-inner{
  position: relative;
  z-index: 5;
}
#activities .activities-bg,
#activities .activities-dim{
  z-index: 0;
}
#activities .act-inner > div[style*="justify-content:center"]{
  position: relative;
  z-index: 6;
}
#activities .tour-btn{
  position: relative;
  z-index: 7;
}

.act-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.act-head{
  text-align:center;
  margin-bottom: 32px;
}
.act-kicker{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}
.act-title{
  margin-top: 10px;
  font-size: 30px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-weight: 900;
}

.act-stage-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-top: 18px;
}

.act-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.act-arrow:hover{
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.38);
}

.act-stage{
  position: relative;
  width: min(860px, 92vw);
  height: 420px;
  perspective: 1200px;
}

.act-card{
  position:absolute;
  top: 30px;
  left: 50%;
  width: 320px;
  height: 380px;
  transform: translateX(-50%);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.75);
  transition: transform 450ms ease, opacity 450ms ease, filter 450ms ease;
  cursor: pointer;
}

.act-media{
  position:relative;
  width:100%;
  height: 240px;
}
.act-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.05);
  opacity: 0.95;
}
.act-media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}

.act-like{
  position:absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  cursor:pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.act-like:hover{
  border-color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.38);
}

.act-info{
  padding: 16px 18px 16px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.act-name{
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.94);
}
.act-sub{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.act-meta{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.act-pill{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: rgba(184, 176, 90, 0.95);
  font-weight: 800;
}
.act-price{
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 800;
}

/* 3D positions */
.act-card.pos-0{
  transform: translateX(-50%) translateY(-6px) scale(1.10);
  opacity: 1;
  filter: none;
}
.act-card.pos-1{
  transform: translateX(-50%) translateX(235px) translateY(-18px) scale(0.94) rotateY(-10deg);
  opacity: 0.86;
  filter: blur(0.2px);
}
.act-card.pos-2{
  transform: translateX(-50%) translateX(420px) translateY(-34px) scale(0.88) rotateY(-12deg);
  opacity: 0.58;
  filter: blur(0.8px);
}
.act-card.pos-3{
  transform: translateX(-50%) translateX(-235px) translateY(-18px) scale(0.94) rotateY(10deg);
  opacity: 0.86;
  filter: blur(0.2px);
}
.act-card.pos-4{
  transform: translateX(-50%) translateX(-420px) translateY(-34px) scale(0.88) rotateY(12deg);
  opacity: 0.58;
  filter: blur(0.8px);
}
.act-card.pos-hide{
  transform: translateX(-50%) translateY(0) scale(0.8);
  opacity: 0;
  pointer-events:none;
}

.act-dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 18px;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.14);
  cursor: pointer;
}
.dot.is-active{
  width: 18px;
  background: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.45);
}

/* =========================
   EXCURSIONS PAGE HERO
========================= */
.page-hero{
  position: relative;
  min-height: 58vh;
  overflow: hidden;
  background: #000;
}

.page-hero-bg{
  position:absolute;
  inset:0;
  background: url("images/mauritius-bg1.png") center/cover no-repeat;
  opacity: 0.95;
  transform: scale(1.05);
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.85) 100%
  );
}

.page-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 40px;
  text-align: left;
}

.page-hero-kicker{
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.page-hero-title{
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.page-hero-sub{
  margin: 14px 0 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

.page-hero-actions{
  display:flex;
  justify-content:flex-start;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: #000;
  text-decoration:none;
  font-weight: 900;
  font-size: 14px;
}
.page-hero-btn:hover{ background: rgba(255,255,255,0.98); }

.page-hero-btn.ghost{
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}
.page-hero-btn.ghost:hover{
  background: rgba(0,0,0,0.38);
  border-color: rgba(255,255,255,0.35);
}

  .page-hero-bottom{
    position:absolute;
    left:0; right:0; bottom:0;
    height: 160px;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events:none;
  }

  /* =========================
     REVIEWS PAGE
  ========================= */
  .reviews-section{
    padding: 40px 0 110px;
    background: #000;
  }
  .reviews-grid{
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: start;
  }
  .review-form-card,
  .reviews-list-card{
    background: rgba(12,12,12,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  }
  .review-form-title,
  .reviews-list-title{
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
  }
  .review-form-sub,
  .reviews-list-sub{
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
  }
  .review-form{
    margin-top: 18px;
    display: grid;
    gap: 14px;
  }
  .review-field label{
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }
  .review-field input,
  .review-field textarea{
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
  }
  .review-field textarea{
    resize: vertical;
    min-height: 120px;
  }
  .review-field input:focus,
  .review-field textarea:focus{
    outline: none;
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
  }
  .review-stars-input{
    display: inline-flex;
    gap: 6px;
    direction: rtl;
    unicode-bidi: bidi-override;
  }
  .review-stars-input input{
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    left: -9999px;
  }
  .review-stars-input label{
    font-size: 20px;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: color .2s ease;
  }
  .review-stars-input input:checked ~ label,
  .review-stars-input label:hover,
  .review-stars-input label:hover ~ label{
    color: #f4c15d;
  }
  .review-check{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
  }
  .review-actions{
    display: flex;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .review-status{
    min-height: 18px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
  }
  .review-status.is-success{
    color: #8ee6b7;
  }
  .review-status.is-error{
    color: #ff9a9a;
  }
  .review-btn{
    border: 0;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #000;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
  }
  .review-btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,0.98);
  }
  .review-btn.ghost{
    background: rgba(0,0,0,0.35);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .review-btn.ghost:hover{
    background: rgba(0,0,0,0.5);
  }
  .reviews-list-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  .reviews-count{
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
  }
  .reviews-empty{
    margin-top: 18px;
    padding: 14px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .reviews-list{
    margin-top: 6px;
  }
  .review-item{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
  }
  .review-item:first-child{
    border-top: 0;
  }
  .review-top{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
  }
  .review-stars{
    font-size: 14px;
    letter-spacing: 0.14em;
    color: #f4c15d;
  }
  .review-meta{
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .review-title{
    margin-top: 8px;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
  }
  .review-body{
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    white-space: pre-line;
  }
  @media (max-width: 900px){
    .reviews-grid{
      grid-template-columns: 1fr;
    }
    .review-top{
      flex-direction: column;
      align-items: flex-start;
    }
  }
  @media (max-width: 640px){
    .review-form-card,
    .reviews-list-card{
      padding: 20px;
    }
  }

  .is-active-link{
    color: rgba(255,255,255,0.95) !important;
    font-weight: 800;
  }

/* =========================
   EXCURSION CARDS
========================= */
.exc-list{
  padding: 40px 0 110px;
  background: #000;
}

.exc-region-head{ margin-top: 24px; }
.exc-region-sub{
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  line-height: 1.6;
  margin: -8px 0 18px;
  max-width: 820px;
}

.exc-card{
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.42);
  box-shadow: 0 22px 70px rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  scroll-margin-top: 120px;
}

.exc-top{
  display:grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0;
}

.exc-gallery{
  position: relative;
  background: rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.exc-frame{
  position: relative;
  height: 420px;
  overflow: hidden;
}

.exc-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 250ms ease;
}
.exc-slide.is-active{ opacity: 1; }

.exc-arrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.95);
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.exc-arrow:hover{
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.40);
}
.exc-prev{ left: 14px; }
.exc-next{ right: 14px; }

.exc-thumbs{
  display:flex;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.30);
}
.exc-thumb{
  width: 64px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  overflow:hidden;
  padding:0;
  background: transparent;
  cursor:pointer;
  opacity: 0.70;
}
.exc-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.exc-thumb.is-active{
  opacity: 1;
  border-color: rgba(184, 176, 90, 0.75);
}

.exc-info{
  padding: 26px 24px 22px;
}

.exc-title{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
}

.exc-stars{
  margin-top: 10px;
  font-size: 16px;
}
.exc-stars span{
  color: rgba(184, 176, 90, 0.95);
  letter-spacing: 0.08em;
}

.exc-lines{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.exc-lines strong{
  color: rgba(255,255,255,0.92);
}

.exc-pricebox{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.exc-price-head{
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.90);
}
.exc-price-row{
  display:flex;
  align-items:baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.80);
}
.exc-price-from{
  font-size: 14px;
  color: rgba(255,255,255,0.72);
}
.exc-old{
  text-decoration: line-through;
  color: rgba(255,255,255,0.50);
  font-weight: 800;
}
.exc-new{
  font-size: 24px;
  font-weight: 1000;
  color: rgba(255,255,255,0.96);
}
.exc-per{
  color: rgba(255,255,255,0.70);
}

.exc-quote-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  text-decoration:none;
  min-width: 120px;
}
.exc-quote-btn:hover{
  background: rgba(0,0,0,0.40);
  border-color: rgba(255,255,255,0.35);
}

.exc-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.26);
}

.exc-block{
  border-radius: 16px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
}

.exc-h3{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}

.exc-list-ul{
  padding-left: 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.exc-list-ul li{
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
}

.exc-quote-form label{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.exc-quote-form input,
.exc-quote-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.92);
  outline:none;
}
.exc-quote-form input:focus,
.exc-quote-form textarea:focus{
  border-color: rgba(184, 176, 90, 0.75);
}
.exc-form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.exc-form-group{
  display:flex;
  flex-direction:column;
}
.exc-full{ grid-column: span 2; }

.exc-form-btn{
  margin-top: 12px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.92);
  color: #000;
  font-weight: 1000;
  font-size: 15px;
  cursor:pointer;
}
.exc-form-btn:hover{ background: rgba(255,255,255,0.98); }

.exc-back-home{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */
@media (max-width: 1100px){
  .included-grid{ grid-template-columns: repeat(2, 1fr); }
  .dest-grid{ grid-template-columns: repeat(2, 1fr); }
  .tour-grid{ grid-template-columns: repeat(2, 1fr); }

  .exc-top{ grid-template-columns: 1fr; }
  .exc-gallery{
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .exc-bottom{ grid-template-columns: 1fr; }
}

/* MOBILE / TABLET (layout) */
@media (max-width:900px){
  .hero-main{
    padding: 120px 18px 40px;
    flex-direction:column;
    align-items:flex-start;
    gap: 40px;
  }
  .hero-right{ align-self:flex-end; }

  .bottom-info{
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }
  .bottom-info p{ max-width: none; }
  .bottom-rule{ left: 18px; right: 18px; }

  .why-inner{ padding: 60px 18px 70px; }
  .why-grid{ grid-template-columns:1fr; gap:40px; }
  .why-bottom{ margin-top:40px; }

  /* NEW stacked timeline on mobile */
  .timeline{
    gap: 36px;
    padding: 12px 0;
  }

  .tl-line{
    left: 16px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: none;
  }

  .tl-step{
    grid-template-columns: 24px 1fr;
    column-gap: 18px;
  }

  .tl-dot{
    left: 16px;
    right: auto;
    top: 18px;
    transform: translate(-50%, -50%);
  }

  .tl-label,
  .tl-desc{
    grid-column: 2;
    justify-self: start;
    max-width: none;
  }

  .text-left .tl-label,
  .text-left .tl-desc,
  .text-right .tl-label,
  .text-right .tl-desc{
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .tl-images{
    grid-column: 2;
    grid-row: auto;
    width: min(260px, 100%);
    height: auto;
    margin-top: 10px;
  }

  .tl-left,
  .tl-right{
    grid-column: 2;
    justify-self: start;
  }

  .tl-img{
    width: 100%;
    height: 160px;
    border-radius: 16px;
  }

  .included-inner{ padding: 0 18px; }
  .vehicles-inner{ padding: 0 18px; }
  .dest-inner{ padding: 0 18px; }
  .act-inner{ padding: 0 18px; }

  .form-grid{ grid-template-columns: 1fr; }
  .form-group.full-width{ grid-column: span 1; }
  .transfer-form-container{ padding: 28px 18px; }

  .dest-grid{ grid-template-columns: 1fr; }
  .dest-card{ height: 340px; }
  .tour-grid{ grid-template-columns: 1fr; }

  .page-hero-inner{ padding: 56px 18px 36px; }

  .exc-frame{ height: 320px; }
  .exc-form-grid{ grid-template-columns: 1fr; }
  .exc-full{ grid-column: span 1; }

  .act-stage{ height: 420px; }
  .act-card{ width: 280px; }
  .act-card.pos-1{
    transform: translateX(-50%) translateX(190px) translateY(-18px) scale(0.92) rotateY(-10deg);
  }
  .act-card.pos-2{
    transform: translateX(-50%) translateX(330px) translateY(-34px) scale(0.86) rotateY(-12deg);
  }
  .act-card.pos-3{
    transform: translateX(-50%) translateX(-190px) translateY(-18px) scale(0.92) rotateY(10deg);
  }
  .act-card.pos-4{
    transform: translateX(-50%) translateX(-330px) translateY(-34px) scale(0.86) rotateY(12deg);
  }

  /* EXTRA SAFETY: no horizontal scroll on mobile */
  html, body{
    overflow-x:hidden;
  }
  .hero,
  .page-hero,
  .included,
  .vehicles,
  .destinations,
  .activities,
  .exc-list,
  .transfer-form-section,
  .wa-strip{
    max-width:100vw;
    overflow-x:hidden;
  }
}

/* =========================
   GLASS NAVBAR OVERRIDE
========================= */
.nav{
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 36px));
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 14px 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
.nav.nav-scrolled{
  background: rgba(20,20,20,0.35);
  border-color: rgba(255,255,255,0.20);
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
.brand img{
  height: 56px;
  width: 56px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: none;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover{ color: rgba(255,255,255,0.95); }
.nav-cta{
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 900;
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,0.30);
  border-color: rgba(255,255,255,0.30);
}

/* NAV on mobile – glass bar + dropdown */
  @media (max-width: 900px){
    .nav{
      position: sticky;
      top: 10px;
      left: 10px;
      right: 10px;
      transform: none;
      width: auto;
      padding: 12px 14px;
      gap: 12px;
      border-radius: 0;
    }
  .lang-btn{
    font-size:10px;
    padding:5px 7px;
  }
  .brand img{
    height: 42px;
    width: 42px;
  }
  .brand-text{
    font-size: 13px;
  }
  .nav-right{
    gap: 8px;
  }
  .nav-cta{
    padding: 8px 12px;
    font-size: 12px;
  }

  /* force show hamburger on mobile */
  .nav-toggle{
    display:inline-flex !important;
  }

  /* dropdown menu (hidden by default) */
  .nav-links{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    display:none !important;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:16px 18px 18px;
    border-radius:20px;
    background:rgba(0,0,0,0.95);
    border:1px solid rgba(255,255,255,0.18);
    box-shadow:0 20px 60px rgba(0,0,0,0.85);
    z-index: 10000;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  /* when nav has .is-open (JS toggles) – show menu */
  .nav.is-open .nav-links{
    display:flex !important;
  }

  .nav-links a{
    font-size:14px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    width:100%;
  }
}

@media (max-width: 640px){
  .brand{
    white-space: normal;
    max-width: 220px;
    gap: 8px;
  }
  .nav{
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .brand{
    flex: 1 1 auto;
    min-width: 0;
  }
  .nav-right{
    flex: 0 0 auto;
  }
  .brand img{
    height: 38px;
    width: 38px;
  }
  .brand-text{
    display: block;
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .nav-cta{
    display: none;
  }
  .lang-switch{
    padding: 2px;
  }
}

@media (max-width: 420px){
  .brand{
    max-width: 180px;
  }
  .brand-text{
    font-size: 11px;
    letter-spacing: 0.01em;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}

/* =========================
   BAIKAL-STYLE BLACK FOOTER
========================= */
.baikal-footer{
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 36px 18px 22px;
}
.baikal-footer-inner{
  max-width: 1240px;
  margin: 0 auto;
}
.bf-top{
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr;
  gap: 22px;
  align-items: start;
}
.bf-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bf-logo{
  width: 28px;
  height: 28px;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  flex: 0 0 auto;
}
.bf-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.bf-brand-name{
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255,255,255,0.90);
}
  .bf-desc{
    margin-top: 12px;
    max-width: 420px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }
  .bf-email{
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
  }
  .bf-email:hover{
    color: rgba(255,255,255,0.95);
    text-decoration: underline;
  }
  .bf-copy{
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.40);
  }
.bf-links{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: center;
  padding-top: 2px;
}
.bf-links a{
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color .18s ease;
}
.bf-links a:hover{
  color: rgba(255,255,255,0.90);
}
.bf-right{
  display:flex;
  justify-content: flex-end;
}
.bf-socials{
  display:flex;
  gap: 10px;
  align-items:center;
}
.bf-social{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}
.bf-social:hover{
  transform: translateY(-1px);
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}
.bf-bottom{
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content: flex-end;
}
.bf-bottom-links{
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}
.bf-bottom-links a{
  color: rgba(255,255,255,0.42);
  text-decoration:none;
  transition: color .18s ease;
}
.bf-bottom-links a:hover{
  color: rgba(255,255,255,0.82);
}
.bf-dot{
  color: rgba(255,255,255,0.22);
}
@media (max-width: 900px){
  .bf-top{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bf-links{ justify-content: flex-start; }
  .bf-right{ justify-content: flex-start; }
  .bf-bottom{ justify-content: flex-start; }
}

/* WHATSAPP STRIP */
.wa-strip {
  background: #020202;
  padding: 18px 7vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wa-ticker {
  flex: 1 1 auto;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.wa-ticker-text {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  animation: waTickerMove 20s linear infinite;
}
@keyframes waTickerMove {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.wa-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.wa-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 3px solid rgba(120, 255, 160, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #25d366, #128c7e);
  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.7),
    0 0 32px rgba(0, 0, 0, 0.9);
}
.wa-icon-fa {
  font-size: 2rem;
  color: #ffffff;
}
.wa-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-cta-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}
.wa-cta-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}
.wa-cta-number:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .wa-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .wa-cta {
    width: 100%;
    justify-content: flex-start;
  }
  .wa-cta-number {
    font-size: 1rem;
  }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  z-index: 10000;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover{
  background: #20c35a;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.whatsapp-float:focus-visible{
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.whatsapp-float svg{
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

/* no horizontal scroll on mobile – handled above */
