/* ============= DESIGN TOKENS ============= */
:root{
  --green-950:#0b2017;
  --green-900:#102e20;
  --green-800:#173a28;
  --green-700:#1d4030;
  --gold:#e2b73c;
  --gold-2:#d4a93a;
  --gold-soft:#f0cf6a;
  --cream:#f5edd6;
  --paper:#fdfaf2;
  --line:#e3dac4;
  --ink:#1a1a1a;
  --body:#5f5f5f;
  --star:#e2b53b;
  /* SEO / UX typography scale */
  --text-base:14px;
  --text-md:17px;
  --leading-body:1.6;
  --leading-relaxed:1.75;
  /* Heading scale (SEO-friendly) */
  --heading-h1:clamp(24px,3.9vw,26px);
  --heading-h2:clamp(18px,2.15vw,20px);
  --heading-h3:clamp(16px,1.85vw,18px);
}
*{box-sizing:border-box}html{scroll-behavior:smooth}html,body{margin:0;padding:0;overflow-x:hidden}
body{
  font-family:"Poppins",system-ui,sans-serif;color:var(--ink);background:#fff;
  font-size:var(--text-base);line-height:var(--leading-body);-webkit-font-smoothing:antialiased;
}
h1{font-size:var(--heading-h1);line-height:1.2}
h2{font-size:var(--heading-h2);line-height:1.3}
h3{font-size:var(--heading-h3);line-height:1.35}
p{line-height:var(--leading-body)}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
.container{max-width:1480px;margin:0 auto;padding:0 28px}

