/* =========================================================
   RANN UTSAV — White Desert Festival
   Design tokens
   ========================================================= */
:root{
  --ink:        #0E1B33;   /* deep night indigo — the hero's moonlit sky */
  --salt:       #FFFFFF;   /* primary background — clean white */
  --salt-dim:   #F6F1E7;   /* soft cream — used for alternating sections & cards */
  --sand:       #D9C08E;   /* dune sand */
  /*--saffron:    #E8A33D;*/   /* marigold accent */
  --saffron:    #F6F1E7;
  --rani:       #D52170;   /* signature brand pink / bandhani */
  --peacock:    #146464;   /* kutch embroidery teal */
  --maroon:     #3A1F1A;   /* deep text on light */
  --star:       #FFF6DD;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(.16,.84,.44,1);
  --dur: .9s;

  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; font-size:16px; }
body{
  margin:0;
  font-family:var(--font-body);
  font-size:1rem;
  line-height:1.6;
  background:var(--salt);
  color:var(--maroon);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; font-weight:600; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--rani);
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--rani);
}
.light-section .eyebrow{ color:var(--peacock); }
.light-section .eyebrow::before{ background:var(--peacock); }

/* reveal-on-scroll */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* =========================================================
   IMAGE PLACEHOLDERS ("scene" photo mock-ups)
   Every .scene gets a grain + vignette treatment so flat
   gradients read as photographs, plus an optional themed
   watermark icon layered on top via .scene-ic-* classes.
   ========================================================= */
.scene{ position:relative; overflow:hidden; }
.scene::before{
  content:"";
  position:absolute; inset:0;
  /*background-image:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.22), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0px, rgba(255,255,255,.05) 2px, transparent 2px, transparent 7px);*/
  mix-blend-mode:overlay;
  pointer-events:none;
  z-index:1;
}
.scene::after{
  content:"";
  position:absolute; inset:0;
  box-shadow:inset 0 0 70px rgba(0,0,0,.2);
  pointer-events:none;
  z-index:1;
}
.scene-icon{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  z-index:2; pointer-events:none;
}
.scene-icon svg{ width:38%; height:38%; max-width:110px; max-height:110px; color:rgba(255,255,255,.55); }
.scene-icon.small svg{ width:30%; height:30%; max-width:70px; max-height:70px; }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  padding:26px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; }
.nav.scrolled{
  padding:14px 0;
  background:rgba(14,27,51,.88);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--font-display);
  color:var(--star);
  font-size:1.15rem;
  letter-spacing:.04em;
}
.brand .mark{ color:var(--saffron); font-size:1.4rem; line-height:1; }
.brand small{
  display:block;
  font-family:var(--font-mono);
  font-size:.55rem;
  letter-spacing:.3em;
  color:var(--sand);
  font-weight:400;
}
.nav-links{ display:flex; gap:30px; }
.nav-links li{ position:relative; }
.nav-links a{
  color:var(--star);
  font-size:.85rem;
  letter-spacing:.03em;
  position:relative;
  padding-bottom:4px;
  display:inline-flex; align-items:center; gap:5px;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0%; height:1px;
  background:var(--saffron);
  transition:width .35s var(--ease);
}
.nav-links a:hover::after{ width:100%; }
.nav-links li.has-dropdown > a .caret{ font-size:.6rem; opacity:.7; transition:transform .3s var(--ease); }
.nav-links li.has-dropdown:hover > a .caret{ transform:rotate(180deg); }
.dropdown{
  position:absolute; top:100%; left:0; margin-top:10px;
  min-width:230px; padding:12px 0; border-radius:12px;
  background:rgba(14,27,51,.98); border:1px solid rgba(251,247,238,.08);
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  box-shadow:0 24px 50px rgba(0,0,0,.35);
  z-index:50;
}
.nav-links li.has-dropdown:hover .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
/* 1. Set postion relative on the dropdown link */
.dropdown a { 
    display: block; 
    position: relative; /* REQUIRED so ::after positions relative to this link */
    padding: 10px 22px; 
    font-size: .82rem; 
    color: var(--sand); 
    text-decoration: none;
    transition: color 0.3s ease;
}

/* 2. Configure the ::after element (underline effect) */
.dropdown a::after { 
    content: "";
    display: block; /* Fixed: Changed from display: none */
    position: absolute;
    left: 0px;     /* Match the horizontal padding of the link */
    bottom: 0;
    width: 0%;      /* Starts at 0 width */
    height: 2px;    /* Line thickness */
    background: var(--saffron, #e91e63); /* Accent line color */
    transition: width 0.35s var(--ease, ease);
}

/* 3. Expand the line and update colors on hover */
.dropdown a:hover { 
    color: var(--salt); 
    background: rgba(255, 255, 255, .05); 
}

.dropdown a:hover::after {
    width: 100; /* Expands full length minus left/right padding */
}
.nav-cta:hover{ background:transparent; color:var(--star); transform:translateY(-2px); }
.nav-active{ color:var(--saffron) !important; }
.nav-toggle{ display:none; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  height:100vh;
  min-height:770px;
  overflow:hidden;
  background:linear-gradient(180deg,#0C2668 0%, #163E9E 45%, #2B58BE 100%);
}
.rann-scene{ position:absolute; inset:0; z-index:1; width:100%; height:100%; }
.rann-scene svg{ display:block; width:100%; height:100%; }

.hero-overlay{
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(100deg, rgba(6,12,38,.42) 0%, rgba(6,12,38,.18) 42%, transparent 68%),
             linear-gradient(0deg, rgba(6,12,38,.3) 0%, transparent 26%);
}

#stars{ position:absolute; inset:0; z-index:1; }
.star{
  position:absolute;
  background:var(--star);
  border-radius:50%;
  animation:twinkle 3.5s ease-in-out infinite;
}
@keyframes twinkle{
  0%,100%{ opacity:.15; transform:scale(.8); }
  50%{ opacity:1; transform:scale(1.15); }
}

.moon{
  position:absolute;
  top:9%; right:10%;
  width:132px; height:132px;
  border-radius:50%;
  background:
    radial-gradient(circle at 62% 68%, rgba(200,195,175,.35) 0%, transparent 5%),
    radial-gradient(circle at 30% 55%, rgba(200,195,175,.3) 0%, transparent 7%),
    radial-gradient(circle at 70% 30%, rgba(200,195,175,.28) 0%, transparent 6%),
    radial-gradient(circle at 45% 40%, rgba(200,195,175,.22) 0%, transparent 9%),
    radial-gradient(circle at 35% 32%, #FFFDF5 0%, #FDF6DE 45%, #EDE0AF 100%);
  box-shadow:0 0 90px 26px rgba(253,246,222,.45), 0 0 170px 75px rgba(253,246,222,.18);
  z-index:3;
  animation:moonGlow 5s ease-in-out infinite;
}
@keyframes moonGlow{
  0%,100%{ box-shadow:0 0 90px 26px rgba(253,246,222,.45), 0 0 170px 75px rgba(253,246,222,.18); }
  50%{ box-shadow:0 0 105px 32px rgba(253,246,222,.55), 0 0 190px 85px rgba(253,246,222,.24); }
}
@keyframes sparkle{
  0%,100%{ opacity:.2; }
  50%{ opacity:.9; }
}

.dunes{ position:absolute; left:0; right:0; bottom:0; z-index:3; width:100%; }
.dunes svg{ display:block; width:100%; height:auto; }

.lanterns{ position:absolute; inset:0; z-index:3; pointer-events:none; }
.lantern{
  position:absolute;
  bottom:-20px;
  width:5px; height:5px;
  border-radius:50%;
  background:radial-gradient(circle, #FFF8E0 0%, rgba(255,248,224,0) 75%);
  box-shadow:0 0 8px 3px rgba(255,248,224,.5);
  animation:rise linear infinite;
  opacity:.7;
}
@keyframes rise{
  0%{ transform:translateY(0) translateX(0); opacity:0; }
  15%{ opacity:.75; }
  85%{ opacity:.4; }
  100%{ transform:translateY(-70vh) translateX(24px); opacity:0; }
}

.hero-content{
  position:relative; z-index:5;
  height:100%;
  display:flex; flex-direction:column;
  align-items:flex-start; justify-content:center;
  padding-top:60px;
}
.hero-dates{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--font-mono);
  font-size:.75rem; letter-spacing:.18em; text-transform:uppercase;
  color:#FBF7EE;
  border:1px solid rgba(251,247,238,.35);
  padding:9px 18px; border-radius:100px;
  margin-bottom:28px;
  opacity:0; animation:fadeUp .9s var(--ease) .3s forwards;
}
.hero-dates span{ color:var(--saffron); }

.hero h1{
  color:#FFFFFF;
  font-size:clamp(2.6rem, 6.4vw, 5.6rem);
  line-height:1.02;
  letter-spacing:-.01em;
  max-width:900px;
  text-shadow:0 4px 40px rgba(0,0,0,.3);
}
.hero h1 .line{ display:block; overflow:hidden; }
.hero h1 .line span{
  display:inline-block;
  transform:translateY(110%);
  animation:slideUp 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span{ animation-delay:.15s; }
.hero h1 .line:nth-child(2) span{ animation-delay:.32s; color:var(--saffron); font-style:italic; }
.hero h1 .line:nth-child(3) span{ animation-delay:.48s; }
@keyframes slideUp{ to{ transform:translateY(0); } }

.hero p.lede{
  color:#F3E9D6;
  font-size:1.05rem;
  max-width:520px;
  margin-top:24px;
  line-height:1.7;
  text-shadow:0 2px 20px rgba(0,0,0,.25);
  opacity:0; animation:fadeUp .9s var(--ease) .7s forwards;
}
.hero-actions{
  display:flex; gap:18px; margin-top:40px;
  opacity:0; animation:fadeUp .9s var(--ease) .85s forwards;
}
@keyframes fadeUp{ from{ opacity:0; transform:translateY(18px);} to{ opacity:1; transform:translateY(0);} }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 30px;
  border-radius:100px;
  font-size:.86rem; letter-spacing:.03em;
  border:1px solid transparent;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn-primary{ background:var(--saffron); color:var(--maroon); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(232,163,61,.35); }
.btn-ghost{ border-color:rgba(251,247,238,.4); color:var(--salt); }
.btn-ghost:hover{ background:rgba(251,247,238,.08); border-color:var(--salt); transform:translateY(-3px); }
.btn-dark{ background:var(--peacock); color:var(--salt); }
.btn-dark:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(20,100,100,.35); }

.scroll-cue{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  z-index:5; display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--sand); font-family:var(--font-mono); font-size:.65rem; letter-spacing:.2em; text-transform:uppercase;
}
.scroll-cue .stick{
  width:1px; height:46px; background:linear-gradient(var(--saffron), transparent);
  position:relative; overflow:hidden;
}
.scroll-cue .stick::after{
  content:""; position:absolute; top:-46px; left:0; width:100%; height:46px;
  background:linear-gradient(var(--star), transparent);
  animation:cue 1.8s ease-in-out infinite;
}
@keyframes cue{ to{ top:46px; } }

/* =========================================================
   HERO QUICK BAR
   ========================================================= */
.hero-quickbar{
  position:relative; z-index:10;
  margin-top:-42px;
}
.qb-inner{
  background:#fff;
  border-radius:18px;
  box-shadow:0 30px 60px rgba(58,31,26,.18);
  display:flex; align-items:center; justify-content:space-between; gap:34px;
  padding:24px 36px;
  flex-wrap:wrap;
}
.qb-rotator{
  position:relative; height:26px; overflow:hidden;
  flex:1 1 240px; min-width:220px;
}
.qb-line{
  position:absolute; top:0; left:0; white-space:nowrap;
  font-family:var(--font-mono); font-size:.85rem; letter-spacing:.04em; color:var(--rani);
  opacity:0; transform:translateY(14px);
  transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.qb-line.active{ opacity:1; transform:translateY(0); }
.qb-line.exit{ opacity:0; transform:translateY(-14px); }
.qb-form{ display:flex; align-items:flex-end; gap:16px; flex-wrap:wrap; }
.qb-field{ display:flex; flex-direction:column; gap:6px; }
.qb-field label{ font-size:.68rem; letter-spacing:.06em; text-transform:uppercase; color:#9c8a76; }
.qb-field input, .qb-field select{
  padding:10px 14px; border-radius:8px; border:1px solid #E3D8C2; background:var(--salt);
  font-family:var(--font-body); font-size:.86rem; color:var(--maroon); min-width:150px;
}
.qb-field input:focus, .qb-field select:focus{ outline:none; border-color:var(--rani); }
.qb-btn{ padding:12px 24px; white-space:nowrap; font-size:.82rem; }

@media (max-width: 900px){
  .qb-inner{ flex-direction:column; align-items:stretch; }
  .qb-form{ flex-direction:column; align-items:stretch; }
  .qb-field input, .qb-field select{ min-width:0; width:100%; }
}
@media (max-width: 720px){
  .hero-quickbar{ margin-top:-28px; }
  .qb-inner{ padding:20px; border-radius:16px; }
}

/* =========================================================
   HOME STATS BAR
   ========================================================= */
.home-stats{ background:var(--salt); padding:56px 0 8px; }
.home-stats-row{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:24px; text-align:center;
}
.home-stat{
  padding:20px 16px; border-right:1px solid #ECE3D2;
}
.home-stat:last-child{ border-right:none; }
.home-stat .num{
  font-family:var(--font-display); font-size:2.8rem; color:var(--rani);
  line-height:1;
}
.home-stat .label{
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
  color:#7a6a5c; margin-top:10px;
}
@media (max-width: 720px){
  .home-stats-row{ grid-template-columns:1fr; gap:8px; }
  .home-stat{ border-right:none; border-bottom:1px solid #ECE3D2; padding:18px 0; }
  .home-stat:last-child{ border-bottom:none; }
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker{
  background:#d93763;
  color:#fff;
  overflow:hidden;
  white-space:nowrap;
  padding:13px 0;
  position:relative;
  z-index:6;
}
.ticker-track{
  display:inline-flex;
  animation:ticker 32s linear infinite;
}
.ticker-track span{
  font-family:var(--font-mono);
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:0 28px;
  display:inline-flex; align-items:center; gap:28px;
}
.ticker-track span::after{ content:"✦"; opacity:.6; }
@keyframes ticker{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* =========================================================
   SECTION SHELL
   ========================================================= */
section{ position:relative; }
.section-pad{ padding:50px 0; }

.dark-section{ background:var(--salt-dim); color:var(--maroon); }
.dark-section .muted{ color:#6b5c4d; }
.light-section{ background:var(--salt); color:var(--maroon); }
.light-section.alt{ background:var(--salt-dim); }
.light-section .muted{ color:#6b5c4d; }

.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:40px;
  margin-bottom:70px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(2rem, 3.6vw, 3.2rem);
  line-height:1.08; margin-top:18px; max-width:640px;
}
.section-head .cap{ max-width:360px; font-size:.98rem; line-height:1.7; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.about-text p{ font-size:1.06rem; line-height:1.85; margin-bottom:20px; color:#4d4136; }
.about-text p:first-of-type::first-letter{
  font-family:var(--font-display);
  font-size:3.4rem; float:left; line-height:.8;
  padding:6px 10px 0 0; color:var(--rani);
}
.mandala-wrap{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.mandala{ width:min(420px, 90%); height:auto; }
.mandala .spin{ transform-origin:center; animation:spin 60s linear infinite; }
.mandala .spin-rev{ transform-origin:center; animation:spinRev 90s linear infinite; }
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes spinRev{ to{ transform:rotate(-360deg); } }
.mandala path, .mandala circle{ stroke-dasharray:900; stroke-dashoffset:900; transition:stroke-dashoffset 2.4s var(--ease); }
.reveal.is-visible .mandala path, .reveal.is-visible .mandala circle{ stroke-dashoffset:0; }

.stat-row{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:30px; margin-top:56px;
}
.stat{ border-top:1px solid rgba(122,100,74,.25); padding-top:18px; }
.stat .num{
  font-family:var(--font-display); font-size:2.6rem; color:var(--rani);
  display:flex; align-items:baseline; gap:2px;
}
.stat .label{ font-size:.82rem; color:#7a6a5c; margin-top:4px; letter-spacing:.02em; }

/* =========================================================
   EXPERIENCE CARDS
   ========================================================= */
.card-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.exp-card{
  position:relative;
  padding:38px 30px;
  border-radius:18px;
  background:#fff;
  border:1px solid #ECE3D2;
  overflow:hidden;
  min-height:290px;
  display:flex; flex-direction:column; justify-content:flex-end;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.exp-card::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 80% -10%, rgba(232,163,61,.25), transparent 60%);
  opacity:0; transition:opacity .5s var(--ease);
}
.exp-card:hover{ transform:translateY(-10px); box-shadow:0 24px 50px rgba(58,31,26,.15); }
.exp-card:hover::before{ opacity:1; }
.exp-card .icon{
  position:absolute; top:30px; left:30px;
  width:46px; height:46px;
  color:var(--saffron);
  transition:transform .5s var(--ease);
}
.exp-card:hover .icon{ transform:scale(1.15) rotate(-6deg); }
.exp-card h3{ font-size:1.3rem; color:var(--maroon); margin-bottom:10px; position:relative; z-index:2; }
.exp-card p{ font-size:.92rem; line-height:1.6; color:#6b5c4d; position:relative; z-index:2; }
.exp-card .tag{
  position:absolute; top:30px; right:30px;
  font-family:var(--font-mono); font-size:.68rem; letter-spacing:.15em;
  color:#c9baa5;
}

/* =========================================================
   STAY / TENT CITY
   ========================================================= */
.stay-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.stay-card{
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  border:1px solid #ECE3D2;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.stay-card:hover{ transform:translateY(-8px); box-shadow:0 24px 50px rgba(58,31,26,.12); }
.stay-visual{
  height:230px;
  position:relative;
  overflow:hidden;
}
.stay-visual .scene{
  position:absolute; inset:0;
  transition:transform .8s var(--ease);
}
.stay-card:hover .stay-visual .scene{ transform:scale(1.08); }
.stay-body{ padding:26px 26px 30px; }
.stay-body .price{ font-family:var(--font-display); font-size:1.5rem; color:var(--rani); margin-top:6px;}
.stay-body h3{ font-size:1.15rem; }
.stay-body ul{ margin-top:16px; display:flex; flex-direction:column; gap:8px; }
.stay-body li{ font-size:.85rem; color:#6b5c4d; display:flex; gap:8px; align-items:center; }
.stay-body li::before{ content:"◆"; color:var(--peacock); font-size:.55rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-tabs{ display:flex; gap:10px; margin-bottom:36px; flex-wrap:wrap; }
.gallery-tabs button{
  padding:10px 20px; border-radius:100px;
  background:transparent; border:1px solid #D8CBB2; color:#6b5c4d;
  font-size:.8rem; letter-spacing:.02em;
  transition:all .3s var(--ease);
}
.gallery-tabs button.active, .gallery-tabs button:hover{
  background:var(--rani); border-color:var(--rani); color:#fff;
}
.masonry{
  columns:4 220px; column-gap:18px;
}
.masonry .g-item{
  break-inside:avoid; margin-bottom:18px;
  border-radius:14px; overflow:hidden;
  position:relative;
  cursor:pointer;
}
.masonry .g-item .scene{ width:100%; transition:transform .7s var(--ease); }
.masonry .g-item:hover .scene{ transform:scale(1.1); }
.masonry .g-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:16px;
  background:linear-gradient(0deg, rgba(43,23,16,.85), transparent);
  color:var(--salt); font-size:.78rem; letter-spacing:.03em;
  transform:translateY(8px); opacity:0;
  transition:all .4s var(--ease);
}
.masonry .g-item:hover .cap{ transform:translateY(0); opacity:1; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-wrap{ position:relative; max-width:760px; margin:0 auto; text-align:center; }
.testi-slide{
  display:none;
}
.testi-slide.active{ display:block; animation:fadeUp .8s var(--ease); }
.testi-slide q{
  font-family:var(--font-display); font-style:italic;
  font-size:clamp(1.3rem,2.4vw,1.8rem); line-height:1.5; color:var(--salt);
  quotes:none;
}
.testi-slide .who{ margin-top:26px; color:var(--saffron); font-size:.85rem; letter-spacing:.05em; }
.testi-dots{ display:flex; gap:10px; justify-content:center; margin-top:40px; }
.testi-dots button{
  width:8px; height:8px; border-radius:50%; background:rgba(251,247,238,.3); border:none; padding:0;
  transition:all .3s var(--ease);
}
.testi-dots button.active{ background:var(--saffron); width:24px; border-radius:5px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-band{
  position:relative;
  padding:110px 0;
  text-align:center;
  overflow:hidden;
  background:linear-gradient(120deg, var(--rani) 0%, #A81456 100%);
}
.cta-band .glow{
  position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle, rgba(232,163,61,.35), transparent 70%);
  top:-260px; left:50%; transform:translateX(-50%);
  animation:pulse 6s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:.5; } 50%{ opacity:1; } }
.cta-band h2{ color:#fff; font-size:clamp(2rem,4vw,3.2rem); position:relative; z-index:2; max-width:700px; margin:0 auto; }
.cta-band p{ color:#FBD9E6; margin:22px auto 40px; max-width:480px; position:relative; z-index:2; }
.cta-band .btn{ position:relative; z-index:2; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background:var(--salt-dim); color:var(--maroon); padding:90px 0 30px; border-top:1px solid #ECE3D2; }
.foot-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:60px; border-bottom:1px solid #E3D8C2;
}
.foot-brand p{ color:#6b5c4d; font-size:.92rem; line-height:1.7; margin-top:16px; max-width:280px; }
.foot-col h4{ font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; color:var(--rani); margin-bottom:20px; }
.foot-col ul{ display:flex; flex-direction:column; gap:12px; }
.foot-col a{ color:#6b5c4d; font-size:.9rem; transition:color .3s; }
.foot-col a:hover{ color:var(--rani); }
.social-row{ display:flex; gap:14px; margin-top:22px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid #E3D8C2; color:var(--maroon);
  display:flex; align-items:center; justify-content:center;
  transition:all .3s var(--ease);
}
.social-row a:hover{ background:var(--rani); border-color:var(--rani); color:#fff; transform:translateY(-4px); }
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:26px; font-size:.78rem; color:#9c8a76; flex-wrap:wrap; gap:14px;
}
.foot-bottom .policy-links{ display:flex; gap:18px; flex-wrap:wrap; }
.foot-bottom .policy-links a{ color:#7a6a5c; transition:color .3s; }
.foot-bottom .policy-links a:hover{ color:var(--rani); }

.btn-brand{ background:var(--rani); color:var(--star); }
.btn-brand:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(213,33,112,.4); }

/* =========================================================
   SUB-PAGE BANNER
   ========================================================= */
.page-banner{
  position:relative;
  height:64vh;
  min-height:450px;
  overflow:hidden;
  background:linear-gradient(180deg,#0E1B33 0%, #16294A 50%, #1F3661 100%);
  display:flex; align-items:flex-end;
  
}
.page-banner .wrap{ position:relative; z-index:5; padding-bottom:64px; width:100%; }
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--sand); margin-bottom:18px;
}
.breadcrumb a{ color:var(--sand); transition:color .3s; }
.breadcrumb a:hover{ color:var(--rani); }
.breadcrumb .sep{ opacity:.5; }
.page-banner h1{
  color:#FFFFFF;
  font-size:clamp(2.6rem, 5.4vw, 4.2rem);
  font-weight:600;
  line-height:1.08;
  letter-spacing:-.01em;
  max-width:800px;
  text-shadow:0 4px 30px rgba(0,0,0,.25);
}
.page-banner p.lede{ color:var(--sand); max-width:560px; margin-top:20px; font-size:1.05rem; line-height:1.7; }

/* =========================================================
   BREADCRUMB-STYLE INTRO STRIP (used under banner)
   ========================================================= */
.intro-strip{
  background:var(--salt); border-bottom:1px solid #ECE3D2;
  padding:22px 0;
}
.intro-strip .wrap{ display:flex; gap:34px; flex-wrap:wrap; align-items:center; }
.intro-strip .chip{
  display:flex; align-items:center; gap:10px;
  font-size:.85rem; color:#6b5c4d;
}
.intro-strip .chip b{ color:var(--maroon); font-family:var(--font-display); font-size:1rem; }
.intro-strip .chip .dot{ width:6px; height:6px; border-radius:50%; background:var(--rani); }

/* =========================================================
   TIMELINE (Special Dates)
   ========================================================= */
.timeline{ position:relative; }
.timeline-month{ margin-bottom:64px; }
.timeline-month h3{
  font-size:1.5rem; color:var(--rani); margin-bottom:26px;
  display:flex; align-items:center; gap:14px;
}
.timeline-month h3::after{ content:""; flex:1; height:1px; background:rgba(213,33,112,.2); }
.timeline-list{ display:grid; gap:14px; }
.timeline-item{
  display:grid; grid-template-columns:170px 1fr auto; gap:24px; align-items:center;
  padding:20px 26px; border-radius:14px; background:#fff; border:1px solid #ECE3D2;
  transition:transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.timeline-item:hover{ transform:translateX(6px); background:var(--salt-dim); border-color:#D8CBB2; }
.timeline-item .date{ font-family:var(--font-mono); font-size:.82rem; color:var(--rani); letter-spacing:.04em; }
.timeline-item .desc{ font-size:.98rem; color:var(--maroon); }
.timeline-item .kind{
  font-family:var(--font-mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
  padding:6px 14px; border-radius:100px; border:1px solid #E3D8C2; color:#7a6a5c; white-space:nowrap;
}
.timeline-item.highlight{ background:linear-gradient(90deg, rgba(213,33,112,.08), #fff); border-color:rgba(213,33,112,.3); }
.timeline-item.highlight .kind{ border-color:var(--rani); color:var(--rani); }

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
.accordion{ display:grid; gap:14px; max-width:820px; }
.acc-item{ border:1px solid #ECE3D2; border-radius:14px; overflow:hidden; background:#fff; }
.acc-head{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:22px 26px; background:none; border:none; text-align:left;
  font-family:var(--font-display); font-size:1.05rem; color:var(--maroon);
}
.acc-head .plus{
  font-family:var(--font-mono); font-size:1.2rem; color:var(--rani);
  transition:transform .35s var(--ease); flex-shrink:0; margin-left:20px;
}
.acc-item.open .acc-head .plus{ transform:rotate(45deg); }
.acc-body{
  max-height:0; overflow:hidden; transition:max-height .45s var(--ease);
}
.acc-body p{ padding:0 26px 24px; font-size:.94rem; line-height:1.7; color:#6b5c4d; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; }
.contact-info-list{ display:grid; gap:28px; margin-top:34px; }
.contact-info-item{ display:flex; gap:18px; align-items:flex-start; }
.contact-info-item .ic{
  width:44px; height:44px; border-radius:50%; background:rgba(213,33,112,.1);
  display:flex; align-items:center; justify-content:center; color:var(--rani); flex-shrink:0;
}
.contact-info-item h4{ font-size:1rem; margin-bottom:4px; }
.contact-info-item p, .contact-info-item a{ font-size:.9rem; color:#6b5c4d; }
.map-frame{
  margin-top:34px; border-radius:16px; overflow:hidden; height:220px;
  background:linear-gradient(135deg,#146464,#D9C08E); position:relative;
}
.map-frame::after{
  content:"Dhordo · Kutch · Gujarat"; position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:.8rem; letter-spacing:.1em; text-transform:uppercase; color:#fff;
  background:rgba(43,23,16,.35);
}

.form-card{
  background:#fff; border:1px solid #ECE3D2; border-radius:20px; padding:40px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; color:#7a6a5c; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1px solid #E3D8C2;
  font-family:var(--font-body); font-size:.94rem; background:var(--salt); color:var(--maroon);
  transition:border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--rani); box-shadow:0 0 0 3px rgba(213,33,112,.15);
}
.field textarea{ resize:vertical; min-height:110px; }
.form-submit{ width:100%; justify-content:center; border:none; margin-top:6px; }

/* =========================================================
   PRICING CARD (Packages)
   ========================================================= */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.price-card{
  border-radius:20px; padding:40px 30px; background:#fff; border:1px solid #ECE3D2; position:relative; overflow:hidden;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.price-card:hover{ transform:translateY(-10px); box-shadow:0 24px 50px rgba(58,31,26,.15); }
.price-card.featured{ background:linear-gradient(160deg, #FDEEF4, #fff 65%); border-color:var(--rani); }
.price-card .badge{
  position:absolute; top:24px; right:24px;
  font-family:var(--font-mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase;
  background:var(--saffron); color:var(--maroon); padding:5px 12px; border-radius:100px;
}
.price-card h3{ color:var(--maroon); font-size:1.3rem; margin-bottom:6px; }
.price-card .amount{ font-family:var(--font-display); font-size:2.4rem; color:var(--rani); margin:14px 0 22px; }
.price-card .amount span{ font-size:.9rem; color:#7a6a5c; font-family:var(--font-body); }
.price-card ul{ display:grid; gap:10px; margin-bottom:28px; }
.price-card li{ font-size:.88rem; color:#6b5c4d; display:flex; gap:10px; align-items:flex-start; }
.price-card li::before{ content:"✓"; color:var(--peacock); flex-shrink:0; }
.price-card .btn{ width:100%; justify-content:center; }

/* =========================================================
   ACTIVITY GRID (Experience page)
   ========================================================= */
.activity-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.activity-item{ border-radius:14px; overflow:hidden; position:relative; height:170px; }
.activity-item .scene{ position:absolute; inset:0; transition:transform .6s var(--ease); }
.activity-item:hover .scene{ transform:scale(1.12); }
.activity-item .label{
  position:absolute; left:0; right:0; bottom:0; padding:14px;
  background:linear-gradient(0deg, rgba(43,23,16,.88), transparent);
  color:#fff; font-size:.85rem; letter-spacing:.02em;
}

/* =========================================================
   TENT / SUITE DETAIL BLOCKS (Accommodation page)
   ========================================================= */
.suite-block{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.suite-block:nth-of-type(even) .suite-visual{ order:2; }
.suite-visual{ border-radius:20px; overflow:hidden; height:360px; }
.suite-visual .scene{ width:100%; height:100%; }
.suite-block + .suite-block{ margin-top:100px; }
.amenity-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.amenity-tags span{
  font-size:.78rem; padding:8px 16px; border-radius:100px; border:1px solid #E3D8C2; color:#6b5c4d;
}

/* =========================================================
   CARD GRIDS: BLOG / HOTELS / PLACES / GUIDES
   ========================================================= */
.blog-grid, .hotel-grid, .place-grid, .guide-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.content-card{
  border-radius:18px; overflow:hidden; background:#fff; border:1px solid #ECE3D2;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  display:flex; flex-direction:column;
}
.content-card:hover{ transform:translateY(-8px); box-shadow:0 24px 50px rgba(58,31,26,.12); }
.content-card .cc-visual{ height:190px; position:relative; overflow:hidden; }
.content-card .cc-visual .scene{ position:absolute; inset:0; transition:transform .7s var(--ease); }
.content-card:hover .cc-visual .scene{ transform:scale(1.08); }
.content-card .cc-tag{
  position:absolute; top:16px; left:16px;
  font-family:var(--font-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase;
  background:rgba(251,247,238,.92); color:var(--maroon); padding:6px 12px; border-radius:100px;
}
.content-card .cc-body{ padding:24px 24px 26px; display:flex; flex-direction:column; flex:1; }
.content-card .cc-meta{ font-family:var(--font-mono); font-size:.68rem; letter-spacing:.06em; text-transform:uppercase; color:var(--rani); margin-bottom:10px; }
.content-card h3{ font-size:1.12rem; line-height:1.35; margin-bottom:10px; }
.content-card p{ font-size:.9rem; color:#6b5c4d; line-height:1.6; flex:1; }
.content-card .cc-link{ margin-top:16px; font-size:.82rem; color:var(--rani); display:inline-flex; align-items:center; gap:6px; }
.content-card .cc-facts{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.content-card .cc-facts span{ font-size:.74rem; padding:5px 11px; border-radius:100px; background:var(--salt-dim); color:#7a6a5c; }
.content-card .stars{ color:var(--saffron); font-size:.82rem; letter-spacing:2px; }

/* Blog post detail typography */
.post-body{ max-width:740px; margin:0 auto; }
.post-body p{ font-size:1.05rem; line-height:1.9; color:#4d4136; margin-bottom:22px; }
.post-body h2{ font-size:1.5rem; margin:44px 0 18px; }
.post-body h3{ font-size:1.2rem; margin:32px 0 14px; }
.post-body blockquote{
  border-left:3px solid var(--rani); padding:6px 0 6px 26px; margin:32px 0;
  font-family:var(--font-display); font-style:italic; font-size:1.2rem; color:var(--maroon);
}
.post-meta{ display:flex; gap:20px; flex-wrap:wrap; align-items:center; font-size:.85rem; color:#7a6a5c; margin-bottom:40px; max-width:740px; margin-left:auto; margin-right:auto; }
.post-meta .avatar{ width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,var(--rani),var(--saffron)); flex-shrink:0; }
.post-share{ display:flex; gap:12px; max-width:740px; margin:50px auto 0; }
.post-share a{
  width:40px; height:40px; border-radius:50%; border:1px solid #E3D8C2; display:flex; align-items:center; justify-content:center;
  color:#6b5c4d; transition:all .3s var(--ease);
}
.post-share a:hover{ background:var(--rani); border-color:var(--rani); color:#fff; }

/* =========================================================
   POLICY / LONG-FORM PAGES
   ========================================================= */
.policy-body{ max-width:800px; }
.policy-body h2{ font-size:1.4rem; margin:44px 0 16px; color:var(--maroon); }
.policy-body h2:first-child{ margin-top:0; }
.policy-body p{ font-size:1rem; line-height:1.85; color:#4d4136; margin-bottom:18px; }
.policy-body ul{ margin:0 0 20px; display:grid; gap:10px; }
.policy-body li{ font-size:1rem; line-height:1.7; color:#4d4136; padding-left:24px; position:relative; }
.policy-body li::before{ content:"—"; position:absolute; left:0; color:var(--rani); }
.policy-updated{ font-family:var(--font-mono); font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:#9c8a76; margin-bottom:30px; }
.policy-toc{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:50px; padding:22px; border-radius:14px; background:var(--salt-dim);
}
.policy-toc a{ font-size:.82rem; padding:8px 16px; border-radius:100px; background:#fff; color:#6b5c4d; border:1px solid #ECE3D2; transition:all .3s; }
.policy-toc a:hover{ background:var(--rani); color:#fff; border-color:var(--rani); }

/* =========================================================
   TRAVEL GUIDE HUB
   ========================================================= */
.guide-route{
  display:flex; align-items:center; gap:14px; font-family:var(--font-mono); font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; color:var(--peacock); margin-bottom:10px;
}
.guide-route .arrow{ color:var(--rani); }

/* =========================================================
   PACKAGE DETAIL
   ========================================================= */
.detail-hero{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
.detail-facts{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:30px; }
.detail-fact{ padding:18px 20px; border-radius:14px; background:var(--salt-dim); }
.detail-fact .k{ font-family:var(--font-mono); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; color:#9c8a76; margin-bottom:6px; }
.detail-fact .v{ font-family:var(--font-display); font-size:1.15rem; color:var(--maroon); }
.itinerary-day{
  display:grid; grid-template-columns:110px 1fr; gap:26px; padding:26px 0; border-bottom:1px solid #ECE3D2;
}
.itinerary-day .d-label{ font-family:var(--font-mono); font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color:var(--rani); }
.itinerary-day h4{ font-size:1.08rem; margin-bottom:8px; }
.itinerary-day p{ font-size:.92rem; color:#6b5c4d; line-height:1.7; }

/* =========================================================
   IMAGE SLIDER (used on package, blog & guide detail pages)
   ========================================================= */
.img-slider{
  position:relative; border-radius:20px; overflow:hidden;
  box-shadow:0 24px 50px rgba(58,31,26,.14);
}
.img-slider.size-lg{ height:440px; }
.img-slider.size-md{ height:320px; }
.img-slider.size-sm{ height:220px; }
.img-slider .slider-track{ display:flex; height:100%; transition:transform .6s var(--ease); }
.img-slider .slide{ flex:0 0 100%; height:100%; position:relative; }
.img-slider .slide .scene{ width:100%; height:100%; }
.img-slider .slide-caption{
  position:absolute; left:20px; bottom:20px; z-index:5;
  color:#fff; font-family:var(--font-mono); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  background:rgba(43,23,16,.55); padding:7px 16px; border-radius:100px;
}
.slider-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.9); border:none; display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; color:var(--maroon); cursor:pointer; transition:all .3s var(--ease);
  z-index:6; box-shadow:0 8px 20px rgba(58,31,26,.18);
}
.slider-arrow:hover{ background:var(--rani); color:#fff; }
.slider-arrow.prev{ left:16px; }
.slider-arrow.next{ right:16px; }
.slider-dots{
  position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
  display:flex; gap:8px; z-index:6;
}
.slider-dots button{
  width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.5); border:none; padding:0;
  transition:all .3s var(--ease);
}
.slider-dots button.active{ background:#fff; width:22px; border-radius:5px; }
@media (max-width: 720px){
  .img-slider.size-lg{ height:280px; }
  .img-slider.size-md{ height:230px; }
  .slider-arrow{ width:36px; height:36px; font-size:1.1rem; }
}

/* =========================================================
   DETAIL PAGE EXTRAS: highlights, good-to-know, related
   ========================================================= */
.highlight-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.highlight-item{
  padding:22px 20px; border-radius:14px; background:var(--salt-dim); text-align:center;
}
.highlight-item .hi-icon{ width:34px; height:34px; margin:0 auto 12px; color:var(--rani); }
.highlight-item h4{ font-size:.92rem; margin-bottom:4px; }
.highlight-item p{ font-size:.78rem; color:#7a6a5c; line-height:1.5; }

.gtk-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.gtk-item{ display:flex; gap:14px; align-items:flex-start; }
.gtk-item .gtk-ic{ width:38px; height:38px; border-radius:50%; background:rgba(213,33,112,.1); color:var(--rani); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.gtk-item h4{ font-size:.92rem; margin-bottom:4px; }
.gtk-item p{ font-size:.85rem; color:#6b5c4d; line-height:1.6; }

.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.related-card{
  border-radius:16px; overflow:hidden; background:#fff; border:1px solid #ECE3D2;
  transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.related-card:hover{ transform:translateY(-6px); box-shadow:0 20px 40px rgba(58,31,26,.12); }
.related-card .rc-visual{ height:140px; }
.related-card .rc-body{ padding:18px 20px 22px; }
.related-card .rc-meta{ font-family:var(--font-mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; color:var(--rani); margin-bottom:8px; }
.related-card h4{ font-size:1rem; margin-bottom:6px; }
.related-card p{ font-size:.82rem; color:#6b5c4d; line-height:1.5; }

/* =========================================================
   RESPONSIVE (base)
   ========================================================= */
@media (max-width: 980px){
  .highlight-row{ grid-template-columns:1fr 1fr; }
  .gtk-grid, .related-grid{ grid-template-columns:1fr; }
}
@media (max-width: 980px){
  .about-grid, .card-grid, .stay-grid{ grid-template-columns:1fr !important; }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr 1fr; }
  .masonry{ columns:2 160px; }
  .pricing-grid, .contact-grid{ grid-template-columns:1fr; gap:40px; }
  .activity-grid{ grid-template-columns:repeat(2,1fr); }
  .suite-block, .suite-block:nth-of-type(even) .suite-visual{ grid-template-columns:1fr; order:0; }
  .suite-block{ grid-template-columns:1fr; }
  .suite-visual{ height:280px; }
  .blog-grid, .place-grid, .hotel-grid, .guide-grid{ grid-template-columns:1fr 1fr; }
  .detail-hero{ grid-template-columns:1fr; gap:36px; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; background:none; border:none; color:var(--salt); }
  .wrap{ padding:0 20px; }
  .card-grid{ grid-template-columns:1fr; }
  .stat-row{ grid-template-columns:1fr; gap:22px; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:34px; }
  .masonry{ columns:1 100%; }
  .section-pad{ padding:90px 0; }
  .timeline-item{ grid-template-columns:1fr; gap:8px; }
  .form-row{ grid-template-columns:1fr; }
  .activity-grid{ grid-template-columns:1fr 1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
  .intro-strip .wrap{ gap:16px; }
  .blog-grid, .place-grid, .hotel-grid, .guide-grid{ grid-template-columns:1fr; }
  .foot-bottom{ flex-direction:column; align-items:flex-start; }
  .itinerary-day{ grid-template-columns:1fr; gap:6px; }
  .detail-facts{ grid-template-columns:1fr 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html{ scroll-behavior:auto; }
}


.route-checkpoints {
  background: #F4F1EA;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  margin-top: 12px;
}

.route-line-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.route-line {
  position: absolute;
  top: 9px;
  left: 5%;
  right: 5%;
  border-top: 2px dashed #D4537E;
}

.route-stop {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.route-dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D4537E;
  margin: 6px auto;
}

.route-stop--endpoint .route-dot {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

.route-dot--start {
  background: #993556;
}

.route-dot--end {
  background: #4C7A1B;
}

.route-city {
  font-size: 13px;
  font-weight: 600;
  color: #2C2C2A;
  margin: 10px 0 2px;
  line-height: 1.3;
}

.route-dist {
  font-size: 11px;
  color: #5F5E5A;
  margin: 0;
}

.route-total {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 14px;
  color: #5F5E5A;
}

.route-total strong {
  color: #993556;
}

@media (max-width: 640px) {
  .route-checkpoints {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .route-line-wrap {
    min-width: 520px;
  }
  .route-city {
    font-size: 12px;
  }
}

.detail-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .detail-facts-grid {
    grid-template-columns: 1fr;
  }
}




/* Base Dropdown Navigation Container */
.kutch-stays-dropdown {
    position: relative;
    display: inline-block;
}

/* Primary Dropdown (Level 1 - Cities List) */
.kutch-stays-dropdown .level-1 {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: rgba(14, 27, 51, .98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    border: 1px solid rgba(251, 247, 238, .08);
    border-radius: 12px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    z-index: 999;
    /* FIX 1: REMOVED 'overflow: hidden;' so level-2 flyout isn't clipped */
}

/* Display Primary Level Dropdown on Hover */
.kutch-stays-dropdown:hover > .level-1 {
    display: block;
}

/* Primary City Menu Items */
.kutch-stays-dropdown .level-1 > li {
    position: relative; /* REQUIRED: Ensures level-2 positions relative to this li */
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

/* Rounded corner handling for top/bottom items without overflow: hidden */
.kutch-stays-dropdown .level-1 > li:first-child > a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.kutch-stays-dropdown .level-1 > li:last-child {
    border-bottom: none;
}

.kutch-stays-dropdown .level-1 > li:last-child > a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.kutch-stays-dropdown .level-1 > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: var(--sand, #a8b2c7);
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.kutch-stays-dropdown .level-1 > li:hover > a {
    color: var(--salt, #ffffff);
    background-color: rgba(255, 255, 255, .05);
    padding-left: 22px;
}

.kutch-stays-dropdown .arrow-icon {
    font-size: 0.82rem;
    color: var(--sand, #a8b2c7);
}

.kutch-stays-dropdown .level-1 > li:hover > a .arrow-icon {
    color: var(--salt, #ffffff);
}

/* Secondary Dropdown (Level 2 - Hotels Flyout) */
.kutch-stays-dropdown .level-2 {
    display: none;
    position: absolute;
    top: -6px; /* FIX 2: Align with top of the parent container for a seamless look */
    right: 100%;
    width: 240px;
    background: rgba(14, 27, 51, .98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    border: 1px solid rgba(251, 247, 238, .08);
    border-radius: 12px;
    padding: 6px 0;
    margin: 0;
    margin-right: 2px; /* FIX 3: Slight overlap bridge so hover doesn't break */
    list-style: none;
    z-index: 1000;
    max-height: 480px;
    overflow-y: auto; /* Scrollbar remains safe on level-2 */
}

/* Show Submenu on Hovering City Item */
.kutch-stays-dropdown .level-1 > li.city-item:hover > .level-2 {
    display: block;
}

/* Secondary Hotel Menu Items */
.kutch-stays-dropdown .level-2 > li {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.kutch-stays-dropdown .level-2 > li:last-child {
    border-bottom: none;
}

.kutch-stays-dropdown .level-2 > li > a {
    display: block;
    padding: 11px 18px;
    color: var(--sand, #a8b2c7);
    font-size: 0.82rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.kutch-stays-dropdown .level-2 > li > a:hover {
    color: var(--salt, #ffffff);
    background-color: rgba(255, 255, 255, .05);
    padding-left: 22px;
}

.inclusions-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
      }
      @media (min-width: 768px) {
        .inclusions-grid {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
        }
      }
      /* Ensure proper bullet spacing and visibility regardless of global CSS resets */
      .inc-exc-content ul {
        list-style-type: disc !important;
        padding-left: 20px !important;
        margin: 0 !important;
      }
      .inc-exc-content li {
        margin-bottom: 8px;
        line-height: 1.6;
        color: #444;
      }


/* ==========================================================================
   WHATSAPP INQUIRY POPUP MODAL CSS
   ========================================================================== */

/* 1. Modal Backdrop & Overlay */
.modal-backdrop {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 19, 43, 0.85); /* Dark Navy Translucent Backdrop */
  backdrop-filter: blur(8px); /* Modern Glassmorphism Blur */
  -webkit-backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
  
  /* Hidden State by Default */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active Class toggled via JavaScript to show modal */
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* 2. Modal Box Container */
.modal-box {
  position: relative;
  background-color: #fff; /* Deep Navy Card Theme */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  padding: 32px 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  color: #a8b2c7;
  
  /* Slide & Scale Entrance Animation */
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

/* 3. Close Button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  color: #a8b2c7;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

/* 4. Form Layout Grid */
.inquiry-form-grid {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.inquiry-form-grid input, .inquiry-form-grid select, .inquiry-form-grid textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #3f1f1a;
    border-radius: 8px;
    padding: 11px 14px;
    color: #3f1f1a;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.inquiry-form-grid input:focus,
.inquiry-form-grid select:focus,
.inquiry-form-grid textarea:focus {
  border-color: #d82362; /* Pink Brand Highlight */
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-form-grid input::placeholder,
.inquiry-form-grid textarea::placeholder {
  color: #7a869a;
}

/* 5. Google reCAPTCHA Wrapper */
.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 6px 0;
  overflow: hidden;
  transform: scale(0.92);
  transform-origin: center;
}

/* 6. Brand Button Style */
.btn.btn-brand {
  background-color: #d82362;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn.btn-brand:hover {
  background-color: #be1a50;
}

.btn.btn-brand:active {
  transform: scale(0.98);
}

/* 7. Mobile Responsiveness */
@media (max-width: 576px) {
  .modal-box {
    padding: 24px 20px;
  }
  .recaptcha-wrapper {
    transform: scale(0.85); /* Scales reCAPTCHA down on small mobile screens to prevent overflow */
  }
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  gap: 24px;
}

.room-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E5E1D8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.room-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-card-img i {
  font-size: 32px;
  color: rgba(255,255,255,0.85);
}

.room-card-body {
  padding: 20px;
}

.room-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #993556;
  margin: 0 0 8px;
}

.room-card h3 {
  font-size: 1.15rem;
  color: #2C2C2A;
  margin: 0 0 12px;
}

.room-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2C2C2A;
  margin-bottom: 16px;
}

.room-price span {
  font-size: 12px;
  font-weight: 400;
  color: #5F5E5A;
}

.room-card .btn.btn-brand {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}


.policy-updated {
  font-size: 13px;
  color: #A6A29A;
  margin: 0 0 16px;
  font-style: italic;
}

.house-rules-list {
  display: block;
  border: 1px solid #E5E1D8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(44, 44, 42, 0.05);
}

.house-rules-list::before {
  content: "Policy";
  display: block;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #d63971;
  border-bottom: 1px solid #E5E1D8;
}

.house-rule-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid #F0EDE5;
  transition: background 0.15s ease;
}

.house-rule-item:last-child {
  border-bottom: none;
}

.house-rule-item:hover {
  background: #FAF8F3;
}

.house-rule-item .rule-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.house-rule-item .rule-left i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d63971;
  color: #FFFFFF;
  border-radius: 10px;
  font-size: 15px;
}

.house-rule-item .rule-left h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: #2C2C2A;
  margin: 0;
}

.house-rule-item .rule-right p {
  font-size: 14.5px;
  color: #5F5E5A;
  margin: 0;
  line-height: 1.6;
}

.house-rule-item .rule-right img {
  height: 26px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #E5E1D8;
  padding: 2px;
  background: #fff;
}

@media (max-width: 640px) {
  .house-rule-item {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .house-rule-item .rule-left {
    gap: 10px;
  }
}

/* Pricing Table Styles matching Rann Utsav site */
.tariff-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-family: var(--font-body, sans-serif);
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e3d8c2;
}

.tariff-table-wrapper table th, 
.tariff-table-wrapper table tr:first-child td {
    background: #d82362 !important; /* Pink header */
    color: #ffffff !important;
    font-weight: 600;
    text-align: center;
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 1px solid #c01b52;
}

.tariff-table-wrapper table td {
    padding: 12px 18px;
    border: 1px solid #e8dec8;
    text-align: center;
    font-size: 0.92rem;
    color: #333333;
}

.tariff-table-wrapper table tr:nth-child(even) td {
    background: #faf7f2;
}

.tariff-table-wrapper table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #3f1f1a;
}

/* Tabbed Itinerary Wrapper */
.itinerary-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid #E3D8C2;
  overflow-x: auto;
  padding-bottom: 2px;
}

/* Individual Tab Button */
.itinerary-tab-btn {
  background: #F8F5EE;
  border: 1px solid #E3D8C2;
  border-bottom: none;
  padding: 10px 20px;
  font-family: var(--font-body, 'Work Sans', sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: #3f1f1a;
  cursor: pointer;
  border-radius: 6px 6px 0 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.itinerary-tab-btn:hover {
  background: #EFE8D8;
}

.itinerary-tab-btn.active {
  background: var(--maroon, #3f1f1a);
  color: #ffffff;
  border-color: var(--maroon, #3f1f1a);
}

/* Content Area */
.itinerary-tab-content {
  display: none;
  background: #ffffff;
  border: 1px solid #E3D8C2;
  border-radius: 0 8px 8px 8px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.itinerary-tab-content.active {
  display: block;
  animation: fadeInTab 0.3s ease-in-out forwards;
}

/* Header & Day Tag inside Active Tab */
.itinerary-header {
  border-bottom: 1px solid #F0E6D6;
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.day-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--rani, #d82362);
  margin-bottom: 4px;
}

.day-title {
  margin: 0;
  font-size: 1.3rem;
  color: var(--maroon, #3f1f1a);
  font-family: var(--font-display, 'Fraunces', serif);
}

.day-description {
  line-height: 1.75;
  color: #4a4a4a;
  font-size: 0.96rem;
}

/* Fade-in Animation */
@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mt-3{
    margin-top:2rem;
}

.logo-white{
    filter: brightness(0) invert(1);
}

  .policy-tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #E3D8C2;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .policy-tab-btn {
    background: #F8F5EE;
    border: 1px solid #E3D8C2;
    border-bottom: none;
    padding: 12px 24px;
    font-family: var(--font-body, sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    color: #3f1f1a;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.25s ease;
    white-space: nowrap;
  }
  .policy-tab-btn:hover {
    background: #EFE8D8;
  }
  .policy-tab-btn.active {
    background: var(--maroon, #3f1f1a);
    color: #ffffff;
    border-color: var(--maroon, #3f1f1a);
  }
  .policy-tab-content {
    display: none;
    background: #ffffff;
    border: 1px solid #E3D8C2;
    border-radius: 0 8px 8px 8px;
    padding: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  }
  .policy-tab-content.active {
    display: block;
    animation: policyFadeIn 0.3s ease-in-out forwards;
  }
  .policy-tab-title {
    margin: 0 0 16px;
    font-size: 1.25rem;
    color: var(--maroon, #3f1f1a);
    border-bottom: 1px solid #F0E6D6;
    padding-bottom: 10px;
    font-family: var(--font-display, serif);
  }
  .policy-body-text {
    line-height: 1.75;
    color: #4a4a4a;
    font-size: 0.95rem;
  }
  .policy-body-text ul {
    padding-left: 20px;
    margin: 0;
  }
  .policy-body-text li {
    margin-bottom: 10px;
  }
  @keyframes policyFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  
  /* ============================================================
   CLEAN & PROFESSIONAL ITINERARY STYLES
   ============================================================ */

/* Main Card Wrapper */
.itinerary-card {
  background: #ffffff;
  border: 1px solid #e7dfd5;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.itinerary-card-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f4efe9;
}

.day-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--rani, #d82362);
  background: rgba(216, 35, 98, 0.08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.day-title {
  font-size: 1.4rem;
  color: #2b1810;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

/* Schedule Container Box */
.schedule-container {
  border: 1px solid #eee7df;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

/* Schedule Row & Bottom Border */
.schedule-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #eee7df; /* Clear separator line */
  transition: background-color 0.2s ease;
}

.schedule-item:hover {
  background-color: #faf7f2;
}

/* Remove border on the last item */
.schedule-item:last-child {
  border-bottom: none;
}

/* Time Slot Column */
.schedule-time {
  width: 230px;
  flex-shrink: 0;
  padding-right: 16px;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f3ee;
  color: #2b1810;
  border: 1px solid #e2d7cb;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.time-badge i {
  color: var(--rani, #d82362);
}

/* Activity Column */
.schedule-text {
  flex-grow: 1;
  font-size: 0.94rem;
  color: #4a3e35;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive view for mobile screens */
@media (max-width: 768px) {
  .itinerary-card {
    padding: 18px;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }

  .schedule-time {
    width: 100%;
    padding-right: 0;
  }
}/* ============================================================
   CLEAN BORDERED ITINERARY SCHEDULE
   ============================================================ */

.itinerary-schedule-box {
  margin-top: 20px;
  border: 1px solid #e5dcd3;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Individual Schedule Line with Bottom Border */
.schedule-row {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-bottom: 1px solid #eee7df; /* Clear line after each item */
  transition: background-color 0.2s ease;
}

/* Hover effect for better readability */
.schedule-row:hover {
  background-color: #fcfaf7;
}

/* Remove bottom border on the very last row */
.schedule-row:last-child {
  border-bottom: none;
}

/* Desktop Grid View (Aligns times & descriptions neatly) */
@media (min-width: 576px) {
  .schedule-row {
    flex-direction: row;
    align-items: center;
  }

  .schedule-time {
    width: 220px;
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--rani, #d82362);
    letter-spacing: 0.3px;
  }

  .schedule-desc {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #3f3127;
    line-height: 1.5;
  }
}

/* Mobile View Adjustments */
@media (max-width: 575px) {
  .schedule-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rani, #d82362);
    margin-bottom: 4px;
  }
  
  .schedule-desc {
    font-size: 0.92rem;
    color: #3f3127;
  }
}




/* ============================================================
   CLEAN TABLE FORMAT ITINERARY STYLES
   ============================================================ */

/* Outer Box Container */
.itinerary-table {
  border: 1px solid #e2d9cd;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Individual Table Row & Divider */
.table-row {
  display: flex;
  align-items: center;
  padding: 14px 18px !important;
  border-bottom: 1px solid #eee7df; /* Clear separator line */
  transition: background-color 0.2s ease;
}

.table-row:hover {
  background-color: #faf7f2;
}

/* Remove border on the last item */
.table-row:last-child {
  border-bottom: none;
}

/* Time Badge Column */
.table-col-time {
  width: 230px;
  flex-shrink: 0;
  padding-right: 16px;
}

.time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f7f3ee;
  color: #2b1810;
  border: 1px solid #e0d5c8;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.time-badge i {
  color: var(--rani, #d82362);
}

/* Activity Text Column */
.table-col-desc {
  flex-grow: 1;
  font-size: 0.94rem;
  color: #4a3e35;
  line-height: 1.5;
  font-weight: 500;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .table-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }

  .table-col-time {
    width: 100%;
    padding-right: 0;
  }
}

/* Nav CTA Button Base Style */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d82362;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(216, 35, 98, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State */
.nav-cta:hover {
  background-color: #b01a4e;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 35, 98, 0.35);
}

/* Active / Click State */
.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(216, 35, 98, 0.2);
}

/* Focus State for Accessibility */
.nav-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 35, 98, 0.4);
}

.swiper-pagination-bullet-active{
    background:#d82362 !important;
}

.swiper-button-next, .swiper-button-prev{
    color:#d82362 !important;
}

.places-slider {
    width: 100%;
    padding-bottom: 40px; /* Space for pagination dots */
}
  
.places-slider .swiper-slide {
    height: auto; /* Ensures cards match height */
    display: flex;
}

.places-slider .content-card {
    width: 100%;
}

  /* Custom navigation arrow styling */
.swiper-button-next, .swiper-button-prev {
    color: #333;
}

.swiper-pagination-bullet-active {
    background: #333; 
}



/*whatsapp btn*/
/* Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 125px;
    right: 25px;
    z-index: 999;
}

/* Button */
.whatsapp-btn {
    width: 65px;
    height: 65px;
    background-color: #25D366; /* Official WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: 0.3s;
    position: relative;
}

/* SVG Icon */
.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff; /* White icon */
}

/* Hover */
.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}

/* Pulse Animation */
.whatsapp-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}

/* Tooltip */
.tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 90px;
}


/* FLOATING BUTTON CONTAINER */
    .scroll-top-wrapper {
      position: fixed;
      bottom: 25px;
      right: 25px;
      width: 50px;
      height: 50px;
      z-index: 9999;
      cursor: pointer;
      
      /* Hidden by default, fades in on scroll */
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.3s ease;
    }

    /* SHOW CLASS TRIGGERED BY JS */
    .scroll-top-wrapper.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* SVG PROGRESS CIRCLE */
    .progress-svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg); /* Start progress from top (12 o'clock) */
      border-radius: 50%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* BACKGROUND CIRCLE TRACK */
    .progress-bg {
      fill: none;
      stroke: rgba(49, 140, 139, 0.2); /* Light teal track background */
      stroke-width: 4;
    }

    /* DYNAMIC FILLING CIRCLE */
    .progress-bar {
      fill: none;
      stroke: rgb(42 52 73);
      stroke-width: 4;
      stroke-dasharray: 138; /* Circumference = 2 * PI * 22 ≈ 138 */
      stroke-dashoffset: 138;
      stroke-linecap: round;
      transition: stroke-dashoffset 0.1s linear;
    }

    /* CENTER BUTTON WITH ARROW */
    .scroll-btn-inner {
      position: absolute;
      top: 5px;
      left: 5px;
      width: 40px;
      height: 40px;
      background-color: #d93763;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    /* HOVER EFFECTS */
    .scroll-top-wrapper:hover .scroll-btn-inner {
      background-color: #277271;
      transform: scale(1.08);
    }

    /* ARROW ICON */
    .scroll-btn-inner svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: #ffffff;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* MOBILE RESPONSIVENESS */
    @media (max-width: 480px) {
      .scroll-top-wrapper {
        bottom: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
      }
      .scroll-btn-inner {
        top: 4px;
        left: 4px;
        width: 36px;
        height: 36px;
      }
      .scroll-btn-inner svg {
        width: 16px;
        height: 16px;
      }
    }
    

.testi-wrap {
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }

  .testi-slider {
    width: 100%;
    margin-top: 26px;
    overflow: hidden;
  }

  .testi-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 30px;
    opacity: 0.4;
    transition: opacity 0.4s ease;
  }

  .swiper-slide-active.testi-slide {
    opacity: 1;
  }

  .testi-slide q {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--maroon, #3f1f1a);
    font-family: var(--font-display, 'Fraunces', serif);
    display: block;
    margin-bottom: 16px;
  }

  .testi-slide .who {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--rani, #d82362);
    letter-spacing: 0.03em;
  }

  /* Custom Pagination Dots Styling */
  .testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    position: relative !important;
    bottom: auto !important;
  }

  .testi-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D8CBB2;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
  }

  .testi-dots .swiper-pagination-bullet-active {
    background: var(--rani, #d82362);
    width: 26px;
    border-radius: 6px;
  }
  
  
  /* Itinerary & Policy Tabs Styling */
      .itinerary-tabs-nav, .policy-tabs-nav {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
        border-bottom: 2px solid #E3D8C2;
        overflow-x: auto;
        padding-bottom: 2px;
      }

      .itinerary-tab-btn, .policy-tab-btn {
        background: #F8F5EE;
        border: 1px solid #E3D8C2;
        border-bottom: none;
        padding: 10px 20px;
        font-family: var(--font-body, 'Work Sans', sans-serif);
        font-weight: 600;
        font-size: 0.95rem;
        color: #3f1f1a;
        cursor: pointer;
        border-radius: 6px 6px 0 0;
        transition: all 0.25s ease;
        white-space: nowrap;
      }

      .itinerary-tab-btn:hover, .policy-tab-btn:hover {
        background: #EFE8D8;
      }

      .itinerary-tab-btn.active, .policy-tab-btn.active {
        background: var(--maroon, #3f1f1a);
        color: #ffffff;
        border-color: var(--maroon, #3f1f1a);
      }

      .itinerary-tab-content, .policy-tab-content {
        display: none;
        background: #ffffff;
        border: 1px solid #E3D8C2;
        border-radius: 0 8px 8px 8px;
        padding: 28px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
      }

      .itinerary-tab-content.active, .policy-tab-content.active {
        display: block;
        animation: fadeInTab 0.3s ease-in-out forwards;
      }

      .itinerary-header, .policy-tab-title {
        border-bottom: 1px solid #F0E6D6;
        padding-bottom: 12px;
        margin-bottom: 16px;
      }

      .day-tag {
        display: inline-block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        color: var(--rani, #d82362);
        margin-bottom: 4px;
      }

      .day-title, .policy-tab-title {
        margin: 0;
        font-size: 1.25rem;
        color: var(--maroon, #3f1f1a);
        font-family: var(--font-display, 'Fraunces', serif);
      }

      .day-description, .policy-body-text {
        line-height: 1.75;
        color: #4a4a4a;
        font-size: 0.96rem;
      }

      .policy-body-text ul {
        padding-left: 20px;
        margin: 0;
      }

      .policy-body-text li {
        margin-bottom: 10px;
      }

      @keyframes fadeInTab {
        from { opacity: 0; transform: translateY(6px); }
        to { opacity: 1; transform: translateY(0); }
      }