/* image with graceful color fallback */
.imgwrap{position:relative;overflow:hidden;background:#3a3a2a}
.imgwrap img{width:100%;height:100%;object-fit:cover;display:block}

/* ============= TOP NAV ============= */
.topnav{background:#fff;border-bottom:1px solid #ececec;position:relative}
.topnav-inner{
  display:flex;align-items:center;gap:20px;padding:14px 28px;max-width:1480px;margin:0 auto;width:100%;min-width:0;
}
a.brand{display:flex;align-items:center;gap:12px;flex-shrink:0;text-decoration:none}
.brand-mark{
  width:64px;height:64px;border-radius:50%;
  background:#1d4030;
  display:flex;align-items:center;justify-content:center;
  color:#f0cf6a;font-size:36px;line-height:1;
  overflow:hidden;
}
.brand-mark img{width:100%;height:100%;object-fit:cover}
.brand-name{line-height:1.05}
.brand-name b{display:block;font-weight:800;font-size:20px;letter-spacing:.02em;color:#1a1a1a}
.brand-name span{display:block;font-size:9px;letter-spacing:.2em;color:#7a6a3a;font-weight:700;margin-top:2px}

.mainnav{display:flex;gap:18px;align-items:center;flex:1;justify-content:center;white-space:nowrap;min-width:0}
.mainnav a{font-size:13px;font-weight:500;color:#2b2b2b;padding:6px 0;position:relative;flex-shrink:0}
.mainnav a.active{color:var(--green-700);font-weight:700}
.mainnav a .caret{font-size:9px;margin-left:4px;color:#888}

.phone-pill{
  background:var(--green-700);color:#fff;
  padding:8px 14px;border-radius:999px;
  display:inline-flex;align-items:center;gap:8px;
  font-weight:600;font-size:12px;flex-shrink:0;
}
.phone-pill .ic{
  width:22px;height:22px;border-radius:50%;
  background:var(--gold);color:#1a1a1a;
  display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0;
}
.phone-pill .phone-numbers{display:flex;flex-direction:column;gap:1px;line-height:1.2}
.phone-pill a{color:#fff;text-decoration:none;white-space:nowrap;font-size:12px;font-weight:600}
.phone-pill a:hover{color:var(--gold-soft)}

.topnav-actions{
  display:flex;align-items:center;gap:10px;margin-left:auto;flex-shrink:0;
}

.call-btn{
  display:none;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;border:none;cursor:pointer;
  background:var(--green-700);color:#fff;padding:0;
  box-shadow:0 2px 8px rgba(11,32,23,.15);
  transition:background .2s ease,transform .2s ease;
}
.call-btn:hover{background:var(--green-800)}
.call-btn .call-btn-ic{
  width:28px;height:28px;border-radius:50%;
  background:var(--gold);color:#1a1a1a;
  display:flex;align-items:center;justify-content:center;
}

.nav-toggle{
  display:none;flex-direction:column;justify-content:center;align-items:center;gap:5px;
  width:42px;height:42px;border-radius:8px;border:1px solid #e0e0e0;
  background:#fff;cursor:pointer;padding:0;flex-shrink:0;
  transition:border-color .2s ease,background .2s ease;
}
.nav-toggle:hover{border-color:var(--green-700)}
.nav-toggle-bar{
  display:block;width:20px;height:2px;background:#2b2b2b;border-radius:1px;
  transition:transform .25s ease,opacity .25s ease;
}
.topnav.is-menu-open .nav-toggle-bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.topnav.is-menu-open .nav-toggle-bar:nth-child(2){opacity:0}
.topnav.is-menu-open .nav-toggle-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;background:#fff;border-top:1px solid #ececec;
  box-shadow:0 8px 20px rgba(11,32,23,.08);
}
.mobile-nav a{
  display:block;padding:14px 20px;font-size:14px;font-weight:500;
  color:#2b2b2b;text-decoration:none;border-bottom:1px solid #f0f0f0;
}
.mobile-nav a:last-child{border-bottom:none}
.mobile-nav a.active{color:var(--green-700);font-weight:700;background:#f7f4ec}
.mobile-nav a:hover{background:#faf8f2;color:var(--green-700)}
.topnav.is-menu-open .mobile-nav{display:block}

.call-popup{
  position:fixed;inset:0;z-index:9999;
  display:flex;align-items:center;justify-content:center;padding:20px;
}
.call-popup[hidden]{display:none}
.call-popup-backdrop{
  position:absolute;inset:0;background:rgba(11,32,23,.55);
  backdrop-filter:blur(2px);
}
.call-popup-box{
  position:relative;z-index:1;width:100%;max-width:340px;
  background:#fff;border-radius:14px;padding:24px 22px 20px;
  box-shadow:0 16px 40px rgba(11,32,23,.25);
  border:1px solid #e3dac4;
}
.call-popup-close{
  position:absolute;top:10px;right:12px;width:32px;height:32px;
  border:none;background:transparent;font-size:24px;line-height:1;
  color:#888;cursor:pointer;border-radius:6px;
}
.call-popup-close:hover{color:#333;background:#f5f5f5}
.call-popup-box h3{
  margin:0 0 4px;font-size:18px;font-weight:700;color:var(--green-800);
}
.call-popup-sub{margin:0 0 18px;font-size:13px;color:#666}
.call-popup-link{
  display:flex;align-items:center;gap:14px;
  padding:14px 16px;margin-bottom:10px;border-radius:10px;
  background:linear-gradient(135deg,#0b2017,#173a28);
  color:#fff;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease;
}
.call-popup-link:last-child{margin-bottom:0}
.call-popup-link:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(11,32,23,.2);color:#fff}
.call-popup-link-ic{
  width:40px;height:40px;border-radius:50%;background:var(--gold);
  color:#1a1a1a;display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.call-popup-link strong{display:block;font-size:13px;font-weight:700;margin-bottom:2px}
.call-popup-link small{display:block;font-size:15px;font-weight:600;color:var(--gold-soft)}

body.menu-open,body.call-open{overflow:hidden}

/* ============= HERO ============= */
.hero{position:relative;height:480px;color:#fff;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0;background:#2a2418}
.hero-bg picture{display:block;width:100%;height:100%}
.hero-bg img,.hero-bg picture img{width:100%;height:100%;object-fit:cover;display:block}
 
.hero-inner{
  position:relative;z-index:2; 
  padding:40px 28px;display:grid;grid-template-columns:1.3fr 1fr;gap:32px;
  align-items:center;height:100%;
}
 
.hero h1{
  font-size:clamp(36px,6vw,48px);line-height:1.1;margin:0;
  letter-spacing:.005em;color:#fff;
  text-shadow:0 4px 24px rgba(0,0,0,.55);
  /* distressed effect */
  background-image:
    radial-gradient(circle at 20% 30%,rgba(0,0,0,.25) 0,transparent 12%),
    radial-gradient(circle at 80% 70%,rgba(0,0,0,.2) 0,transparent 10%);
  -webkit-background-clip:text;background-clip:text;
}
.hero h1 .sub{
  display:block;color:var(--gold);font-size:clamp(28px,4.5vw,38px);margin-top:6px;
  letter-spacing:.01em;
}
.hero .tagline{
  font-size:22px;font-weight:600;margin:24px 0 14px;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
}
.hero p.lead{
  font-size:var(--text-base);max-width:430px;line-height:var(--leading-relaxed);
  color:#eadfc7;text-shadow:0 1px 2px rgba(0,0,0,.6);margin:0 0 26px;
}
.btn-gold{
  display:inline-flex;align-items:center;gap:10px;
  background:var(--gold);color:#1a1a1a;
  padding:14px 26px;border-radius:4px;
  font-weight:700;font-size:13px;letter-spacing:.06em;
  border:none;cursor:pointer;text-transform:uppercase;
}
.btn-gold:hover{background:var(--gold-soft)}
.btn-gold .arr{font-size:14px}

/* booking card */
.book-card{
  background:rgba(11,32,23,.92);
  border:1px solid #2a4a36;
  border-radius:8px;padding:24px 22px;
  align-self:center;justify-self:end;width:100%;max-width:400px;
  box-shadow:0 16px 40px rgba(0,0,0,.4);
  margin-top:10px;
}
.book-card h3{
  margin:0 0 16px;color:var(--gold);
  font-size:16px;letter-spacing:.18em;text-align:center;font-weight:700;
}
a.book-row{
  display:flex;align-items:center;gap:14px;
  padding:14px 8px;border-bottom:1px solid #2a4a39;
  cursor:pointer;text-decoration:none;
}
a.book-row:hover .txt b{color:var(--gold-soft)}
a.book-row:last-child{border-bottom:none}
.book-row .ic{
  width:42px;height:42px;border-radius:4px;
  background:transparent;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:24px;flex-shrink:0;
}
.book-row .txt{flex:1;line-height:1.25}
.book-row .txt b{display:block;color:var(--gold);font-size:14px;letter-spacing:.14em;font-weight:700}
.book-row .txt span{display:block;color:#cfd6cd;font-size:12px;margin-top:3px}
.book-row .arr{color:var(--gold);font-size:18px}

/* ============= SECTIONS ============= */
.section{padding:18px 0}
.resorts-section{padding-top:0}
.section.lite{padding:2px 0}
.s-title{
  font-size:var(--heading-h2);font-weight:700;letter-spacing:.14em;
  color:#222;margin:0 0 6px;text-transform:uppercase;
}
.s-title.center{text-align:center;margin-bottom:8px}
.s-rule{width:60px;height:3px;background:var(--gold);margin-top:10px}
.s-rule.center{margin:10px auto 36px}

/* ============= ABOUT ============= */
.about-bg{
  background:#fff;
  background-image:url(../images/back-about.jpg);
  background-repeat:no-repeat;
  background-position:center top;
  background-size:100% 220px;
  padding:0 0 44px;
}
.about-grid{
  display:grid;grid-template-columns:1fr;gap:24px;
  align-items:center;margin-top:0;padding-top:236px;width:100%;
}
.about-text{max-width:100%;width:100%}
.about-text .s-title{line-height:1.3;letter-spacing:.05em}
.about-text p{color:#3a3a3a;font-size:var(--text-base);line-height:var(--leading-relaxed);margin:0 0 28px;max-width:100%}
.about-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:20px 16px;margin-left:0}
.stat{text-align:center;padding:10px 6px}
.stat .ic{
  width:46px;height:46px;border-radius:50%;border:1.5px solid #cdb976;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 10px;color:var(--green-700);
}
.stat .ic svg{width:22px;height:22px}
.stat b{display:block;font-size:var(--text-base);font-weight:600;letter-spacing:.04em;color:#5b5b5b}
.stat span{display:block;font-size:var(--text-base);color:#1a1a1a;margin-top:4px;font-weight:700}
.about-img{height:380px;border-radius:8px}

@media (min-width:992px){
  .about-bg{
    background:url(../images/back-about.jpg) center right no-repeat;
    background-size:50% 100%;
    padding:50px 0;
  }
  .about-grid{margin-top:14px;padding-top:0;gap:30px}
  .about-text{max-width:min(58%,720px);width:auto}
  .about-text .s-title{letter-spacing:.14em}
  .about-stats{grid-template-columns:repeat(4,1fr);gap:12px}
  .stat{padding:6px 4px}
  .stat b{font-size:11.5px}
  .stat span{font-size:13.5px}
}

/* ============= TIGER STORIES BAND ============= */
.stories{background:#120D07 url(../images/pench-tiger.jpg) left center;position:relative;padding: 40px 0px; background-repeat:no-repeat; }
.stories-inner{
  display: grid;
  grid-template-columns: 465px 2fr 0fr;
  gap: 20px;
  align-items: stretch;
  padding: 36px 0px 36px 239px;
}
.stories-hero{height:280px;border-radius:6px}
.stories-text{align-self:center;padding:0 8px}
.stories-text h2,.stories-text h3{
  margin:0 0 14px;font-size:var(--heading-h2);font-weight:700;color: #EDBC5F;
  letter-spacing:.08em;text-transform:uppercase;
  display:flex;align-items:center;gap:10px;
}
.paw{
  width:26px;height:26px;display:inline-flex;align-items:center;justify-content:center;
  color:var(--gold);font-size:20px;
}
.stories-text p{color:#fff;font-size:var(--text-base);line-height:var(--leading-relaxed);margin:0 0 22px;max-width:380px}
.tigers{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
.tiger-card{
  background:rgba(11,32,23,.85);border-radius:6px;overflow:hidden;
  text-align:center;color:#fff;border:1px solid #c9b56b;
  position:relative;
}
.tiger-card .img{height:170px}
.tiger-card .meta{padding:10px 4px 12px}
.tiger-card .meta b{display:block;color:var(--gold);font-size:14px;font-weight:700;letter-spacing:.02em}
.tiger-card .meta span{font-size:11.5px;color:#e9e1c9;letter-spacing:.04em}

/* ============= ATTRACTIONS ============= */
.attr-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;margin-top:6px;align-items:stretch}
.attr-card{
  background:#fff;border-radius:6px;overflow:hidden;box-shadow:0 1px 6px rgba(0,0,0,.10);
  display:flex;flex-direction:column;height:100%;
}
.attr-card .imgwrap.img{
  position:relative;height:170px;min-height:170px;max-height:170px;flex-shrink:0;overflow:hidden;
}
.attr-card .imgwrap.img > img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
}
.attr-card .body{
  padding:14px 14px 18px;flex:1;display:flex;flex-direction:column;
}
.attr-card .icbox{
  width:30px;height:30px;min-height:30px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--green-700);margin-bottom:8px;
}
.attr-card .icbox svg{width:20px;height:20px;display:block;flex-shrink:0}
.attr-card h3,.attr-card h4{
  margin:0 0 8px;font-size:var(--heading-h3);font-weight:700;color:#1a1a1a;
  line-height:1.35;min-height:2.7em;
}
.attr-card p{color:#6a6a6a;font-size:var(--text-base);line-height:var(--leading-body);margin:0}

/* ============= SAFARI BOOKING BAND ============= */
.safari-band{
  background: url(../images/safaripench.jpg) no-repeat;color:#fff;position:relative;overflow:hidden;background-size: 100%;  padding:50px 0;}
.safari-inner{  display:grid;grid-template-columns:1fr 1fr 1.1fr;gap:22px;   align-items:stretch;}
.safari-band h2{
  grid-column:1/-1;
  margin:0 0 10px;color:var(--gold);font-size:var(--heading-h2);font-weight:700;letter-spacing:.18em;
  display:flex;align-items:center;gap:10px;
}
.safari-card{
border: 1px solid #7b6248;
  border-radius: 6px;
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  background: #231b13;
}
.safari-icon{
  width:90px;height:60px;display:flex;align-items:center;justify-content:center;
  color:#fff;
}
.safari-icon svg{width:80px;height:50px}
.safari-card h3,.safari-card h4{margin:0 0 6px;font-size:var(--heading-h3);letter-spacing:.16em;color:var(--gold);font-weight:700}
.safari-card p{margin:0 0 12px;font-size:var(--text-base);color:#d8d2c0;line-height:var(--leading-body)}
.safari-photo{border-radius:6px;overflow:hidden;height:210px}

/* ============= TOUR PACKAGES ============= */
.packages{  background:var(--cream);position:relative;overflow:hidden;padding:30px 0;}
.pkg-inner{display:grid;grid-template-columns:repeat(4,auto) 1fr auto;gap:34px;align-items:center;position:relative}
.pkg-title{  grid-column:1/-1;font-size:var(--heading-h2);font-weight:700;letter-spacing:.14em;color:#1a1a1a;  margin:0 0 4px;text-transform:uppercase;}
.pkg-title::after{content:"";display:block;width:50px;height:3px;background:var(--gold);margin-top:6px}
.pkg{display:flex;align-items:center;gap:14px}
.pkg-ic{   width:46px;height:46px;border-radius:50%;  background:#fff;border:1px solid #d4c08a;  display:flex;align-items:center;justify-content:center;  color:var(--green-700);}
.pkg-ic svg{width:22px;height:22px}
.pkg b{display:block;font-size:14px;color:#1a1a1a;font-weight:700}
.pkg span{display:block;font-size:11.5px;color:#7a7a7a;margin-top:2px}
 
.pkg-cta{
  background:var(--green-700);color:#fff;padding:13px 22px;border-radius:4px;
  font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
}

/* ============= HOW TO PLAN ============= */
.plan-row{
  display:grid;grid-template-columns:repeat(17,1fr);gap:6px;align-items:flex-start;
  margin-top:30px;background:#F0E9D7;border:1px solid #ece6d4;border-radius:8px;
  padding:28px 18px;
}
.plan-step{text-align:center;grid-column:span 2}
.plan-step .ic{
  width:56px;height:56px;border-radius:50%;
  background:var(--green-700);color:#fff;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 12px;
}
.plan-step .ic svg{width:26px;height:26px}
.plan-step b{display:block;font-size:13.5px;color:#1a1a1a;font-weight:700}
.plan-step span{display:block;font-size:11.5px;color:#7a7a7a;line-height:1.55;margin-top:4px}
.plan-arrow{
  grid-column:span 1;display:flex;align-items:center;justify-content:center;
  color:#cbcbcb;font-size:22px;padding-top:18px;
}

/* ============= GEOGRAPHY ============= */
.geo-band{padding:40px 0}
.geo-grid{
  display:grid;grid-template-columns:1.05fr 1.1fr 1.05fr;gap:0;
  align-items:stretch;
  background:#fafaf6;border:1px solid #ece6d4;border-radius:8px;overflow:hidden;
}
.geo-card{padding:24px 26px;display:flex;flex-direction:column}
.geo-card.middle{padding:0;background:url(../images/pench-map.png) center/cover no-repeat;position:relative;overflow:hidden;min-height:300px}
.geo-card h3{
  margin:0 0 16px;font-size:13.5px;font-weight:700;color:#1a1a1a;
  letter-spacing:.12em;text-transform:uppercase;line-height:1.5;
}
.geo-card ul{margin:0;padding:0;list-style:none}
.geo-card li{
  font-size:12.5px;color:#3a3a3a;line-height:1.85;
  display:flex;align-items:flex-start;gap:10px;padding:3px 0;
}
.geo-card li::before{
  content:"";flex-shrink:0;width:6px;height:6px;background:#3a3a3a;border-radius:50%;
  margin-top:8px;
}
.geo-card li b{color:#1a1a1a;font-weight:700}

/* map illustration */
.map-wrap{
  width:100%;height:100%;min-height:300px;
  display:flex;align-items:center;justify-content:center;position:relative;
  background:
    repeating-linear-gradient(45deg,rgba(0,0,0,.02) 0 1px,transparent 1px 14px),
    repeating-linear-gradient(135deg,rgba(0,0,0,.02) 0 1px,transparent 1px 14px),
    #f2eedf;
}
.map-shape{
  width:60%;aspect-ratio:1.1/1;background:#9bbf7c;position:relative;
  clip-path:polygon(20% 6%,55% 0,82% 14%,96% 38%,90% 62%,98% 78%,80% 96%,55% 100%,30% 92%,8% 76%,2% 50%,8% 26%);
  box-shadow:0 4px 20px rgba(0,0,0,.08);
}
.map-pin{
  position:absolute;left:50%;top:52%;transform:translate(-50%,-50%);text-align:center;
}
.map-pin .lbl{
  background:#fff;border:1px solid var(--line);
  padding:6px 10px;border-radius:3px;font-size:10px;font-weight:700;color:#1a1a1a;
  letter-spacing:.06em;line-height:1.35;box-shadow:0 2px 8px rgba(0,0,0,.12);white-space:nowrap;
}
.map-pin .dot{width:12px;height:12px;background:#d8443a;border-radius:50%;margin:6px auto 0;border:2px solid #fff;box-shadow:0 1px 3px rgba(0,0,0,.3)}

/* distance table */
.geo-card.right{padding:0;position:relative;overflow:hidden}
.geo-card.right .pad{padding:24px 26px 8px}
.dist-table{width:100%;border-collapse:collapse;font-size:13px}
.dist-table td{padding:7px 26px;color:#3a3a3a;border-bottom:1px dashed #e3dac4}
.dist-table tr:last-child td{border-bottom:none}
.dist-table td:last-child{text-align:right;font-weight:600;color:#1a1a1a}
.road{
  position:relative;height:80px;margin-top:6px;overflow:hidden;
}
.road svg{position:absolute;right:0;bottom:0;width:280px;height:120px}

/* ============= RESORTS ============= */
.resorts-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
.resorts-head h2{margin:0;font-size:var(--heading-h2);font-weight:700;letter-spacing:.14em;color:#1a1a1a;text-transform:uppercase}
.view-all{background:#1a1a1a;color:#fff;padding:10px 18px;border-radius:3px;font-size:11px;letter-spacing:.12em;font-weight:600;text-transform:uppercase}
.resorts-wrap{position:relative}
.resorts-strip{display:flex;gap:16px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none;padding:4px 2px}
.resorts-strip::-webkit-scrollbar{display:none}
.resort-card{flex:0 0 calc(20% - 13px);min-width:200px}
.resort-card{background:#fff;border:1px solid #ece6d4;border-radius:6px;overflow:hidden}
.resort-card .img{height:160px}
.resort-card .body{padding:14px 16px 16px}
.resort-card h3,.resort-card h4{margin:0 0 6px;font-size:14px;font-weight:700;color:#1a1a1a;letter-spacing:.04em}
.stars{color:var(--star);font-size:13px;letter-spacing:1px;margin-bottom:8px}
.tier{font-size:12px;margin-bottom:8px;color:#1a1a1a;font-weight:600}
.tier .gold{color:var(--gold-2)}
.loc{font-size:11.5px;color:#7a7a7a;display:flex;align-items:center;gap:5px}
.loc svg{width:11px;height:11px;color:#7a7a7a}
.arr-side{
  position:absolute;top:50%;transform:translateY(-50%);
  width:36px;height:36px;border-radius:50%;background:#fff;border:none;
  display:flex;align-items:center;justify-content:center;
  color:#1a1a1a;font-size:18px;box-shadow:0 2px 10px rgba(0,0,0,.15);
  z-index:2;cursor:pointer;font-family:inherit;padding:0;
}
.arr-side:hover{background:#f5f5f5}
.arr-side.left{left:-18px}
.arr-side.right{right:-18px}



/* ============= FAQ ============= */
.faq-band{background:#FBF6E1;padding:50px 0}
.faq-title{margin:0 0 26px;font-size:var(--heading-h2);font-weight:700;color:#1f3a4d;letter-spacing:.01em}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px 24px;align-items:start}
.faq-col{display:flex;flex-direction:column;gap:18px}
.faq-item{border:1px solid #e3dac4;border-radius:6px;overflow:hidden;background:transparent}
.faq-q{width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;
  background:transparent;border:none;cursor:pointer;text-align:left;
  padding:16px 20px;font-family:inherit;font-size:15px;font-weight:600;color:#2b2b2b}
.faq-ic{color:var(--green-700);font-size:20px;font-weight:400;flex-shrink:0;line-height:1}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-item.open .faq-a{max-height:300px;border-top:1px solid #e3dac4}
.faq-a p{margin:0;padding:16px 20px;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a4a4a}

/* ============= WHY CHOOSE US ============= */
.why-band{background:#FCFBF4;padding:56px 0 64px;text-align:center}
.why-title{margin:0 0 6px;font-size:var(--heading-h2);font-weight:600;color:#1a2e22}
.why-sub{margin:0 0 38px;font-size:16px;color:#4f7a5c;font-weight:500}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.why-card{background:#fff;border:1px solid #efe9d8;border-radius:8px;padding:30px 24px;
  box-shadow:0 2px 10px rgba(0,0,0,.03)}
.why-ic{width:48px;height:48px;margin:0 auto 16px;color:var(--gold-2)}
.why-ic svg{width:48px;height:48px}
.why-card h3,.why-card h4{margin:0 0 10px;font-size:17px;font-weight:700;color:#1a2e22}
.why-card p{margin:0;font-size:13px;line-height:1.65;color:#5f7a66}
@media (max-width:1100px){
  .faq-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .why-grid{grid-template-columns:1fr}
  .why-title{font-size:26px}
  .faq-title{font-size:20px}
}



/* ============= FOOTER ============= */
.footer{background:#0A1F13;color:#cfd6cd;padding:54px 0 0;font-size:13px}
.footer-grid{
  display:grid;grid-template-columns: 1fr 2fr 1fr 1fr;
gap:20px;
  padding-bottom:30px;
      justify-items: center;
}
.imgbrand{
    border-radius: 5px !important;
    height: 100px !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer h5,
.footer-acc-hd{
  margin:0 0 18px;color:#fff;font-size:13px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
}
.footer-acc-hd{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:12px;
  background:transparent;border:none;padding:0;font-family:inherit;text-align:left;cursor:default;
}
.footer-acc-title{display:flex;align-items:center;gap:10px;min-width:0}
.footer-tiger-ic{
  width:26px;height:26px;border-radius:50%;flex-shrink:0;
  background:#1d4030;object-fit:cover;
}
.footer-acc-ic{display:none;color:var(--gold-soft);font-size:20px;font-weight:400;line-height:1;flex-shrink:0}
.footer-acc-bd{display:block}
.footer .brand-name b{color:#fff;font-size:16px}.footer .brand-name span{color:var(--gold-soft)}
.footer p{color:#a8b0a4;line-height:1.7;margin:12px 0 16px;max-width:300px;font-size:12.5px}
.footer-brand-col p{max-width:320px}
.footer-about-link{margin:0 0 14px}
.footer-about-link a{color:#c5d0c5;text-decoration:none;font-size:12.5px}
.footer-about-link a:hover{color:#fff}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin-bottom:10px;font-size:12.5px}
.footer li a{color:#a8b0a4;text-decoration:none}
.footer li a:hover{color:#fff}
.footer .contact-line a{color:#a8b0a4;text-decoration:none}
.footer .contact-line a:hover{color:#fff}
.footer .contact-line{display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;color:#a8b0a4;font-size:12.5px}
.footer .contact-line .ic{color:var(--gold);width:14px;flex-shrink:0;margin-top:2px}
.socials{display:flex;gap:8px;margin-top:16px}

.badge{
	
width: 134px;
  height: 134px;
  justify-self: end;	

  
  
}
.badge svg{width:24px;height:24px;color:var(--gold);margin:2px 0}
.copy{
  text-align:center;padding:16px 0;font-size:11.5px;color:#8a9089;
  border-top:1px solid #15302a;
}

/* ============= RESPONSIVE ============= */
@media (max-width:1099px){
  .site-disclaimer{display:none}

  .topnav{
    position:sticky;top:0;z-index:1000;
    background:#fff;
  }

  .topnav-inner{
    flex-wrap:nowrap;gap:12px;padding:10px 16px;
  }

  .brand{flex:1;min-width:0}

  .mainnav{display:none}

  .phone-pill{display:none}
  .call-btn{display:inline-flex}
  .nav-toggle{display:flex}

  .mobile-nav{
    position:absolute;left:0;right:0;top:100%;
    max-height:calc(100vh - 70px);overflow-y:auto;
  }

  .brand-name b{font-size:15px;line-height:1.1}
  .brand-mark{width:48px;height:48px}
}

@media (max-width:480px){
  .brand-name b{font-size:13px}
  .brand-mark{width:44px;height:44px}
  .call-btn,.nav-toggle{width:38px;height:38px}
  .call-btn .call-btn-ic{width:26px;height:26px}
}

@media (max-width:1400px){
  .topnav-inner{padding:12px 20px}
}
@media (max-width:1100px){
  .hero{height:auto}
  .hero-inner{grid-template-columns:1fr;padding:48px 22px}
  .hero h1{font-size:clamp(28px,7.2vw,38px)}
  .hero h1 .sub{font-size:clamp(20px,4.6vw,28px)}
  .book-card{max-width:none;justify-self:stretch}
  .stories-inner{grid-template-columns:1fr;gap:18px;padding:30px 22px}
  .stories-hero{height:200px}
  .tigers{grid-template-columns:repeat(4,1fr)}
  .attr-grid{grid-template-columns:repeat(3,1fr)}
  .safari-inner{grid-template-columns:1fr 1fr;padding:0 22px}
  .safari-photo{grid-column:1/-1;height:220px}
  .pkg-inner{grid-template-columns:repeat(2,1fr);gap:22px}
  .pkg-title{grid-column:1/-1}
  .pkg-cta{grid-column:1/-1;justify-self:start}
  .pkg-deco{display:none}
  .plan-row{grid-template-columns:repeat(11,1fr);overflow-x:auto}
  .geo-grid{grid-template-columns:1fr}
  .map-wrap{min-height:260px}
  .resort-card{flex:0 0 calc(33.333% - 11px);min-width:180px}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .badge{justify-self:start}
  .footer{padding:40px 0 0}
  .footer-grid{grid-template-columns:1fr;gap:0}
  .footer-brand-col{
    text-align:center;padding:0 4px 20px;margin-bottom:4px;
    border-bottom:1px solid #15302a;
  }
  .footer-brand-col .brand-name{margin-bottom:4px}
  .footer-brand-col p{max-width:none;margin:10px auto 14px;font-size:12px;line-height:1.6}
  .footer-brand-col .footer-about-link{margin:0 auto 12px}
  .footer-brand-col .socials{justify-content:center;margin-top:12px}
  .footer-col{border-bottom:1px solid #15302a}
  .footer-col:last-child{border-bottom:none}
  .footer-acc-hd{
    margin:0;padding:14px 4px;cursor:pointer;
    font-size:12px;letter-spacing:.1em;
  }
  .footer-acc-hd:hover .footer-acc-title span{color:var(--gold-soft)}
  .footer-acc-ic{display:block}
  .footer-acc-bd{
    max-height:0;overflow:hidden;
    transition:max-height .3s ease,padding .3s ease;
    padding:0 4px;
  }
  .footer-col.is-open .footer-acc-bd{
    max-height:480px;padding:0 4px 14px;
  }
  .footer-col.is-open .footer-acc-hd{color:var(--gold-soft)}
  .footer-col.is-open .footer-acc-hd .footer-acc-title span{color:var(--gold-soft)}
  .footer li{margin-bottom:8px;padding-left:36px}
  .footer-col--contact .footer-acc-bd .contact-line:first-child{margin-top:2px}
  .footer-col--contact .footer-acc-bd .contact-line{padding-left:36px}
  .badge{display:none}
}
@media (max-width:720px){
  .hero h1{font-size:clamp(28px,8.2vw,36px);line-height:1.1}
  .hero h1 .sub{font-size:clamp(20px,5.4vw,26px)}
  .hero .tagline{font-size:18px;margin:16px 0 10px}
  .hero p.lead{font-size:var(--text-base)}
  .section{padding:44px 0}
  .s-title{font-size:var(--heading-h2);letter-spacing:.08em;line-height:1.3}
  .tigers{grid-template-columns:repeat(2,1fr)}
  .attr-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .attr-card .imgwrap.img{height:140px;min-height:140px;max-height:140px}
  .safari-inner{grid-template-columns:1fr}
  .safari-card{grid-template-columns:60px 1fr;padding:18px}
  .safari-icon svg{width:60px;height:40px}
  .pkg-inner{grid-template-columns:1fr;gap:14px}
  .plan-row{
    grid-template-columns:repeat(2,1fr);
    gap:22px 14px;
    padding:20px 14px;
  }
  .plan-step{grid-column:auto}
  .plan-step .ic{width:50px;height:50px;margin-bottom:10px}
  .plan-step .ic svg{width:22px;height:22px}
  .plan-step b{font-size:var(--text-base)}
  .plan-step span{font-size:14px;line-height:var(--leading-body)}
  .plan-arrow{display:none}
  .resort-card{flex:0 0 calc(50% - 8px);min-width:160px}
  .resort-card .img{height:120px}
  .resort-card h4{font-size:12px}
  .resorts-head{flex-wrap:wrap;gap:12px}
  .resorts-head h2{font-size:var(--heading-h2)}
  .view-all{font-size:10px;padding:8px 14px}
  .container{padding:0 16px}
}
 
/* ============= INNER PAGE STYLES ============= */
/* Inner hero banner — compact (overridden by global block below) */
.inner-hero{
  position:relative;height:230px;color:#fff;overflow:hidden;
}
.inner-hero .ih-bg{position:absolute;inset:0;z-index:0}
.hero-bg picture,.inner-hero .ih-bg picture{display:block;width:100%;height:100%}
.hero-bg img,.inner-hero .ih-bg img,.hero-bg picture img,.inner-hero .ih-bg picture img{width:100%;height:100%;object-fit:cover;display:block}
.inner-hero .ih-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.55));
}
.inner-hero .ih-inner{
  position:relative;z-index:2;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:0 28px;
}
.crumb{
  display:flex;align-items:center;gap:10px;font-size:13.5px;
  color:#dcdcdc;margin-bottom:18px;
}
.crumb b{color:#fff;font-weight:500}
.crumb .sep{color:#bbb}
.inner-hero h1{
  font-family:"Poppins",serif;font-weight:500;font-size:var(--heading-h1);margin:0;
  letter-spacing:.01em;text-shadow:0 2px 14px rgba(0,0,0,.5);line-height:1.15;
}
.deco-paw{display:flex;align-items:center;gap:14px;margin:18px 0 10px;color:var(--gold);font-size:13px}
.deco-paw::before,.deco-paw::after{content:"";width:60px;height:1px;background:var(--gold)}
.inner-hero .sub{font-size:var(--text-base);color:#e0d6b8;letter-spacing:.02em;line-height:var(--leading-body)}
.inner-hero .ih-tiger{
  position:absolute;right:30px;bottom:0;z-index:3;height:78%;width:auto;pointer-events:none;
}

/* Intro */
.intro{padding:70px 0}
.intro-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
}
.intro h2{
  font-size:var(--heading-h2);font-weight:600;color:var(--green-700);margin:0 0 8px;
  font-family:"Poppins",serif;
}
.intro h2 + .acc{width:60px;height:2px;background:#a8b894;margin:6px 0 24px}
.intro p{color:#3a3a3a;font-size:var(--text-base);line-height:var(--leading-relaxed);margin:0;max-width:540px}
.intro-img{height:340px;border-radius:14px;overflow:hidden;background:#3a3a2a;position:relative}
.intro-img img{width:100%;height:100%;object-fit:cover}

/* Detail head */
.detail-head{text-align:center;padding-bottom:36px}
.detail-head h2{
  font-size:var(--heading-h2);font-weight:600;color:var(--ink);margin:0;
  font-family:"Poppins",serif;
}
.detail-head .deco-paw{justify-content:center;margin-top:14px}

/* Mode block (By Air / Train / Road) */
.mode{
  display:grid;grid-template-columns:160px 1fr;gap:40px;align-items:flex-start;
  margin:0 0 50px;
}
.mode-ic{
  width:130px;height:130px;border-radius:50%;
  background:#eef2e6;
  display:flex;align-items:center;justify-content:center;
  color:var(--green-700);justify-self:center;
}
.mode-ic svg{width:64px;height:64px}
.mode h3{
  margin:6px 0 14px;font-size:var(--heading-h2);font-weight:600;color:var(--green-700);
  font-family:"Poppins",serif;
}
.mode > div > p{color:#3a3a3a;font-size:var(--text-base);line-height:var(--leading-relaxed);margin:0 0 22px;max-width:880px}

/* Tables */
.mode-table{
  width:100%;border-collapse:separate;border-spacing:0;
  border:1px solid #e3dac4;border-radius:10px;overflow:hidden;
  font-size:13.5px;margin-top:10px;
}
.mode-table thead{background:var(--green-700);color:#fff}
.mode-table th{padding:16px 18px;text-align:center;font-weight:600;font-size:13.5px;letter-spacing:.01em}
.mode-table td{
  padding:18px 18px;border-top:1px solid #ece1c4;color:#3a3a3a;text-align:center;
  background:#fff;
}
.mode-table td:first-child{text-align:left}

/* Check list */
.check-list{margin:0;padding:0;list-style:none}
.check-list li{
  position:relative;padding-left:32px;font-size:var(--text-base);color:#3a3a3a;
  line-height:var(--leading-body);margin-bottom:14px;
}
.check-list li::before{
  content:"";position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;
  background:var(--green-700);
}
.check-list li::after{
  content:"";position:absolute;left:6px;top:8px;width:8px;height:4px;
  border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg);
}

/* Distance card */
.dist-card{
  background:#f4f0e3;border-radius:16px;overflow:hidden;
  display:grid;grid-template-columns:1.4fr 1fr;gap:0;align-items:stretch;
  margin-top:30px;margin-bottom:60px;
}
.dist-card .left{padding:30px 36px}
.dist-card h3{
  margin:0 0 22px;font-size:var(--heading-h3);font-weight:600;color:var(--ink);
  display:flex;align-items:center;gap:12px;
  font-family:"Poppins",serif;
}
.dist-card h3 .pin{
  width:30px;height:30px;border-radius:50%;background:#e8eee0;
  display:flex;align-items:center;justify-content:center;color:var(--green-700);
}
.dist-list{display:grid;grid-template-columns:1fr 1fr;gap:14px 36px}
.dist-list .item{
  display:flex;align-items:center;gap:10px;font-size:14px;color:#3a3a3a;
}
.dist-list .item .chev{
  width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  color:var(--green-700);
}
.dist-card .right{position:relative;min-height:280px;background:#3a3a2a}
.dist-card .right img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* CTA strip */
.cta-strip{
  background:var(--green-800);color:#fff;padding:28px 0;
  position:relative;overflow:hidden;
}
.cta-strip::before{
  content:"";position:absolute;inset:0;
  background-image:radial-gradient(circle at 20% 50%,rgba(255,255,255,.04) 0,transparent 50%);
}
.cta-grid{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  position:relative;z-index:2;
}
.cta-grid .left{display:flex;align-items:center;gap:24px}
.cta-tiger{
  width:96px;height:96px;border-radius:50%;overflow:hidden;flex-shrink:0;
  border:2px solid rgba(255,255,255,.1);
}
.cta-tiger img{width:100%;height:100%;object-fit:cover}
.cta-grid h3{margin:0;font-size:24px;font-weight:600;font-family:"Poppins",serif}
.cta-grid p{margin:6px 0 0;font-size:14px;color:#d8d2c0;max-width:380px;line-height:1.55}
.btn-cream{
  background:#f5edd6;color:#1a1a1a;padding:16px 34px;border-radius:6px;
  font-weight:600;font-size:14px;display:inline-flex;align-items:center;gap:10px;
}

/* Footer overrides for inner page */
.footer-inner .footer-grid{grid-template-columns:1.5fr 1fr 1fr 1.5fr;gap:40px}
.footer-inner .brand-row{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.footer-inner .brand-row .mark{
  width:48px;height:48px;border-radius:50%;background:#fff;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.footer-inner .brand-row .mark img{width:100%;height:100%;object-fit:cover}
.footer-inner .brand-row b{color:#fff;font-size:14px;font-weight:800;letter-spacing:.04em;line-height:1.2;display:block}
.footer-inner .brand-row span{color:var(--gold-soft);font-size:8.5px;font-weight:700;letter-spacing:.2em;display:block}
.footer-inner .copy-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 0;border-top:1px solid #15302a;font-size:11.5px;color:#8a9089;
}
.footer-inner .copy-row .links{display:flex;gap:18px}
.footer-inner .copy-row .links span{color:#a8b0a4}

@media (max-width:1100px){
  .inner-hero h1{font-size:var(--heading-h1)}
  .intro-grid{grid-template-columns:1fr;gap:30px}
  .mode{grid-template-columns:120px 1fr;gap:24px}
  .mode h3{font-size:24px}
  .dist-card{grid-template-columns:1fr}
  .dist-card .right{min-height:200px}
  .cta-grid{flex-direction:column;align-items:flex-start}
  .footer-inner .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .inner-hero{height:auto;min-height:200px}
  .inner-hero .ih-tiger{display:none}
  .mode{grid-template-columns:1fr;gap:14px;margin-bottom:36px}
  .mode-ic{width:90px;height:90px}
  .mode-ic svg{width:44px;height:44px}
  .mode h3{font-size:20px}
  .dist-list{grid-template-columns:1fr;gap:10px}
  .mode-table{font-size:11.5px}
  .mode-table th,.mode-table td{padding:10px 8px}
  .cta-tiger{width:70px;height:70px}
  .cta-grid h3{font-size:18px}
  .footer-inner .footer-grid{grid-template-columns:1fr}
  .footer-inner .copy-row{flex-direction:column;gap:10px}
}
/* ============= CALENDAR PAGE STYLES ============= */

/* Banner with tiger photo backdrop */
.cal-hero{
  position:relative;height:auto;overflow:hidden;background:#1a1410;
}
.cal-hero .bg{position:absolute;inset:0}
.cal-hero .bg img{width:100%;height:100%;object-fit:cover;opacity:.9}
.cal-hero .bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.55));
}
.cal-hero .wrap{
  position:relative;z-index:2;max-width:1480px;margin:0 auto;padding:50px 28px;
  display:grid;grid-template-columns:1fr 1fr;gap:32px;
}
.cal-slot{
  background:#fff;border-radius:10px;min-height:340px;
  box-shadow:0 6px 24px rgba(0,0,0,.18);
  padding:24px;display:flex;align-items:center;justify-content:center;
  color:#9aa093;font-size:13px;letter-spacing:.04em;
  position:relative;overflow:hidden;
}
/* Torn paper bottom edge */
.tear{
  position:relative;height:36px;background:#fbf6e9;margin-top:-30px;z-index:3;
  -webkit-mask:radial-gradient(10px at 50% 0,transparent 98%,#000) 0 0/20px 20px repeat-x;
          mask:radial-gradient(10px at 50% 0,transparent 98%,#000) 0 0/20px 20px repeat-x;
}

/* About Park section */
.about-park{background:#fbf6e9;padding:60px 0 40px}
.ap-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:center}
.ap-title{
  font-size:30px;font-weight:700;color:var(--ink);margin:0 0 4px;
  letter-spacing:.02em;line-height:1.2;text-transform:uppercase;
}
.ap-title .gold{color:#b9913a;display:block;font-weight:700}
.ap-rule{width:60px;height:2px;background:var(--gold);margin:14px 0 8px}
.ap-paw{font-size:14px;color:var(--gold);margin-bottom:18px}
.about-park p{color:#3a3a3a;font-size:14px;line-height:1.9;margin:0 0 16px;max-width:520px}
.about-park p a{color:var(--green-700);text-decoration:underline}
.ap-img{height:360px;border-radius:14px;overflow:hidden;background:#3a3a2a}
.ap-img img{width:100%;height:100%;object-fit:cover}

/* Tables band */
.tables-band{background:#fbf6e9;padding:0 0 50px}
.tb-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:24px;align-items:start}
.tb-card{
  background:#fbf6e9;border:1px solid #e7ddbf;border-radius:12px;
  padding:24px;
}
.tb-head{text-align:center;margin-bottom:16px}
.tb-head h3{
  margin:0 0 6px;font-size:18px;font-weight:700;color:var(--green-700);
  letter-spacing:.08em;text-transform:uppercase;
}
.tb-head .deco-paw{justify-content:center;font-size:13px;color:var(--gold);margin:6px 0 0}
.tb-head .deco-paw::before,.tb-head .deco-paw::after{content:"";width:40px;height:1px;background:#cdb976}
.tb-table{width:100%;border-collapse:separate;border-spacing:0;font-size:12.5px;border-radius:8px;overflow:hidden;background:#fff;border:1px solid #e7ddbf}
.tb-table thead{background:var(--green-700);color:#fff}
.tb-table th{padding:13px 14px;text-align:center;font-weight:700;font-size:11.5px;letter-spacing:.04em;text-transform:uppercase}
.tb-table th .sub{display:block;font-weight:400;font-size:10.5px;text-transform:none;opacity:.9;margin-top:2px}
.tb-table td{padding:13px 14px;border-top:1px solid #ece1c4;color:#3a3a3a;text-align:center}
.tb-table td:first-child{text-align:left;font-weight:500}
.tb-photo{height:170px;border-radius:8px;overflow:hidden;margin-top:14px;background:#3a3a2a}
.tb-photo img{width:100%;height:100%;object-fit:cover}

/* Procedure */
.proc{padding:50px 0;background:#fbf6e9}
.proc-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:42px;align-items:center}
.proc-img{height:360px;border-radius:14px;overflow:hidden;background:#3a3a2a}
.proc-img img{width:100%;height:100%;object-fit:cover}
.proc h2,.proc h3{
  margin:0 0 4px;font-size:var(--heading-h2);font-weight:700;color:var(--green-700);
  letter-spacing:.04em;text-transform:uppercase;line-height:1.3;
}
.proc .deco-paw{justify-content:flex-start;margin:14px 0 18px;font-size:12px;color:var(--gold)}
.proc .deco-paw::before,.proc .deco-paw::after{content:"";width:40px;height:1px;background:#cdb976}
.proc p{color:#3a3a3a;font-size:14px;line-height:1.9;margin:0 0 14px;max-width:600px}

/* Important factors */
.factors{background:#fbf6e9;padding:36px 0 50px}
.factors-card{
  background:#fbf6e9;border:1px solid #e7ddbf;border-radius:12px;padding:30px;
  display:grid;grid-template-columns:1.3fr 1fr;gap:30px;align-items:center;
}
.factors h2,.factors h3{
  margin:0 0 14px;font-size:var(--heading-h2);font-weight:700;color:var(--green-700);
  letter-spacing:.04em;text-transform:uppercase;line-height:1.4;
  border-bottom:2px solid var(--gold);padding-bottom:8px;display:inline-block;
}
.factors p{color:#3a3a3a;font-size:var(--text-base);line-height:var(--leading-relaxed);margin:10px 0;max-width:560px}
.factors-img{height:220px;border-radius:10px;overflow:hidden;background:#3a3a2a}
.factors-img img{width:100%;height:100%;object-fit:cover}

/* Two cards (Notes + Open Timings) */
.notes-band{padding:0 0 60px}
.two-cards{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.two-card{
  background:#fbf6e9;border:1px solid #e7ddbf;border-radius:12px;padding:24px;
}
.tc-head{display:flex;align-items:center;gap:16px;margin-bottom:18px}
.tc-head .ic{
  width:54px;height:54px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.tc-head .ic.green{background:var(--green-700)}
.tc-head .ic.brown{background:#7a5a2c}
.tc-head .ic svg{width:26px;height:26px}
.tc-head h2,.tc-head h3{
  margin:0;font-size:var(--heading-h3);font-weight:700;color:var(--green-700);
  letter-spacing:.04em;text-transform:uppercase;line-height:1.35;
}
.two-card.brown .tc-head h2,.two-card.brown .tc-head h3{color:#7a5a2c}
.tc-body{display:grid;grid-template-columns:1fr 1.2fr;gap:20px;align-items:start}
.tc-img{border-radius:8px;overflow:hidden;background:#3a3a2a}
.tc-img img{width:100%;height:100%;object-fit:cover}
.tc-list{margin:0;padding:0;list-style:none}
.tc-list li{
  position:relative;padding-left:28px;font-size:12.5px;color:#3a3a3a;
  line-height:1.55;margin-bottom:14px;
}
.tc-list li::before{
  content:"";position:absolute;left:0;top:3px;width:16px;height:16px;border-radius:50%;
  background:var(--green-700);
}
.tc-list li::after{
  content:"";position:absolute;left:4px;top:8px;width:7px;height:3px;
  border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(-45deg);
}
.tim-rows{display:flex;flex-direction:column;gap:16px}
.tim-row{display:grid;grid-template-columns:40px 1fr;gap:14px;align-items:flex-start}
.tim-row .ic{
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  color:#7a5a2c;
}
.tim-row .ic svg{width:26px;height:26px}
.tim-row b{display:block;font-size:12.5px;font-weight:700;color:var(--ink);letter-spacing:.04em;text-transform:uppercase}
.tim-row span{display:block;font-size:12.5px;color:#5a5a5a;margin-top:3px}

/* CTA strip with tiger line art */
.cta-strip{
  background:var(--green-800);color:#fff;padding:22px 0;position:relative;overflow:hidden;
}
.cta-grid{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  position:relative;z-index:2;
}
.cta-grid .left{display:flex;align-items:center;gap:18px}
.cta-tiger-art{
  width:90px;height:60px;flex-shrink:0;color:var(--gold-soft);opacity:.7;
}
.cta-grid h3{margin:0;font-size:22px;font-weight:700}
.cta-grid p{margin:4px 0 0;font-size:13px;color:#d8d2c0;max-width:480px;line-height:1.55}
.btn-cream{
  background:#f5edd6;color:#1a1a1a;padding:14px 30px;border-radius:6px;
  font-weight:700;font-size:13px;letter-spacing:.06em;
  display:inline-flex;align-items:center;gap:10px;text-transform:uppercase;
}

@media (max-width:1100px){
  .cal-hero .wrap{grid-template-columns:1fr;padding:30px 22px}
  .cal-hero{height:auto}
  .ap-grid,.tb-grid,.proc-grid,.factors-card,.two-cards{grid-template-columns:1fr;gap:24px}
  .tc-body{grid-template-columns:1fr}
  .cta-grid{flex-direction:column;align-items:flex-start}
}
@media (max-width:720px){
  .cal-slot{min-height:200px}
  .ap-title{font-size:22px}
  .tb-table{font-size:10.5px}
  .tb-table th,.tb-table td{padding:8px 6px}
  .proc h2,.proc h3,.factors h2,.factors h3{font-size:var(--heading-h3)}
  .tc-head h2,.tc-head h3{font-size:var(--heading-h3)}
  .cta-grid h3{font-size:18px}
}



/* ===== Inner hero (shared with How To Reach) ===== */
.inner-hero{position:relative;height:230px;color:#fff;overflow:hidden}
.inner-hero .ih-bg{position:absolute;inset:0;z-index:0}
.hero-bg picture,.inner-hero .ih-bg picture{display:block;width:100%;height:100%}
.hero-bg img,.inner-hero .ih-bg img,.hero-bg picture img,.inner-hero .ih-bg picture img{width:100%;height:100%;object-fit:cover;display:block}
.inner-hero .ih-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.6))}
.inner-hero .ih-inner{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 28px}
.crumb{display:flex;align-items:center;gap:10px;font-size:13.5px;color:#dcdcdc;margin-bottom:16px}
.crumb b{color:#fff;font-weight:500}
.crumb .sep{color:#bbb}
.inner-hero h1{font-weight:500;font-size:var(--heading-h1);margin:0;letter-spacing:.01em;text-shadow:0 2px 14px rgba(0,0,0,.5);line-height:1.15}
.deco-paw{display:flex;align-items:center;gap:14px;margin:16px 0 8px;color:var(--gold);font-size:13px}
.deco-paw::before,.deco-paw::after{content:"";width:60px;height:1px;background:var(--gold)}
.inner-hero .sub{font-size:14.5px;color:#e0d6b8}

/* ===== Tour packages page ===== */
.packages-page{
  padding:40px 0 52px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%,rgba(226,183,60,.1),transparent 60%),
    linear-gradient(180deg,#fbf6e9 0%,#fff 140px);
}
.packages-head{margin:0 auto 32px}
.packages-eyebrow{
  display:inline-block;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--green-700);background:rgba(29,64,48,.08);padding:6px 14px;border-radius:999px;margin-bottom:10px;
}
.packages-head h2{
  margin:0 0 10px;font-size:var(--heading-h2);font-weight:700;color:#1a2e22;line-height:1.25;
}
.packages-lead{margin:0;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#5a6358}
.packages-head .deco-paw{justify-content:center;margin-top:14px;font-size:11px}

.packages-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.pkg-card{
  background:#fff;border:1px solid #e3dac4;border-radius:12px;overflow:hidden;
  display:flex;flex-direction:column;position:relative;
  box-shadow:0 4px 18px rgba(11,32,23,.06);
  transition:transform .28s cubic-bezier(.22,1,.36,1),box-shadow .28s ease,border-color .28s ease;
}
.pkg-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;z-index:3;
  background:linear-gradient(90deg,var(--green-800),var(--gold),var(--green-800));
}
.pkg-card:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 32px rgba(11,32,23,.12);
  border-color:#cdb976;
}
.pkg-card-media{position:relative}
.pkg-card-img{display:block;height:158px;overflow:hidden;background:#2a2418;position:relative}
.pkg-card-img::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,transparent 40%,rgba(11,32,23,.58) 100%);
}
.pkg-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .45s cubic-bezier(.22,1,.36,1)}
.pkg-card:hover .pkg-card-img img{transform:scale(1.06)}
.pkg-badge{
  position:absolute;top:10px;left:10px;z-index:2;
  background:var(--gold);color:#1a1a1a;font-size:9px;font-weight:800;
  letter-spacing:.07em;text-transform:uppercase;padding:5px 10px;border-radius:999px;
}
.pkg-duration-pill{
  position:absolute;left:10px;bottom:10px;z-index:2;
  display:inline-flex;align-items:center;gap:5px;
  background:rgba(11,32,23,.92);color:#fff;
  font-size:10px;font-weight:600;padding:5px 10px;border-radius:999px;
  border:1px solid rgba(226,183,60,.35);
}
.pkg-duration-pill svg{width:12px;height:12px;color:var(--gold-soft);flex-shrink:0}
.pkg-paw{
  position:absolute;right:10px;top:10px;z-index:2;
  width:30px;height:30px;border-radius:50%;
  background:rgba(255,255,255,.94);display:flex;align-items:center;justify-content:center;
  font-size:14px;box-shadow:0 3px 10px rgba(0,0,0,.15);
}
.pkg-card-body{
  padding:12px 12px 14px;display:flex;flex-direction:column;flex:1;
  background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%);
}
.pkg-tag{
  display:inline-block;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--green-700);margin-bottom:4px;
}
.pkg-card h3{
  margin:0 0 8px;font-size:var(--heading-h3);font-weight:700;line-height:1.35;color:#1a2e22;min-height:0;
}
.pkg-card h3 a{color:inherit;text-decoration:none;transition:color .2s ease}
.pkg-card h3 a:hover{color:var(--green-700)}
.pkg-safari-chip{
  display:flex;align-items:center;gap:7px;
  font-size:11.5px;line-height:1.35;color:#3f4a42;font-weight:600;
  padding:7px 10px;margin-bottom:10px;
  background:linear-gradient(135deg,#f7f3ea 0%,#f0ebe0 100%);
  border:1px solid #ece6d4;border-left:3px solid var(--gold);border-radius:8px;
}
.pkg-safari-chip svg{width:16px;height:16px;color:var(--green-700);flex-shrink:0}
.pkg-rating-row{
  display:flex;align-items:center;justify-content:space-between;gap:6px;
  margin-bottom:12px;padding-bottom:11px;border-bottom:1px dashed #d9cdb0;
}
.pkg-card .stars{font-size:13px;letter-spacing:.5px;color:var(--star)}
.pkg-rating-label{
  font-size:10px;font-weight:700;color:#7a6a3a;background:#f5edd6;
  padding:3px 9px;border-radius:999px;white-space:nowrap;border:1px solid #e8dfc8;
}
.pkg-btn{
  display:flex;align-items:center;justify-content:center;gap:6px;margin-top:auto;width:100%;
  background:linear-gradient(135deg,var(--green-900) 0%,var(--green-700) 100%);
  color:#fff;padding:11px 14px;border-radius:8px;
  font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;text-decoration:none;
  box-shadow:0 3px 12px rgba(11,32,23,.18);
  border:1px solid rgba(255,255,255,.06);
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease;
}
.pkg-btn span{font-size:15px;line-height:1;font-weight:700;transition:transform .25s ease}
.pkg-btn:hover{
  background:linear-gradient(135deg,#0a1812 0%,var(--green-800) 100%);
  color:#fff;transform:translateY(-1px);box-shadow:0 6px 16px rgba(11,32,23,.24);
}
.pkg-btn:hover span{transform:translateX(3px)}

/* ===== Packages intro / outro ===== */
.pkg-intro{background:#FBF6E1;padding:52px 0}
.packages-outro{background:linear-gradient(135deg,#0b2017 0%,#173a28 55%,#1d4030 100%);padding:56px 0}
.packages-outro-inner{
  max-width:820px;margin:0 auto;text-align:center;
  padding:36px 32px;border-radius:18px;
  background:rgba(255,255,255,.04);border:1px solid rgba(226,183,60,.22);
  box-shadow:0 12px 40px rgba(0,0,0,.2);
}
.packages-outro .packages-eyebrow{background:rgba(226,183,60,.15);color:var(--gold-soft)}
.packages-outro p{font-size:15px;line-height:1.95;color:#d8e4d8;margin:0 0 24px}
.pkg-btn-light{
  display:inline-flex;background:var(--gold);color:#1a1a1a;
  box-shadow:0 4px 18px rgba(226,183,60,.35);max-width:240px;margin:0 auto;
}
.pkg-btn-light:hover{background:var(--gold-soft);color:#1a1a1a}

@media (max-width:1400px){
  .packages-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1100px){
  .packages-grid{grid-template-columns:repeat(2,1fr)}
  .inner-hero h1{font-size:var(--heading-h1)}
}
@media (max-width:720px){
  .packages-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .packages-page{padding:32px 0 40px}
  .pkg-card-img{height:120px}
  .pkg-card-body{padding:10px 10px 12px}
  .pkg-badge{font-size:8px;padding:4px 7px;top:8px;left:8px}
  .pkg-duration-pill{
    left:8px;bottom:8px;
    font-size:9px;padding:4px 8px;gap:4px;
  }
  .pkg-duration-pill svg{width:10px;height:10px}
  .pkg-paw{width:24px;height:24px;right:8px;top:8px;font-size:11px}
  .pkg-tag{font-size:8px;margin-bottom:3px}
  .pkg-card h3{
    font-size:13px;
    line-height:1.3;
    margin-bottom:6px;
  }
  .pkg-safari-chip{
    font-size:10px;
    padding:5px 7px;
    margin-bottom:8px;
    gap:5px;
  }
  .pkg-safari-chip svg{width:13px;height:13px}
  .pkg-rating-row{margin-bottom:8px;padding-bottom:8px}
  .pkg-card .stars{font-size:11px}
  .pkg-rating-label{font-size:8px;padding:2px 6px}
  .pkg-btn{
    font-size:9px;
    padding:9px 8px;
    letter-spacing:.05em;
  }
  .pkg-btn span{font-size:13px}
  .packages-outro-inner{padding:24px 18px}
}




/* ===== Inner hero — compact banner (all inner pages) ===== */
.inner-hero{position:relative;height:230px;color:#fff;overflow:hidden}
.inner-hero .ih-bg{position:absolute;inset:0;z-index:0}
.hero-bg picture,.inner-hero .ih-bg picture{display:block;width:100%;height:100%}
.hero-bg img,.inner-hero .ih-bg img,.hero-bg picture img,.inner-hero .ih-bg picture img{width:100%;height:100%;object-fit:cover;display:block}
.inner-hero .ih-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.38),rgba(0,0,0,.65))}
.inner-hero .ih-inner{
  position:relative;z-index:2;height:100%;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:0 20px;gap:0;
}
.inner-hero .crumb{
  display:inline-flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:center;
  padding:6px 16px;margin-bottom:10px;font-size:16px;color:#e8e8e8;
  background:rgba(0,0,0,.38);border:1px solid rgba(255,255,255,.18);border-radius:999px;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.inner-hero .crumb a{color:#f0f0f0;text-decoration:none;transition:color .2s}
.inner-hero .crumb a:hover{color:#fff}
.inner-hero .crumb b{color:#fff;font-weight:600}
.inner-hero .crumb .sep{color:rgba(255,255,255,.45);font-size:11px}
/* Semantic breadcrumb list (SEO) — matches legacy crumb appearance */
.crumb-list{
  display:flex;align-items:center;gap:6px;flex-wrap:wrap;justify-content:center;
  list-style:none;margin:0;padding:0;
}
.crumb-list li{display:inline-flex;align-items:center}
.crumb-list li+li::before{
  content:'›';color:rgba(255,255,255,.45);font-size:11px;margin-right:2px;
}
.inner-hero .crumb-list a{color:#f0f0f0;text-decoration:none;transition:color .2s}
.inner-hero .crumb-list a:hover{color:#fff}
.inner-hero .crumb-list li[aria-current="page"] span{color:#fff;font-weight:600}
.inner-hero h1{
  font-weight:500;font-size:var(--heading-h1);margin:0;letter-spacing:.01em;
  text-shadow:0 2px 14px rgba(0,0,0,.5);line-height:1.15;
}
.inner-hero .deco-paw{display:flex;align-items:center;gap:10px;margin:8px 0 6px;color:var(--gold);font-size:11px}
.inner-hero .deco-paw::before,.inner-hero .deco-paw::after{content:"";width:40px;height:1px;background:var(--gold)}
.inner-hero .sub{font-size:var(--text-base);line-height:var(--leading-body);max-width:520px;color:#e0d6b8;letter-spacing:.02em}
.inner-hero .hero-tags{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap;justify-content:center}
.inner-hero .hero-tags .t{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);
  padding:6px 14px;border-radius:999px;font-size:16px;font-weight:500;
}
.inner-hero .hero-tags .t svg{width:16px;height:16px;color:var(--gold-soft)}
/* Legacy modifier classes — inherit same compact layout */
.inner-hero.packages-hero,
.inner-hero.hotels-hero,
.inner-hero.chambal-hero,
.inner-hero.safari-hero,
.inner-hero.page-hero,
.inner-hero.pkg-detail-hero,
.inner-hero.hotel-detail-hero{height:230px}

/* Inner hero — mobile (all inner pages) */
@media (max-width:720px){
  .inner-hero{
    height:auto;
    min-height:200px;
  }
  .inner-hero.packages-hero,
  .inner-hero.hotels-hero,
  .inner-hero.chambal-hero,
  .inner-hero.safari-hero,
  .inner-hero.page-hero,
  .inner-hero.pkg-detail-hero,
  .inner-hero.hotel-detail-hero{
    height:auto;
    min-height:200px;
  }
  .inner-hero .ih-inner,
  .inner-hero.safari-hero .ih-inner{
    padding:20px 16px 22px;
    justify-content:flex-start;
    gap:0;
  }
  .inner-hero .crumb,
  .inner-hero nav.crumb{
    font-size:11px;
    padding:8px 14px;
    margin:0 0 14px;
    gap:5px;
    line-height:1.45;
    max-width:100%;
  }
  .inner-hero .crumb-list{
    gap:4px;
    row-gap:4px;
    justify-content:center;
  }
  .inner-hero .crumb-list li+li::before{
    margin:0 4px;
    font-size:10px;
  }
  .inner-hero h1{
    font-size:clamp(22px,5.5vw,26px);
    line-height:1.25;
    max-width:100%;
  }
  .inner-hero .deco-paw{
    margin:8px 0 6px;
    font-size:10px;
    gap:8px;
  }
  .inner-hero .deco-paw::before,
  .inner-hero .deco-paw::after{width:32px}
  .inner-hero .sub{
    font-size:14px;
    line-height:1.45;
    max-width:100%;
  }
  .inner-hero .hero-tags{
    margin-top:12px;
    gap:8px;
  }
  .inner-hero .hero-tags .t{
    font-size:11px;
    padding:5px 10px;
  }
  .inner-hero .hotel-detail-tier{
    margin-bottom:6px;
    font-size:11px;
  }
}

/* ===== Layout ===== */
.detail-wrap{padding:56px 0}
.detail-grid{display:grid;grid-template-columns:1fr 360px;gap:42px;align-items:start}

/* ===== Itinerary ===== */
.sec-title{font-size:var(--heading-h2);font-weight:700;color:var(--green-700);margin:0 0 4px;text-transform:uppercase;letter-spacing:.02em}
.sec-rule{width:54px;height:3px;background:var(--gold);margin:8px 0 26px}
.day{display:grid;grid-template-columns:300px 1fr;gap:26px;margin-bottom:30px;align-items:start}
.day-img{position:relative;height:200px;border-radius:12px;overflow:hidden;background:#3a3a2a}
.day-img img{width:100%;height:100%;object-fit:cover}
.day-badge{position:absolute;top:14px;left:14px;background:var(--green-700);color:#fff;
  font-size:11px;font-weight:700;letter-spacing:.1em;padding:6px 14px;border-radius:5px}
.day h3{margin:2px 0 10px;font-size:var(--heading-h3);font-weight:700;color:var(--ink);line-height:1.45}
.day p{margin:0;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a4a4a}

/* ===== Inclusions / Exclusions ===== */
.incl-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:14px}
.incl-card{border:1px solid #e7ddbf;border-radius:12px;padding:24px 26px;background:#fff}
.incl-card h3,.incl-card h4{margin:0 0 16px;font-size:var(--heading-h3);font-weight:700;display:flex;align-items:center;gap:10px}
.incl-card.inc h3,.incl-card.inc h4{color:var(--green-700)}
.incl-card.exc h3,.incl-card.exc h4{color:#a14a3a}
.incl-card h3 .dot,.incl-card h4 .dot{width:26px;height:26px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;flex-shrink:0}
.incl-card.inc h3 .dot,.incl-card.inc h4 .dot{background:var(--green-700)}
.incl-card.exc h3 .dot,.incl-card.exc h4 .dot{background:#b6543f}
.incl-card ul{margin:0;padding:0;list-style:none}
.incl-card li{position:relative;padding-left:28px;font-size:var(--text-base);line-height:var(--leading-body);color:#3a3a3a;margin-bottom:12px}
.incl-card.inc li::before{content:"";position:absolute;left:0;top:2px;width:18px;height:18px;border-radius:50%;background:#e6efe5}
.incl-card.inc li::after{content:"";position:absolute;left:5px;top:7px;width:7px;height:4px;border-left:2px solid var(--green-700);border-bottom:2px solid var(--green-700);transform:rotate(-45deg)}
.incl-card.exc li::before{content:"\00d7";position:absolute;left:0;top:0;width:18px;height:18px;border-radius:50%;background:#f4e3df;color:#b6543f;font-size:13px;display:flex;align-items:center;justify-content:center;font-weight:700}

/* ===== How it works ===== */
.how{background:#FBF6E1;border-radius:14px;padding:30px;margin-top:36px;display:grid;grid-template-columns:200px 1fr;gap:28px;align-items:center}
.how-img{height:170px;border-radius:10px;overflow:hidden;background:#3a3a2a}
.how-img img{width:100%;height:100%;object-fit:cover}
.how h3,.how h4{margin:0 0 18px;font-size:var(--heading-h3);font-weight:700;color:var(--green-700)}
.how-steps{display:flex;flex-direction:column;gap:14px}
.how-step{display:grid;grid-template-columns:34px 1fr;gap:14px;align-items:start}
.how-step .n{width:34px;height:34px;border-radius:50%;background:var(--green-700);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px}
.how-step p{margin:5px 0 0;font-size:var(--text-base);line-height:var(--leading-body);color:#3a3a3a}

/* ===== Notes / terms ===== */
.notes{margin-top:36px}
.notes h3,.notes h4{font-size:var(--heading-h3);font-weight:700;color:var(--ink);margin:24px 0 12px;border-bottom:2px solid var(--gold);padding-bottom:6px;display:inline-block}
.notes ul{margin:0;padding:0;list-style:none}
.notes li{position:relative;padding-left:20px;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a4a4a;margin-bottom:8px}
.notes li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--gold-2)}

/* ===== Sidebar ===== */
.side{position:sticky;top:20px;display:flex;flex-direction:column;gap:24px}
.enquiry{border:1px solid #e7ddbf;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 6px 24px rgba(0,0,0,.06)}
.enquiry-head{background:var(--green-700);color:#fff;padding:18px 22px;text-align:center}
.enquiry-head h3,.enquiry-head h4{margin:0;font-size:var(--heading-h3);font-weight:700;letter-spacing:.04em}
.enquiry-head p{margin:4px 0 0;font-size:14px;color:#cfe0d2;line-height:var(--leading-body)}
.enquiry-body{padding:20px 22px 24px}
.field{margin-bottom:14px}
.field label{display:block;font-size:12px;font-weight:600;color:#3a3a3a;margin-bottom:6px}
.field input,.field select,.field textarea{width:100%;border:1px solid #d8cfb6;border-radius:7px;padding:11px 12px;font-family:inherit;font-size:13px;color:#1a1a1a;background:#fdfbf4}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--green-700)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.enquiry-submit{width:100%;background:var(--gold);color:#1a1a1a;border:none;border-radius:7px;padding:13px;font-family:inherit;font-weight:700;font-size:13px;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;margin-top:4px}
.enquiry-submit:hover{background:var(--gold-soft)}

.callbox{background:var(--green-900);color:#fff;border-radius:14px;padding:24px;text-align:center}
.callbox .ic{width:48px;height:48px;border-radius:50%;background:rgba(212,169,58,.15);display:flex;align-items:center;justify-content:center;margin:0 auto 12px;color:var(--gold)}
.callbox .ic svg{width:24px;height:24px}
.callbox p{margin:0 0 4px;font-size:12.5px;color:#cfd6cd}
.callbox b{font-size:22px;color:var(--gold-soft);font-weight:700}

.why-travel{border:1px solid #e7ddbf;border-radius:14px;padding:22px;background:#FBF6E1}
.why-travel h3,.why-travel h4{margin:0 0 16px;font-size:15px;font-weight:700;color:var(--green-700);text-align:center}
.why-travel .row{display:flex;align-items:center;gap:14px;padding:12px 0;border-bottom:1px dashed #ddd2b4}
.why-travel .row:last-child{border-bottom:none}
.why-travel .row .ic{width:40px;height:40px;border-radius:50%;background:#fff;border:1px solid #e0d6ba;display:flex;align-items:center;justify-content:center;color:var(--gold-2);flex-shrink:0}
.why-travel .row .ic svg{width:20px;height:20px}
.why-travel .row b{font-size:13.5px;color:var(--ink);font-weight:700;display:block}
.why-travel .row span{font-size:11.5px;color:#7a7a7a}

/* ===== Package detail page ===== */
.pkg-detail-hero .crumb a{color:#dcdcdc;text-decoration:none}
.pkg-detail-hero .crumb a:hover{color:#fff}
.pkg-detail-hero .hero-tags{display:none}
.pkg-detail-bar{
  background:linear-gradient(135deg,#0a1812 0%,#173a28 50%,#1d4030 100%);
  padding:14px 0;
  border-bottom:2px solid var(--gold);
  box-shadow:0 6px 20px rgba(11,32,23,.12);
}
.pkg-detail-bar-inner{
  display:flex;align-items:stretch;gap:12px;flex-wrap:wrap;
}
.pkg-stat-card{
  flex:1;min-width:140px;display:flex;align-items:center;gap:11px;
  padding:11px 14px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);border-radius:10px;
  transition:background .2s,border-color .2s;
}
.pkg-stat-card:hover{background:rgba(255,255,255,.09);border-color:rgba(226,183,60,.3)}
.psc-icon{
  flex-shrink:0;width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(226,183,60,.22),rgba(226,183,60,.06));
  border:1px solid rgba(226,183,60,.32);border-radius:9px;color:var(--gold-soft);
}
.psc-icon svg{width:18px;height:18px}
.psc-body{min-width:0}
.psc-body .lbl{display:block;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#9eb0a0;margin-bottom:2px}
.psc-body strong{font-size:13px;color:#fff;font-weight:600;line-height:1.3;display:block}
.psc-body .stars-inline{color:var(--gold-soft);font-size:14px;letter-spacing:.5px}
.pkg-detail-cta{
  flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;gap:6px;
  align-self:stretch;min-width:168px;padding:0 20px;
  background:linear-gradient(180deg,var(--gold-soft) 0%,var(--gold) 100%);
  color:#1a1a1a;border-radius:10px;
  font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 3px 14px rgba(0,0,0,.2);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.pkg-detail-cta span{font-size:14px;line-height:1;font-weight:700;transition:transform .2s ease}
.pkg-detail-cta:hover{
  background:linear-gradient(180deg,#f5dc7a 0%,var(--gold-soft) 100%);
  color:#1a1a1a;transform:translateY(-1px);box-shadow:0 6px 18px rgba(0,0,0,.25);
}
.pkg-detail-cta:hover span{transform:translateX(3px)}
/* Legacy stat blocks (if any old markup remains) */
.pkg-detail-stat{flex:1;min-width:120px}
.pkg-detail-stat .lbl{display:block;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#a8b8a8;margin-bottom:4px}
.pkg-detail-stat strong{font-size:14px;color:#fff;font-weight:600;line-height:1.35}
.pkg-detail-stat .stars-inline{color:var(--gold-soft);font-size:15px;letter-spacing:1px}
.pkg-detail-wrap{background:linear-gradient(180deg,#fbf6e9 0%,#fff 120px)}
.pkg-detail-wrap .day{
  background:#fff;border:1px solid #e3dac4;border-radius:14px;padding:18px;
  box-shadow:0 4px 18px rgba(11,32,23,.06);
}
.pkg-detail-wrap .day-img{border-radius:10px}
.pkg-related{
  border:1px solid #e7ddbf;border-radius:14px;padding:20px 22px;background:#fff;
  box-shadow:0 4px 16px rgba(11,32,23,.05);
}
.pkg-related h4{margin:0 0 14px;font-size:15px;font-weight:700;color:var(--green-700)}
.pkg-related ul{margin:0;padding:0;list-style:none}
.pkg-related li{margin-bottom:10px;padding-bottom:10px;border-bottom:1px dashed #ece6d4}
.pkg-related li:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}
.pkg-related a{font-size:12.5px;line-height:1.45;color:#2a3d30;font-weight:600;text-decoration:none}
.pkg-related a:hover{color:var(--green-700)}
.pkg-related-all{display:inline-block;margin-top:12px;font-size:12px;font-weight:700;color:var(--green-700);text-transform:uppercase;letter-spacing:.06em}
.callbox b a{color:var(--gold-soft);text-decoration:none}
.enquiry-submit{display:block;text-align:center;text-decoration:none}
.pkg-detail-overview{
  background:linear-gradient(135deg,#0b2017 0%,#1d4030 100%);
  padding:52px 0;
}
.pkg-detail-overview h2,.pkg-detail-overview h3{color:var(--gold-soft)}
.pkg-detail-overview p{color:#d0ddd0;font-size:var(--text-base);line-height:var(--leading-relaxed);max-width:920px;margin:0 auto}

/* ===== Overview ===== */
.overview{background:#FBF6E1;padding:46px 0}
.overview .container{max-width:1000px;text-align:center}
.overview h3{font-size:var(--heading-h3);font-weight:700;color:var(--green-700);margin:0 0 16px}
.overview p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;margin:0}

@media (max-width:1100px){
  .detail-grid{grid-template-columns:1fr}
  .side{position:static}
  .inner-hero h1{font-size:var(--heading-h1)}
  .pkg-detail-bar-inner{flex-wrap:wrap}
  .pkg-stat-card{min-width:calc(33.333% - 8px);flex:1 1 calc(33.333% - 8px)}
  .pkg-detail-cta{flex:1 1 100%;min-height:44px;padding:12px 20px}
}
@media (max-width:720px){
  .day{grid-template-columns:1fr}
  .incl-grid{grid-template-columns:1fr}
  .how{grid-template-columns:1fr}
  .pkg-stat-card{min-width:100%;flex:1 1 100%}
  .pkg-detail-bar{padding:12px 0}
}

/* ===== Site disclaimer ===== */
.site-disclaimer{background:#508a4f;color:#e8ede8;padding:8px 0;font-size:11.5px;line-height:1.5;text-align:center}
.site-disclaimer p{margin:0}

/* ===== Shared inner page blocks ===== */
.page-intro{max-width:820px;margin:0 auto 36px;text-align:center}
.page-intro p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;margin:0 0 20px}
.page-content{max-width:820px;margin:0 auto}
.page-content h3{font-size:var(--heading-h3);color:var(--green-700);margin:28px 0 10px}
.page-content p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;margin:0 0 14px}
.crumb a{color:#dcdcdc;text-decoration:none}
.crumb a:hover{color:#fff}

/* Hotels listing page — 4 per row, wildlife theme */
.hotels-page{padding-top:30px}
.hotels-alert{
  display:flex;gap:16px;align-items:flex-start;
  background:linear-gradient(135deg,#fff9e8 0%,#f5edd6 100%);
  border:1px solid #e2c96a;border-left:5px solid var(--gold);
  border-radius:12px;padding:20px 22px;margin-bottom:36px;
  box-shadow:0 6px 20px rgba(226,183,60,.15);
}
.hotels-alert-icon{font-size:22px;line-height:1;flex-shrink:0;margin-top:2px}
.hotels-alert-body h2{margin:0 0 8px;color:#1a2e22}
.hotels-alert-body p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548;margin:0 0 10px}
.hotels-alert-body p:last-child{margin-bottom:0}
.hotel-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.hotel-card{
  background:#fff;border:1px solid #e3dac4;border-radius:12px;overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 4px 16px rgba(11,32,23,.07);
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
  position:relative;
}
.hotel-card::before{
  content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--green-800),var(--gold),var(--green-800));
  z-index:2;
}
.hotel-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,32,23,.12);border-color:#cdb976}
.hotel-card-media{position:relative}
.hotel-card-img{display:block;position:relative;height:155px;overflow:hidden;background:#2a2418}
.hotel-card-img::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,transparent 45%,rgba(11,32,23,.55) 100%);
  pointer-events:none;
}
.hotel-card-img img{width:100%;height:100%;object-fit:cover;}
.hotel-card:hover .hotel-card-img img{transform:scale(1.07)}
.hotel-tier{
  position:absolute;left:10px;bottom:10px;z-index:2;
  background:rgba(11,32,23,.88);color:var(--gold-soft);
  font-size:9px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;
  padding:4px 9px;border-radius:999px;border:1px solid rgba(226,183,60,.35);
}
.hotel-paw{
  position:absolute;right:10px;top:10px;z-index:2;
  width:28px;height:28px;border-radius:50%;
  background:rgba(255,255,255,.92);display:flex;align-items:center;justify-content:center;
  font-size:13px;box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.hotel-card-body{padding:11px 12px 0;display:flex;flex-direction:column;flex:1;background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%)}
.hotel-tag{
  display:inline-block;font-size:9px;font-weight:700;color:var(--green-700);
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:3px;
}
.hotel-card h3{margin:0 0 5px;font-size:var(--heading-h3);font-weight:700;line-height:1.3;min-height:0}
.hotel-card h3 a{color:#1a2e22;text-decoration:none}
.hotel-card h3 a:hover{color:var(--green-700)}
.hotel-rating-row{display:flex;align-items:center;justify-content:space-between;gap:6px;margin-bottom:7px}
.hotel-card .stars{font-size:13px;letter-spacing:.5px;color:var(--star)}
.hotel-reviews{font-size:10px;font-weight:600;color:#6b7a6e;background:#f0ebe0;padding:3px 8px;border-radius:999px;white-space:nowrap}
.hotel-facilities{
  list-style:none;margin:0 0 8px;padding:0;
  display:grid;grid-template-columns:1fr 1fr;gap:2px 8px;
}
.hotel-facilities li{
  font-size:11.5px;color:#3f4a42;line-height:1.25;
  padding-left:13px;position:relative;
}
.hotel-facilities li::before{
  content:"";position:absolute;left:0;top:5px;width:5px;height:5px;border-radius:50%;
  background:var(--gold);
}
.hotel-address{
  display:flex;align-items:flex-start;gap:6px;
  font-size:11.5px;line-height:1.35;color:#4a5548;margin:0;
  padding:6px 8px;background:#f7f3ea;border-radius:6px;border:1px solid #ece6d4;
  max-height:3.2em;overflow:hidden;
}
.hotel-address svg{flex-shrink:0;margin-top:1px;color:var(--green-700);width:12px;height:12px}
.hotel-card-foot{
  margin-top:auto;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:11px 14px;
 background: #1b1e1b;
  margin:10px -12px 0;
  border-radius:0 0 11px 11px;
  border-top:1px solid rgba(226,183,60,.25);
  position:relative;
}
.hotel-card-foot::before{
  content:"";position:absolute;top:0;left:14px;right:14px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(226,183,60,.45),transparent);
}
.hotel-foot-price{
  min-width:0;line-height:1.2;
  padding-left:10px;border-left:3px solid var(--gold);
}
.hotel-foot-price strong{
  display:block;font-size:17px;font-weight:800;color:var(--gold-soft);
  letter-spacing:-.01em;
}
.hotel-foot-price span{display:block;font-size:10px;color:#b8c9bc;margin-top:2px;font-weight:500}
.hotel-foot-btn{
  flex-shrink:0;display:inline-flex;align-items:center;gap:6px;
  background:linear-gradient(180deg,var(--gold-soft) 0%,var(--gold) 100%);
  color:#1a1a1a;
  padding:9px 14px;border-radius:8px;
  font-size:10px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;
  white-space:nowrap;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 2px 8px rgba(0,0,0,.18);
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.hotel-foot-btn:hover{
  background:linear-gradient(180deg,#f5dc7a 0%,var(--gold-soft) 100%);
  color:#1a1a1a;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.22);
}
.hotel-foot-btn span{font-size:14px;line-height:1;font-weight:700}
.hotels-bottom{max-width:920px;margin:52px auto 0;text-align:center;padding:28px;background:#fbf6e9;border-radius:12px;border:1px solid #e7ddbf}
.hotels-bottom p{font-size:15px;line-height:1.9;color:#3a3a3a;margin:0 0 14px}

.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.info-card{background:#fff;border:1px solid #ece6d4;border-radius:10px;padding:28px}
.info-card h3{margin:0 0 14px;font-size:20px;color:var(--green-700)}
.info-card p{font-size:14px;line-height:1.85;color:#3a3a3a;margin:0 0 16px}
.info-list{margin:0 0 20px;padding:0;list-style:none}
.info-list li{position:relative;padding-left:22px;font-size:13.5px;color:#3a3a3a;line-height:1.7;margin-bottom:10px}
.info-list li::before{content:"";position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:50%;background:var(--gold)}
.contact-box{background:#fbf6e9;border-radius:8px;padding:16px;font-size:13.5px;line-height:1.8}
.contact-box a{color:var(--green-700)}

/* ===== Contact page ===== */
.contact-page{
  padding:40px 0 56px;
  background:linear-gradient(180deg,#fbf6e9 0%,#fff 140px);
}
.contact-layout{
  display:grid;grid-template-columns:340px 1fr;gap:28px;align-items:start;
}
.contact-alert{
  display:flex;gap:14px;align-items:flex-start;
  background:linear-gradient(135deg,#fff9e8 0%,#f5edd6 100%);
  border:1px solid #e2c96a;border-left:4px solid var(--gold);
  border-radius:12px;padding:16px 18px;margin-bottom:20px;
  box-shadow:0 4px 16px rgba(226,183,60,.1);
}
.contact-alert-icon{font-size:22px;line-height:1;flex-shrink:0}
.contact-alert strong{display:block;font-size:14px;color:#1a2e22;margin-bottom:6px}
.contact-alert p{margin:0;font-size:13px;line-height:1.7;color:#4a5548}
.contact-cards{display:flex;flex-direction:column;gap:10px;margin-bottom:20px}
.contact-card{
  display:flex;align-items:center;gap:12px;padding:12px 14px;
  background:#fff;border:1px solid #e3dac4;border-radius:10px;
  text-decoration:none;color:inherit;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
  box-shadow:0 2px 10px rgba(11,32,23,.04);
}
.contact-card:hover{
  transform:translateY(-2px);box-shadow:0 6px 18px rgba(11,32,23,.08);
  border-color:#cdb976;
}
.contact-card--static{cursor:default}
.contact-card--static:hover{transform:none;box-shadow:0 2px 10px rgba(11,32,23,.04)}
.cc-icon{
  flex-shrink:0;width:40px;height:40px;border-radius:10px;
  background:linear-gradient(135deg,var(--green-800),var(--green-700));
  color:var(--gold-soft);display:flex;align-items:center;justify-content:center;
}
.cc-icon svg{width:18px;height:18px}
.contact-card .cc-lbl{display:block;font-size:9px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#6b7a6e;margin-bottom:2px}
.contact-card strong{display:block;font-size:13px;font-weight:700;color:#1a2e22;line-height:1.3}
.contact-card .cc-sub{display:block;font-size:12px;color:#6b7a6e;margin-top:1px}
.contact-hours,.contact-quick-links{
  background:#fff;border:1px solid #e3dac4;border-radius:10px;padding:16px 18px;margin-bottom:16px;
}
.contact-hours h4,.contact-quick-links h4{
  margin:0 0 12px;font-size:12px;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:var(--green-800);
}
.contact-hours ul,.contact-quick-links ul{list-style:none;margin:0;padding:0}
.contact-hours li{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:8px 0;border-bottom:1px dashed #ece6d4;font-size:12.5px;
}
.contact-hours li:last-child{border-bottom:none;padding-bottom:0}
.contact-hours li span{color:#6b7a6e}
.contact-hours li strong{color:#1a2e22;font-weight:600;font-size:12px}
.contact-quick-links li{margin-bottom:8px}
.contact-quick-links li:last-child{margin-bottom:0}
.contact-quick-links a{
  font-size:13px;font-weight:600;color:var(--green-700);text-decoration:none;
  display:flex;align-items:center;gap:6px;
}
.contact-quick-links a::before{
  content:"→";font-size:11px;color:var(--gold);
}
.contact-quick-links a:hover{color:var(--green-900)}
.contact-form-wrap{min-width:0}
.contact-form{
  background:#fff;border:1px solid rgba(212,175,55,.28);
  border-left:4px solid var(--gold);border-radius:12px;overflow:hidden;
  box-shadow:0 6px 24px rgba(11,32,23,.08);
}
.contact-form-head{
  display:flex;align-items:center;gap:14px;
  background:linear-gradient(160deg,var(--green-950) 0%,var(--green-800) 100%);
  color:#fff;padding:18px 22px;
}
.cfh-icon{
  flex-shrink:0;width:44px;height:44px;border-radius:10px;
  background:rgba(226,183,60,.15);border:1px solid rgba(226,183,60,.35);
  display:flex;align-items:center;justify-content:center;color:var(--gold-soft);
}
.cfh-icon svg{width:22px;height:22px}
.contact-form-head h2{margin:0 0 4px;font-size:17px;font-weight:700;color:#fff}
.contact-form-head p{margin:0;font-size:12.5px;color:#b8c9bc;line-height:1.5}
.contact-form-body{padding:22px 22px 24px}
.contact-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.contact-form .form-group{margin-bottom:14px}
.contact-form label{
  display:block;font-size:11px;font-weight:700;text-transform:uppercase;
  letter-spacing:.05em;color:var(--green-700);margin-bottom:5px;
}
.contact-form .req{color:#c0392b}
.contact-form input,.contact-form select,.contact-form textarea{
  width:100%;padding:10px 12px;border:1.5px solid #e0ddd4;border-radius:7px;
  font-family:inherit;font-size:13px;color:#222;background:#fff;
  transition:border-color .2s,box-shadow .2s;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:none;border-color:var(--green-700);box-shadow:0 0 0 3px rgba(29,64,48,.1);
}
.contact-form textarea{resize:vertical;min-height:100px}
.contact-submit{
  display:flex;align-items:center;justify-content:center;gap:8px;width:100%;
  background:linear-gradient(135deg,var(--gold) 0%,#c9a227 100%);
  color:var(--green-950);border:none;border-radius:8px;
  padding:13px 20px;font-family:inherit;font-size:13px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;cursor:pointer;
  box-shadow:0 4px 14px rgba(226,183,60,.35);
  transition:transform .2s,box-shadow .2s,background .2s;
}
.contact-submit span{font-size:16px;line-height:1;transition:transform .2s}
.contact-submit:hover{
  background:linear-gradient(135deg,var(--gold-soft) 0%,var(--gold) 100%);
  transform:translateY(-1px);box-shadow:0 6px 18px rgba(226,183,60,.4);
}
.contact-submit:hover span{transform:translateX(3px)}

/* Legacy contact grid (fallback) */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:40px;align-items:start}
.contact-info h3{font-size:var(--heading-h3);color:var(--green-700);margin:0 0 12px}
.contact-info p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;margin:0 0 20px}
.contact-info .contact-line{display:flex;gap:12px;margin-bottom:14px;font-size:var(--text-base);color:#3a3a3a}
.contact-info .contact-line .ic{color:var(--gold);flex-shrink:0;margin-top:2px}
.contact-info .contact-line a{color:var(--green-700);text-decoration:none}

@media (max-width:1280px){
  .hotel-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1100px){
  .hotel-grid{grid-template-columns:repeat(2,1fr)}
  .info-grid,.contact-grid,.contact-layout{grid-template-columns:1fr}
}
@media (max-width:720px){
  .hotel-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
  .hotel-card-img{height:115px}
  .hotel-card-body{padding:9px 9px 0}
  .hotel-tier{font-size:8px;padding:3px 7px;left:8px;bottom:8px}
  .hotel-paw{width:24px;height:24px;right:8px;top:8px;font-size:11px}
  .hotel-tag{font-size:8px;margin-bottom:2px}
  .hotel-card h3{font-size:13px;line-height:1.25;margin-bottom:4px}
  .hotel-rating-row{margin-bottom:5px}
  .hotel-card .stars{font-size:11px}
  .hotel-reviews{font-size:8px;padding:2px 6px}
  .hotel-facilities{display:none}
  .hotel-address{display:none}
  .hotel-card-foot{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:10px;
    margin:8px -9px 0;
  }
  .hotel-foot-price{padding-left:8px}
  .hotel-foot-price strong{font-size:14px}
  .hotel-foot-price span{font-size:9px}
  .hotel-foot-btn{
    justify-content:center;
    font-size:8px;
    padding:8px 10px;
    letter-spacing:.05em;
  }
  .hotel-foot-btn span{font-size:12px}
  .contact-form .form-row{grid-template-columns:1fr}
  .contact-form-body{padding:18px 16px 20px}
  .contact-form-head{padding:16px 18px}
  .hotels-alert{flex-direction:column;padding:16px 18px}
}

/* Hotel detail pages */
.hotel-detail-hero .crumb a{color:#dcdcdc;text-decoration:none}
.hotel-detail-hero .crumb a:hover{color:#fff}
.hotel-detail-hero .hero-tags .t{max-width:100%;white-space:normal;text-align:center;line-height:1.4}
.hotel-detail-tier{
  display:inline-block;margin-bottom:8px;padding:5px 14px;
  background:rgba(212,168,75,.22);border:1px solid rgba(212,168,75,.45);
  border-radius:999px;font-size:11px;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;color:#f5e6b8;
}
.hotel-detail-bar{
  background:linear-gradient(135deg,#14241a 0%,#1f3628 55%,#243d2e 100%);
  border-bottom:3px solid var(--gold);
  padding:22px 0;box-shadow:0 8px 24px rgba(20,36,26,.18);
}
.hotel-detail-bar-inner{
  display:flex;align-items:stretch;gap:14px;flex-wrap:wrap;
}
.hotel-stat-card{
  flex:1;min-width:150px;display:flex;align-items:center;gap:12px;
  padding:14px 16px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);border-radius:12px;
  transition:background .2s,border-color .2s;
}
.hotel-stat-card:hover{background:rgba(255,255,255,.1);border-color:rgba(212,168,75,.35)}
.hsc-icon{
  flex-shrink:0;width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,rgba(212,168,75,.25),rgba(212,168,75,.08));
  border:1px solid rgba(212,168,75,.35);border-radius:10px;color:var(--gold-soft);
}
.hsc-icon svg{width:20px;height:20px}
.hsc-body .lbl{display:block;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#9eb0a0;margin-bottom:3px}
.hsc-body strong{font-size:14px;color:#fff;font-weight:600;line-height:1.35}
.hsc-body strong small{font-size:11px;font-weight:500;color:#b8c8b8}
.hotel-detail-stat .stars-inline,.hsc-body .stars-inline{color:var(--gold-soft);font-size:15px;letter-spacing:1px}
.hotel-detail-cta{align-self:center;flex-shrink:0;min-width:190px;padding:14px 24px;box-shadow:0 4px 16px rgba(0,0,0,.2)}
.hotel-detail-wrap{background:linear-gradient(180deg,#fbf6e9 0%,#fff 160px);padding-top:40px}
.hotel-gallery-wrap{position:relative;margin-bottom:20px}
.hotel-gallery{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
}
.hotel-gallery-main{grid-column:span 2;grid-row:span 2}
.hotel-gallery-item{
  margin:0;border-radius:14px;overflow:hidden;border:1px solid #e3dac4;
  background:#f5f0e4;aspect-ratio:4/3;box-shadow:0 4px 14px rgba(26,46,34,.08);
  transition:transform .25s,box-shadow .25s;
}
.hotel-gallery-item:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(26,46,34,.14)}
.hotel-gallery-main{aspect-ratio:auto;min-height:300px}
.hotel-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.hotel-gallery-item:hover img{transform:scale(1.04)}
.hotel-gallery-badge{
  position:absolute;right:14px;bottom:14px;display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;background:rgba(26,46,34,.88);backdrop-filter:blur(6px);
  border:1px solid rgba(212,168,75,.4);border-radius:999px;
  font-size:12px;font-weight:600;color:#f5f0e4;
}
.hotel-gallery-badge svg{width:16px;height:16px;color:var(--gold-soft)}
.hotel-highlights{
  display:flex;flex-wrap:wrap;gap:10px;margin-bottom:28px;
}
.hotel-chip{
  display:inline-flex;align-items:center;gap:8px;padding:8px 14px;
  background:#fff;border:1px solid #e5dcc6;border-radius:999px;
  font-size:13px;font-weight:600;color:#2d3d30;
  box-shadow:0 2px 8px rgba(26,46,34,.05);
}
.hotel-chip .hc-ic{font-size:15px;line-height:1}
.hotel-section-head{
  display:flex;align-items:center;gap:12px;margin:0 0 14px;
}
.hotel-section-head h2{
  margin:0;font-size:var(--heading-h2);font-weight:700;color:#1a2e22;letter-spacing:-.02em;
}
.hsh-icon{
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
  background:linear-gradient(135deg,#fff9e8,#f0e6c8);
  border:1px solid #e2c96a;border-radius:12px;color:#8a6d28;
}
.hsh-icon svg{width:22px;height:22px}
.hotel-overview-card{
  background:#fff;border:1px solid #e8dfc8;border-left:5px solid var(--gold);
  border-radius:14px;padding:24px 26px;margin-bottom:32px;
  box-shadow:0 4px 18px rgba(26,46,34,.06);
}
.hotel-overview{font-size:15px;line-height:1.92;color:#3f4a42}
.hotel-overview p{margin:0 0 16px}
.hotel-overview p:last-child{margin-bottom:0}
.hotel-overview strong{color:#1a2e22;font-weight:700}
.hotel-detail-facilities{
  display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
  list-style:none;margin:0 0 32px;padding:0;
}
.hotel-detail-facilities li{
  display:flex;align-items:center;gap:12px;
  padding:14px 16px;background:#fff;border:1px solid #ebe3cf;border-radius:12px;
  font-size:14px;color:#2f3b33;box-shadow:0 2px 10px rgba(26,46,34,.04);
  transition:border-color .2s,transform .2s,box-shadow .2s;
}
.hotel-detail-facilities li:hover{
  border-color:#d4c48a;transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(26,46,34,.08);
}
.hotel-detail-facilities .hf-icon{
  flex-shrink:0;width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#f7f0dc,#fff);
  border:1px solid #e8dfc8;border-radius:10px;color:#6b7a62;
}
.hotel-detail-facilities .hf-icon svg{width:18px;height:18px}
.hotel-detail-facilities .hf-label{line-height:1.35;font-weight:600}
@media(max-width:992px){
  .hotel-detail-facilities{grid-template-columns:repeat(2,1fr)}
  .hotel-stat-card{min-width:calc(50% - 10px)}
}
@media(max-width:720px){
  .hotel-detail-bar{padding:14px 0}
  .hotel-detail-bar-inner{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  .hotel-stat-card{
    min-width:0;
    flex:none;
    padding:10px 12px;
    gap:8px;
    border-radius:10px;
  }
  .hsc-icon{width:34px;height:34px;border-radius:8px}
  .hsc-icon svg{width:16px;height:16px}
  .hsc-body .lbl{font-size:9px;margin-bottom:2px;letter-spacing:.08em}
  .hsc-body strong{font-size:12px}
  .hsc-body strong small{font-size:10px}
  .hsc-body .stars-inline{font-size:13px}
  .hotel-detail-cta{
    grid-column:1 / -1;
    width:100%;
    min-width:0;
    justify-content:center;
    padding:12px 18px;
    font-size:13px;
    margin-top:2px;
  }
  .hotel-detail-wrap{padding-top:24px}
  .hotel-gallery-wrap{margin-bottom:16px}
  .hotel-gallery{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    grid-template-rows:auto auto;
    gap:8px;
  }
  .hotel-gallery-main{
    grid-column:1 / -1;
    grid-row:1;
    min-height:0;
    aspect-ratio:16 / 10;
  }
  .hotel-gallery-item:not(.hotel-gallery-main){
    aspect-ratio:1;
    border-radius:10px;
  }
  .hotel-gallery-badge{
    right:10px;
    bottom:10px;
    font-size:11px;
    padding:6px 10px;
  }
  .hotel-highlights{gap:8px;margin-bottom:20px}
  .hotel-chip{font-size:12px;padding:6px 12px}
}
@media(max-width:640px){
  .hotel-detail-facilities{grid-template-columns:1fr}
  .hotel-overview-card{padding:18px 16px}
}

/* Chambal boat safari page */
.chambal-page{background:linear-gradient(180deg,#fbf6e9 0%,#fff 140px);padding:36px 0 56px}
.chambal-alert{
  display:flex;gap:16px;align-items:flex-start;
  background:linear-gradient(135deg,#e8f4f8 0%,#dceef5 100%);
  border:1px solid #8ec5d8;border-left:5px solid #2a7a9b;
  border-radius:12px;padding:20px 24px;margin-bottom:36px;
  box-shadow:0 4px 16px rgba(42,122,155,.08);
}
.chambal-alert-icon{font-size:28px;line-height:1;flex-shrink:0}
.chambal-alert-body strong{display:block;font-size:15px;color:#1a3a4a;margin-bottom:8px}
.chambal-alert-body p{font-size:14px;line-height:1.85;color:#3a5560;margin:0}
.chambal-intro{margin-bottom:36px}
.chambal-intro-img img{border-radius:14px;box-shadow:0 8px 28px rgba(26,46,34,.12)}
.chambal-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-bottom:36px;
}
.chambal-stat{
  display:flex;align-items:center;gap:12px;padding:16px 18px;
  background:#fff;border:1px solid #e3dac4;border-radius:12px;
  box-shadow:0 3px 12px rgba(26,46,34,.06);
}
.chambal-stat .cs-icon{
  flex-shrink:0;width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#e8f4f8,#dceef5);border:1px solid #b8dce8;
  border-radius:10px;color:#2a7a9b;
}
.chambal-stat .cs-icon svg{width:20px;height:20px}
.chambal-stat .cs-lbl{display:block;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#7a9aa8;margin-bottom:2px}
.chambal-stat strong{font-size:14px;color:#1a2e22;font-weight:600}
.chambal-cards{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.chambal-card{
  background:#fff;border:1px solid #e8dfc8;border-radius:14px;padding:26px 28px;
  box-shadow:0 4px 18px rgba(26,46,34,.06);
}
.chambal-card-head{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.chambal-card-head .cc-icon{
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#fff9e8,#f0e6c8);border:1px solid #e2c96a;
  border-radius:12px;font-size:22px;
}
.chambal-card h3{margin:0;font-size:var(--heading-h3);color:var(--green-700)}
.chambal-card p{margin:0 0 10px;color:#4a5548;line-height:1.75;font-size:var(--text-base)}
.chambal-card p:last-child{margin-bottom:0}
.chambal-card ol{margin:8px 0 0;padding-left:20px;color:#4a5548;line-height:1.75;font-size:var(--text-base)}
.chambal-card ol li{margin-bottom:6px}
.chambal-list{list-style:none;margin:0;padding:0}
.chambal-list li{
  display:flex;align-items:center;gap:12px;padding:11px 0;
  border-bottom:1px dashed #ebe3cf;font-size:14px;color:#3a453c;line-height:1.45;
}
.chambal-list li:last-child{border-bottom:none;padding-bottom:0}
.chambal-list .cl-ic{
  flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  background:#f7f3e8;border-radius:8px;font-size:16px;
}
.chambal-list-detail .cl-ic svg{width:16px;height:16px;color:#6b7a62}
.chambal-card-btn{margin-top:20px;display:inline-flex}
@media(max-width:992px){
  .chambal-stats{grid-template-columns:repeat(2,1fr)}
  .chambal-cards{grid-template-columns:1fr}
}
@media(max-width:640px){
  .chambal-alert{flex-direction:column;padding:16px 18px}
  .chambal-stats{grid-template-columns:1fr}
}

/* ===== Payment page ===== */
.payment-page{
  background:linear-gradient(180deg,#fbf6e9 0%,#fff 120px);
  padding:44px 0 56px;
}
.payment-layout{
  display:grid;grid-template-columns:minmax(280px,340px) 1fr;gap:32px;align-items:start;
}
.payment-aside{display:flex;flex-direction:column;gap:20px}
.payment-secure-badge{
  display:flex;gap:14px;align-items:flex-start;
  background:linear-gradient(135deg,#e8f5ec 0%,#dceee3 100%);
  border:1px solid #9cc4a8;border-left:5px solid var(--green-700);
  border-radius:12px;padding:18px 20px;
}
.payment-secure-badge .psb-icon{
  flex-shrink:0;width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:#fff;border-radius:10px;color:var(--green-700);border:1px solid #b8d4be;
}
.payment-secure-badge .psb-icon svg{width:22px;height:22px;display:block;max-width:22px;max-height:22px}
.payment-secure-badge strong{display:block;font-size:15px;color:#1a2e22;margin-bottom:6px}
.payment-secure-badge p{margin:0;font-size:13px;line-height:1.65;color:#3f4a42}
.payment-aside-title{
  margin:0;font-size:16px;font-weight:700;color:var(--green-700);
  letter-spacing:.02em;
}
.payment-methods{
  list-style:none;margin:0;padding:0;
  background:#fff;border:1px solid #e8dfc8;border-radius:12px;overflow:hidden;
}
.payment-methods li{
  display:flex;align-items:center;gap:12px;padding:12px 16px;
  font-size:13px;color:#3a453c;border-bottom:1px dashed #ebe3cf;
}
.payment-methods li:last-child{border-bottom:none}
.payment-methods .pm-ic{
  width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  background:#f7f3ea;border-radius:8px;font-size:16px;flex-shrink:0;
}
.payment-help-box{
  background:var(--green-700);color:#fff;border-radius:12px;padding:20px 22px;
}
.payment-help-box h3,.payment-help-box h4{margin:0 0 8px;font-size:15px;font-weight:700}
.payment-help-box p{margin:0 0 12px;font-size:13px;line-height:1.6;color:#cfe0d2}
.payment-help-box a{
  display:block;font-size:14px;font-weight:600;color:var(--gold-soft);
  text-decoration:none;margin-bottom:6px;
}
.payment-help-box a:hover{color:#fff}
.payment-links-box{
  background:#fff;border:1px solid #e8dfc8;border-radius:12px;padding:18px 20px;
}
.payment-links-box h3,.payment-links-box h4{margin:0 0 12px;font-size:14px;font-weight:700;color:var(--green-700)}
.payment-links-box ul{list-style:none;margin:0;padding:0}
.payment-links-box li{margin-bottom:8px}
.payment-links-box a{font-size:13px;color:#3a453c;text-decoration:none}
.payment-links-box a:hover{color:var(--green-700);text-decoration:underline}

.payment-form-wrap{
  background:#fff;border:1px solid #e3dac4;border-radius:16px;
  box-shadow:0 8px 32px rgba(11,32,23,.08);overflow:hidden;
}
.payment-form-head{
  display:flex;align-items:center;gap:16px;
  background:linear-gradient(135deg,#1a3324 0%,#243d2e 100%);
  padding:22px 28px;color:#fff;
}
.payment-form-head .pfh-icon{
  flex-shrink:0;width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);border-radius:12px;
}
.payment-form-head .pfh-icon svg{width:24px;height:24px;display:block;max-width:24px;max-height:24px;color:var(--gold-soft)}
.payment-form-head h2{margin:0;font-size:var(--heading-h2);font-weight:700;line-height:1.2}
.payment-form-head p{margin:4px 0 0;font-size:var(--text-base);color:#b8c8b8;line-height:var(--leading-body)}
.payment-form-body{padding:28px}
.payment-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.payment-form .form-group{margin-bottom:18px}
.payment-form label{
  display:block;font-size:13px;font-weight:600;color:#3a453c;margin-bottom:7px;
}
.payment-form label .req{color:#c0392b}
.payment-form input,.payment-form select,.payment-form textarea{
  width:100%;padding:12px 14px;border:1px solid #ddd5c4;border-radius:8px;
  font-family:inherit;font-size:14px;color:#1a2e22;background:#fdfcf9;
  transition:border-color .2s,box-shadow .2s;
}
.payment-form input:focus,.payment-form select:focus,.payment-form textarea:focus{
  outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(212,168,75,.2);
}
.payment-form textarea{resize:vertical;min-height:88px}
.payment-amount-group .amount-input-wrap{
  display:flex;align-items:stretch;border:1px solid #ddd5c4;border-radius:8px;overflow:hidden;
  background:#fdfcf9;
}
.payment-amount-group .amount-prefix{
  display:flex;align-items:center;padding:0 14px;
  background:linear-gradient(135deg,#1a3324,#243d2e);color:var(--gold-soft);
  font-size:18px;font-weight:700;border-right:1px solid #3a5a48;
}
.payment-amount-group .amount-input-wrap input{
  border:none;border-radius:0;flex:1;font-size:18px;font-weight:600;
  background:transparent;
}
.payment-amount-group .amount-input-wrap input:focus{box-shadow:none}
.payment-submit{
  width:100%;display:flex;align-items:center;justify-content:center;gap:10px;
  margin-top:8px;padding:15px 24px;border:none;border-radius:10px;
  background:var(--gold);color:#1a1a1a;
  font-family:inherit;font-size:14px;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;cursor:pointer;
  transition:background .2s,transform .2s;
}
.payment-submit:hover{background:var(--gold-soft);transform:translateY(-1px)}
.payment-submit:disabled{opacity:.85;cursor:wait;transform:none}
.payment-submit.is-loading .payment-submit-label,
.payment-submit.is-loading .payment-submit-arrow{display:none}
.payment-submit-loading{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
}
.payment-submit-loading[hidden]{display:none !important}
.payment-spinner{
  width:22px;height:22px;border:3px solid #e3dac4;border-top-color:var(--green-700);
  border-radius:50%;animation:payment-spin .8s linear infinite;
}
@keyframes payment-spin{to{transform:rotate(360deg)}}

@media(max-width:992px){
  .payment-layout{grid-template-columns:1fr}
  .payment-aside{order:2}
  .payment-form-wrap{order:1}
}
@media(max-width:640px){
  .payment-form .form-row{grid-template-columns:1fr}
  .payment-form-body{padding:20px 18px}
  .payment-form-head{padding:18px 20px;flex-direction:column;text-align:center}
}

/* ===== Info / content pages ===== */
.info-page{background:linear-gradient(180deg,#fbf6e9 0%,#fff 140px);padding:36px 0 60px}
.info-layout{display:grid;grid-template-columns:1fr 280px;gap:32px;align-items:start}
.info-main{min-width:0}
.info-alert{
  display:flex;gap:16px;align-items:flex-start;
  background:linear-gradient(135deg,#fff9e8 0%,#f5edd6 100%);
  border:1px solid #e2c96a;border-left:5px solid var(--gold);
  border-radius:12px;padding:20px 22px;margin-bottom:28px;
  box-shadow:0 6px 20px rgba(226,183,60,.12);
}
.info-alert-icon{font-size:22px;line-height:1;flex-shrink:0;margin-top:2px}
.info-alert-body strong{display:block;font-size:15px;color:#1a2e22;margin-bottom:8px}
.info-alert-body p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548;margin:0}
.info-card{
  background:#fff;border:1px solid #e3dac4;border-radius:14px;padding:28px 30px;
  box-shadow:0 6px 22px rgba(11,32,23,.06);margin-bottom:24px;
}
.info-card h2{font-size:var(--heading-h2);color:var(--green-800);margin:0 0 14px;line-height:1.35}
.info-card h3{font-size:var(--heading-h3);color:var(--green-700);margin:24px 0 10px;line-height:1.4}
.info-card h3:first-child{margin-top:0}
.info-card p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;margin:0 0 14px}
.info-card ul,.info-card ol{margin:0 0 16px;padding-left:0;list-style:none}
.info-card li{
  position:relative;padding:10px 0 10px 28px;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a;
  border-bottom:1px solid #f0ebe0;
}
.info-card li:last-child{border-bottom:none}
.info-card li::before{
  content:"✓";position:absolute;left:0;top:10px;width:20px;height:20px;
  background:var(--green-800);color:var(--gold-soft);border-radius:50%;
  font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center;
}
.info-season-table{width:100%;border-collapse:collapse;margin:16px 0 20px;font-size:13px}
.info-season-table th,.info-season-table td{
  padding:12px 14px;border:1px solid #e3dac4;text-align:left;
}
.info-season-table th{background:var(--green-800);color:#fff;font-weight:600}
.info-season-table tr:nth-child(even) td{background:#fdfaf2}
.info-place-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:20px 0}
.info-place-item{
  background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%);
  border:1px solid #e3dac4;border-radius:12px;padding:18px 20px;
}
.info-place-item h3,.info-place-item h4{margin:0 0 8px;font-size:var(--heading-h3);color:var(--green-800)}
.info-place-item p{margin:0;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548}
.info-sidebar{position:sticky;top:90px}
.info-sidebar-box{
  background:#fff;border:1px solid #e3dac4;border-radius:14px;margin-bottom:18px;
  box-shadow:0 4px 16px rgba(11,32,23,.06);
  overflow:hidden;
}
.info-sidebar-box h3{
  margin:0;
  padding:12px 14px;
  background:#7c8f83;
  color:#fff;
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.info-sidebar-box ul{list-style:none;margin:0;padding:0}
.info-sidebar-box .info-sidebar-list{padding:10px 10px 12px}
.info-sidebar-box li{margin:0;border-bottom:1px dashed #e6dcc6}
.info-sidebar-box li:last-child{border-bottom:none}
.info-sidebar-box a{
  display:flex;align-items:flex-start;gap:10px;
  padding:10px 8px;
  font-size:14px;font-weight:600;color:#1f2f25;text-decoration:none;
  line-height:1.35;
}
.info-sidebar-box a::before{content:"•";color:#3b3b3b;margin-top:1px;flex-shrink:0}
.info-sidebar-box a:hover{color:var(--green-700)}
.info-sidebar-box a:hover::before{color:var(--gold-2)}

/* Info pages — extra “creative” blocks */
.info-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:16px 0 18px}
.info-feature{
  background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%);
  border:1px solid #e3dac4;border-radius:12px;padding:14px 14px;
  box-shadow:0 2px 10px rgba(11,32,23,.05);
  display:flex;gap:10px;align-items:flex-start;
}
.info-feature .ic{
  width:38px;height:38px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(145deg,var(--green-800),var(--green-700));
  color:var(--gold-soft);display:flex;align-items:center;justify-content:center;
  font-size:18px;line-height:1;
}
.info-feature b{display:block;font-size:13px;color:var(--green-800);margin:0 0 4px}
.info-feature span{display:block;font-size:13px;line-height:1.55;color:#4a5548}
.info-note{
  background:#fdfaf2;border:1px solid #e8dfc8;border-left:4px solid var(--gold-2);
  border-radius:10px;padding:14px 16px;margin:16px 0 18px;
  font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548;
}
.info-faq-q{
  font-size:var(--heading-h3);color:var(--green-800);margin:22px 0 8px;line-height:1.4;
  font-weight:700;
}
.info-faq-q:first-of-type{margin-top:0}
.info-subhead{
  font-size:15px;font-weight:700;color:#1a2e22;margin:18px 0 8px;line-height:1.4;
}
.info-subhead:first-child{margin-top:0}
.chambal-card .info-subhead{color:var(--green-700)}
.info-card .info-feature-grid{margin-top:4px}

@media (max-width:900px){
  .info-feature-grid{grid-template-columns:1fr}
}
.info-sidebar-cta{
  background:linear-gradient(135deg,var(--green-800) 0%,#0d2818 100%);
  border-radius:14px;padding:22px 20px;color:#e8ede8;text-align:center;
}
.info-sidebar-cta strong{display:block;color:#fff;font-size:15px;margin-bottom:8px}
.info-sidebar-cta p{font-size:13px;line-height:1.6;margin:0 0 16px;color:#c5d0c5}
.info-sidebar-cta .btn-gold{display:inline-block;font-size:13px;padding:10px 20px}
.info-about-lead{display:grid;grid-template-columns:minmax(200px,.85fr) 1.15fr;gap:24px;margin:22px 0;align-items:start}
.info-about-figure{margin:18px 0}
.info-about-figure img{width:100%;border-radius:12px;object-fit:cover;display:block}
.info-about-lead .info-about-figure{margin:0}
.info-photo-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:20px 0}
.info-photo-grid img{width:100%;border-radius:12px;object-fit:cover;height:220px;display:block}
.info-media-row{
  display:grid;grid-template-columns:minmax(240px,38%) 1fr;gap:28px;align-items:start;
  margin:6px 0 18px;padding:22px 24px;
  background:linear-gradient(180deg,#fdfaf2 0%,#fff 100%);
  border:1px solid #ebe4d4;border-radius:14px;
  box-shadow:0 4px 18px rgba(11,32,23,.05);
}
.info-media-row--reverse{grid-template-columns:1fr minmax(240px,38%)}
.info-media-row--reverse .info-media-photo{order:2}
.info-media-row--reverse .info-media-body{order:1}
.info-media-photo{margin:0}
.info-media-photo img{
  width:100%;aspect-ratio:4/3;object-fit:cover;display:block;
  border-radius:12px;box-shadow:0 10px 28px rgba(11,32,23,.14);
}
.info-media-photo figcaption{
  margin-top:10px;font-size:12px;line-height:1.5;color:#6b7a6e;text-align:center;
}
.info-media-body{min-width:0}
.info-media-body > p:first-child{margin-top:0}
.info-media-body > p:last-child{margin-bottom:0}
.info-media-body ul{margin:4px 0 0}
.info-media-body li{padding:9px 0 9px 28px}
.info-media-body li::before{top:9px}
.info-dest-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin:22px 0 8px;
}
.info-dest-card{
  background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%);
  border:1px solid #e3dac4;border-radius:14px;overflow:hidden;
  box-shadow:0 6px 20px rgba(11,32,23,.06);
  transition:transform .22s ease,box-shadow .22s ease;
}
.info-dest-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(11,32,23,.1)}
.info-dest-card figure{margin:0;overflow:hidden;background:#e8e0d0}
.info-dest-card img{
  width:100%;aspect-ratio:16/10;object-fit:cover;display:block;
  transition:transform .35s ease;
}
.info-dest-card:hover img{transform:scale(1.04)}
.info-dest-body{padding:18px 20px 20px}
.info-dest-body h3{margin:0 0 10px;font-size:var(--heading-h3);color:var(--green-700);line-height:1.35}
.info-dest-body p{margin:0;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#3a3a3a}
@media (max-width:768px){
  .info-about-lead,.info-photo-grid{grid-template-columns:1fr}
  .info-photo-grid img{height:auto;min-height:180px}
  .info-media-row,.info-media-row--reverse{
    grid-template-columns:1fr;gap:18px;padding:18px;
  }
  .info-media-row--reverse .info-media-photo,
  .info-media-row--reverse .info-media-body{order:unset}
  .info-media-photo img{aspect-ratio:16/10;max-height:260px}
  .info-dest-grid{grid-template-columns:1fr}
}
.sitemap-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.sitemap-col h3{font-size:var(--heading-h3);color:var(--green-800);margin:0 0 12px;text-transform:uppercase;letter-spacing:.08em}
.sitemap-col ul{list-style:none;margin:0;padding:0}
.sitemap-col li{margin-bottom:8px}
.sitemap-col a{font-size:var(--text-base);color:#4a5548;text-decoration:none;line-height:var(--leading-body)}
.sitemap-col a:hover{color:var(--green-700)}

/* Legal / policy pages */
.legal-intro{
  font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548;margin:0 0 24px;
  padding:18px 20px;background:linear-gradient(180deg,#fdfaf2 0%,#fff 100%);
  border-radius:10px;border:1px solid #ebe4d4;
}
.legal-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:4px}
.legal-item{
  background:linear-gradient(180deg,#fff 0%,#fdfaf2 100%);
  border:1px solid #e3dac4;border-radius:12px;padding:20px 22px;
  transition:box-shadow .2s ease,border-color .2s ease;
}
.legal-item:hover{border-color:#cdb976;box-shadow:0 6px 18px rgba(11,32,23,.08)}
.legal-item-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.legal-item-ic{
  width:42px;height:42px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(145deg,var(--green-800),var(--green-700));
  color:var(--gold-soft);display:flex;align-items:center;justify-content:center;
  font-size:18px;line-height:1;
}
.legal-item h3{margin:0;font-size:var(--heading-h3);font-weight:700;color:var(--green-800);line-height:1.3}
.legal-item p{margin:0;font-size:var(--text-base);line-height:var(--leading-relaxed);color:#4a5548}
.legal-item a{color:var(--green-700);text-decoration:underline}
.legal-item a:hover{color:var(--green-950)}
.legal-item--full{grid-column:1/-1}
.legal-updated{
  display:inline-flex;align-items:center;gap:8px;margin-top:24px;
  padding:10px 16px;background:#f7f3ea;border-radius:8px;
  font-size:13px;color:#6b7a6e;border:1px solid #ebe4d4;
}
.legal-updated strong{color:var(--green-800);font-weight:700}

@media (max-width:900px){
  .legal-grid{grid-template-columns:1fr}
}

.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:24px}
.blog-card{
  background:#fff;border:1px solid #e3dac4;border-radius:14px;overflow:hidden;
  box-shadow:0 4px 16px rgba(11,32,23,.06);transition:transform .25s ease,box-shadow .25s ease;
}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(11,32,23,.1)}
.blog-card-img{height:160px;overflow:hidden;background:#2a2418}
.blog-card-img img{width:100%;height:100%;object-fit:cover}
.blog-card-body{padding:18px 20px}
.blog-card-body h3{margin:0 0 8px;font-size:var(--heading-h3);line-height:1.4}
.blog-card-body h3 a{color:#1a2e22;text-decoration:none}
.blog-card-body h3 a:hover{color:var(--green-700)}
.blog-card-body p{font-size:var(--text-base);line-height:var(--leading-relaxed);color:#6b7a6e;margin:0}
@media(max-width:992px){
  .info-layout{grid-template-columns:1fr}
  .info-sidebar{position:static}
  .info-place-grid,.info-split,.info-about-lead,.info-photo-grid,.info-media-row,.info-dest-grid,.sitemap-grid,.blog-grid{grid-template-columns:1fr}
}

.tabels-card {
    border-radius: .25rem;
    border-width: 1px;
    border-color: hsl(var(--border));
    background-color: hsl(var(--card));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
.gap-4 {
    gap: 1rem;
}
.py-2\.5 {
    padding-top: .625rem;
    padding-bottom: .625rem;
}
.bg-primary\/10 {
    background-color: hsl(156deg 11.63% 91.57%);
}
.px-3 {
    padding-left: .75rem;
    padding-right: .75rem;
}
.py-2\.5 {
    padding-top: .625rem;
    padding-bottom: .625rem;
}
.font-medium {
    font-weight: 500;
}
.bg-secondary\/50 {
    background-color: #c7baba55;
}
.mt-2{
    margin-top: 21px;
}
.brand-name img{
        width: 56%;
}