/* ===================================================
   Green Reed Resort by Meenakshi — Stylesheet
=================================================== */

:root{
  --forest: #1f4636;
  --forest-dark: #143024;
  --forest-light: #2d6b50;
  --gold: #c9a15a;
  --gold-light: #e3c98a;
  --cream: #faf6ec;
  --cream-2: #f2ead7;
  --ink: #22281f;
  --muted: #5c6357;
  --white: #ffffff;
  --shadow: 0 20px 45px -20px rgba(20,48,36,.45);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--ff-head);
  margin:0 0 .5em;
  color:var(--forest-dark);
  line-height:1.15;
  font-weight:700;
}
p{ margin:0 0 1em; color:var(--muted); }
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.section{ padding:96px 0; }
.section-tight{ padding:64px 0; }
.section-alt{ background:var(--cream-2); }
.section-dark{ background:var(--forest-dark); color:var(--cream); }
.section-dark p{ color:#cfe0d5; }
.section-dark h2, .section-dark h3{ color:var(--white); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:28px; height:2px;
  background:var(--gold);
  display:inline-block;
}
.section-head{ max-width:700px; margin:0 0 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); }
.section-head p{ font-size:17px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  letter-spacing:.02em;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--forest-dark);
  box-shadow:0 14px 30px -12px rgba(201,161,90,.7);
}
.btn-primary:hover{ box-shadow:0 18px 36px -12px rgba(201,161,90,.85); }
.btn-outline{
  border-color:rgba(255,255,255,.6);
  color:var(--white);
  background:rgba(255,255,255,.05);
}
.btn-outline:hover{ background:rgba(255,255,255,.15); }
.btn-forest{
  background:var(--forest);
  color:var(--white);
}
.btn-forest:hover{ background:var(--forest-light); }
.btn-sm{ padding:10px 20px; font-size:13px; }
.btn-block{ width:100%; }

/* ===== Header ===== */
.site-header{
  position:fixed; top:0; left:0; right:0;
  z-index:900;
  padding:18px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled{
  background:rgba(20,48,36,.96);
  backdrop-filter:blur(6px);
  padding:10px 0;
  box-shadow:0 10px 30px -18px rgba(0,0,0,.5);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{ display:flex; align-items:center; gap:12px; color:var(--white); }
.brand-mark{
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-head); font-weight:700; color:var(--forest-dark);
  font-size:20px; flex:none;
}
.brand-logo{
  background:none;
  object-fit:contain;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{ font-family:var(--ff-head); font-size:19px; letter-spacing:.02em; }
.brand-text span{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-light); }

.nav-links{
  display:flex; align-items:center; gap:30px;
}
.nav-links a{
  color:rgba(255,255,255,.88);
  font-size:14.5px; font-weight:500;
  position:relative;
  padding:4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-2px;
  width:0; height:2px; background:var(--gold);
  transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .phone-chip{
  display:flex; align-items:center; gap:8px;
  color:var(--white); font-size:13.5px; font-weight:500;
}
.header-cta .phone-chip svg{ flex:none; }

.nav-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:none;
  color:var(--white);
  align-items:center; justify-content:center;
  cursor:pointer;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  color:var(--white);
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  z-index:0;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,32,25,.55) 0%, rgba(15,32,25,.55) 40%, rgba(12,26,20,.92) 100%);
}
.hero .container{ position:relative; z-index:2; padding-top:120px; padding-bottom:80px; min-width:0; width:100%; }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.35);
  padding:8px 18px;
  border-radius:999px;
  font-size:13px; letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:26px;
  color:var(--gold-light);
  backdrop-filter:blur(4px);
  /* inline-flex sizes to its content's natural (unwrapped) width by
     default — cap it so long badge text can't force the page wider than
     the viewport on narrow phones. */
  max-width:100%;
  white-space:normal;
}
.hero h1{
  color:var(--white);
  font-size:clamp(38px,6vw,68px);
  max-width:820px;
  margin-bottom:20px;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-light);
}
.hero-sub{
  font-size:18px;
  max-width:560px;
  color:rgba(255,255,255,.88);
  margin-bottom:38px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }
.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:0;
  border-top:1px solid rgba(255,255,255,.22);
  padding-top:30px;
  max-width:760px;
}
.hero-stats .stat{
  flex:1 1 160px;
  padding-right:28px;
}
.hero-stats .stat strong{
  display:block;
  font-family:var(--ff-head);
  font-size:30px;
  color:var(--gold-light);
}
.hero-stats .stat span{
  font-size:13px;
  color:rgba(255,255,255,.78);
  letter-spacing:.03em;
}
.scroll-cue{
  position:absolute; bottom:26px; left:50%; transform:translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.75);
  font-size:11px; letter-spacing:.16em; text-transform:uppercase;
}
.scroll-cue .dot{
  width:6px; height:6px; border-radius:50%; background:var(--gold-light);
  animation:bob 1.8s ease-in-out infinite;
}
@keyframes bob{ 0%,100%{ transform:translateY(0); opacity:1;} 50%{ transform:translateY(10px); opacity:.3;} }

/* ===== About ===== */
.about-grid{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:60px;
  align-items:center;
}
.about-media{
  position:relative;
}
.about-media img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  width:100%; height:460px; object-fit:cover;
}
.about-media .badge-card{
  position:absolute;
  bottom:-26px; left:-26px;
  background:var(--white);
  border-radius:var(--radius-sm);
  padding:18px 22px;
  box-shadow:var(--shadow);
  display:flex; align-items:center; gap:14px;
}
.about-media .badge-card .num{
  font-family:var(--ff-head);
  font-size:30px; color:var(--forest);
}
.about-media .badge-card .lab{
  font-size:12.5px; color:var(--muted); max-width:120px; line-height:1.3;
}
.about-copy p{ font-size:16px; }
.about-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 20px;
  margin:26px 0 32px;
}
.about-list li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px; color:var(--ink);
}
.about-list li svg{ flex:none; margin-top:3px; color:var(--gold); }

/* ===== Rooms ===== */
.room-tabs{
  display:flex; gap:10px; margin-bottom:40px; flex-wrap:wrap;
}
.room-tab{
  padding:10px 20px;
  border-radius:999px;
  border:1px solid rgba(31,70,54,.25);
  background:var(--white);
  font-size:13.5px; font-weight:600;
  cursor:pointer;
  color:var(--forest);
  transition:all .2s ease;
}
.room-tab.active, .room-tab:hover{
  background:var(--forest);
  color:var(--white);
  border-color:var(--forest);
}
.room-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.room-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 16px 34px -22px rgba(20,48,36,.35);
  display:flex; flex-direction:column;
  transition:transform .3s ease, box-shadow .3s ease;
}
.room-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }
.room-card .room-media{
  position:relative; height:230px; overflow:hidden; cursor:pointer;
}
.room-card .room-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.room-card:hover .room-media img{ transform:scale(1.08); }
.room-tag{
  position:absolute; top:14px; left:14px;
  background:rgba(20,48,36,.85);
  color:var(--gold-light);
  font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 12px; border-radius:999px;
}
.view-photos{
  position:absolute; bottom:14px; left:14px;
  background:rgba(255,255,255,.94);
  color:var(--forest-dark);
  font-size:12px; font-weight:600;
  padding:7px 13px; border-radius:999px;
  display:inline-flex; align-items:center; gap:6px;
  box-shadow:0 8px 18px -8px rgba(0,0,0,.4);
  transition:transform .25s ease, background .25s ease;
}
.room-card .room-media:hover .view-photos{
  transform:translateY(-2px);
  background:var(--gold-light);
}
.room-body{ padding:26px 24px 28px; display:flex; flex-direction:column; flex:1; }
.room-body h3{ font-size:22px; margin-bottom:8px; }
.room-body p{ font-size:14.5px; flex:1; }
.room-amenities{
  display:flex; flex-wrap:wrap; gap:8px;
  margin:16px 0 22px;
}
.room-amenities span{
  font-size:12px;
  background:var(--cream-2);
  color:var(--forest);
  padding:6px 11px;
  border-radius:999px;
  font-weight:500;
}
.room-actions{ display:flex; gap:10px; }

.room-note{
  margin-top:36px;
  font-size:13.5px;
  color:var(--muted);
  text-align:center;
}

/* ===== Kaziranga ===== */
.kaz-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.kaz-copy .fact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:30px;
}
.fact-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius-sm);
  padding:20px;
}
.fact-card strong{
  display:block; font-family:var(--ff-head);
  font-size:24px; color:var(--gold-light); margin-bottom:4px;
}
.fact-card span{ font-size:13px; color:#cfe0d5; }

.kaz-visual{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(155deg,#2d6b50,#123424);
  padding:44px 34px;
  min-height:420px;
  display:flex; flex-direction:column; justify-content:center;
  border:1px solid rgba(255,255,255,.12);
}
.kaz-visual .rhino-icon{ width:110px; height:auto; margin-bottom:26px; opacity:.95; }
.kaz-visual h4{ color:var(--white); font-size:22px; margin-bottom:12px; }
.kaz-visual p{ color:#d7e6dc; font-size:14.5px; margin-bottom:0; }
.kaz-visual .tag-strip{
  display:flex; flex-wrap:wrap; gap:8px; margin-top:22px;
}
.kaz-visual .tag-strip span{
  font-size:12px; padding:6px 12px; border-radius:999px;
  background:rgba(255,255,255,.1); color:var(--gold-light);
  border:1px solid rgba(255,255,255,.18);
}

/* ===== Safaris ===== */
.safari-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}
.safari-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:36px 32px;
  box-shadow:0 16px 34px -22px rgba(20,48,36,.3);
  position:relative;
  overflow:hidden;
}
.safari-card .icon-badge{
  width:58px; height:58px;
  border-radius:50%;
  background:var(--cream-2);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  color:var(--forest);
}
.safari-card h3{ font-size:23px; margin-bottom:10px; }
.safari-card ul{ margin:18px 0 24px; display:flex; flex-direction:column; gap:10px; }
.safari-card ul li{
  font-size:14.5px; color:var(--ink);
  display:flex; gap:10px; align-items:flex-start;
}
.safari-card ul li svg{ flex:none; margin-top:3px; color:var(--gold); }
.safari-note{
  margin-top:34px;
  background:var(--cream-2);
  border-radius:var(--radius-sm);
  padding:24px 28px;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
.safari-note p{ margin:0; font-size:14.5px; color:var(--ink); max-width:520px; }

/* ===== Gallery ===== */
.gallery-tabs{
  display:flex; gap:10px; margin-bottom:34px; flex-wrap:wrap;
  justify-content:center;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:190px;
  gap:14px;
}
.gallery-item{
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
}
.gallery-item.tall{ grid-row:span 2; }
.gallery-item.wide{ grid-column:span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease;
}
.gallery-item:hover img{ transform:scale(1.1); }
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(10,25,18,.55) 100%);
  opacity:0; transition:opacity .3s ease;
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item .zoom-hint{
  position:absolute; right:12px; bottom:12px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center;
  color:var(--forest-dark);
  opacity:0; transform:translateY(6px);
  transition:all .3s ease;
}
.gallery-item:hover .zoom-hint{ opacity:1; transform:translateY(0); }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:1200;
  background:rgba(10,20,15,.94);
  display:none; align-items:center; justify-content:center;
  padding:40px;
}
.lightbox.open{ display:flex; }
.lightbox-stage{
  display:flex; flex-direction:column; align-items:center; gap:14px;
  max-width:min(920px,90vw);
}
.lightbox img{
  max-width:min(920px,90vw); max-height:78vh;
  border-radius:10px;
  box-shadow:0 30px 60px rgba(0,0,0,.5);
}
.lightbox-counter{
  color:rgba(255,255,255,.85);
  font-size:13px; letter-spacing:.06em;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  padding:5px 14px; border-radius:999px;
  min-height:16px;
}
.lightbox-close, .lightbox-nav{
  position:absolute;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3);
  color:var(--white);
  border-radius:50%;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close{ top:26px; right:26px; }
.lightbox-nav.prev{ left:26px; top:50%; transform:translateY(-50%); }
.lightbox-nav.next{ right:26px; top:50%; transform:translateY(-50%); }
.lightbox-nav:hover, .lightbox-close:hover{ background:rgba(255,255,255,.25); }

/* ===== Testimonial / Trust strip ===== */
.trust-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:24px;
  text-align:center;
}
.trust-strip .item strong{
  display:block; font-family:var(--ff-head); font-size:19px; color:var(--forest-dark); margin-bottom:6px;
}
.trust-strip .item span{ font-size:13.5px; color:var(--muted); }

/* ===== Location ===== */
.location-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
/* Without this, the map iframe's default intrinsic width can force these
   grid tracks (and the page) wider than the viewport on narrow phones. */
.location-info, .location-map{ min-width:0; }
.location-map iframe{ max-width:100%; }
.location-info{
  background:var(--forest-dark);
  color:var(--white);
  padding:52px 46px;
  display:flex; flex-direction:column; justify-content:center;
}
.location-info h3{ color:var(--white); font-size:26px; }
.location-info p{ color:#cfe0d5; }
.loc-rows{ margin-top:26px; display:flex; flex-direction:column; gap:20px; }
.loc-row{ display:flex; gap:16px; align-items:flex-start; }
.loc-row > div{ min-width:0; overflow-wrap:break-word; }
.loc-row .ic{
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); flex:none;
}
.loc-row strong{ display:block; color:var(--white); font-size:14.5px; margin-bottom:2px; }
.loc-row span, .loc-row a{ font-size:14px; color:#cfe0d5; }
.location-map iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; }

/* ===== Contact ===== */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.contact-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 28px;
  text-align:center;
  box-shadow:0 16px 34px -22px rgba(20,48,36,.3);
  transition:transform .3s ease;
}
.contact-card:hover{ transform:translateY(-6px); }
.contact-card .ic{
  width:60px; height:60px; border-radius:50%;
  background:var(--cream-2); color:var(--forest);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px;
}
.contact-card h4{ font-size:18px; margin-bottom:6px; }
.contact-card p{ font-size:14.5px; margin-bottom:18px; }
.contact-card a.link{ color:var(--forest); font-weight:600; font-size:14.5px; overflow-wrap:anywhere; }

.cta-banner{
  margin-top:70px;
  background:linear-gradient(135deg,var(--forest),var(--forest-dark));
  border-radius:var(--radius);
  padding:52px 48px;
  display:flex; align-items:center; justify-content:space-between;
  gap:30px; flex-wrap:wrap;
  color:var(--white);
}
.cta-banner h3{ color:var(--white); font-size:26px; margin-bottom:8px; }
.cta-banner p{ color:#cfe0d5; margin:0; max-width:420px; }

/* ===== Footer ===== */
.site-footer{
  background:var(--forest-dark);
  color:#cfe0d5;
  padding:70px 0 30px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color:#a9c1b3; font-size:14px; max-width:320px; }
.footer-col h5{
  color:var(--white); font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col span{ font-size:14px; color:#a9c1b3; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  padding-top:26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:#7f9a8b;
}

/* WhatsApp floating button */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:800;
  width:60px; height:60px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.6);
  transition:transform .25s ease;
}
.wa-float:hover{ transform:scale(1.08); }

/* ===== Tour Packages ===== */
.packages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.packages-loading, .packages-empty{
  grid-column:1/-1;
  text-align:center;
  padding:50px 20px;
  color:#cfe0d5;
  font-size:15px;
}
.package-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:linear-gradient(160deg,var(--forest-light) 0%,var(--forest-dark) 78%);
  border:1px solid rgba(227,201,138,.18);
  border-radius:var(--radius);
  padding:34px 30px 30px;
  cursor:pointer;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  box-shadow:0 16px 34px -20px rgba(0,0,0,.55);
}
.package-card:hover, .package-card:focus-visible{
  transform:translateY(-7px);
  box-shadow:0 28px 55px -18px rgba(0,0,0,.6);
  border-color:rgba(227,201,138,.4);
  outline:none;
}
.package-decor{
  position:absolute;
  top:-18px; right:-18px;
  width:150px; height:150px;
  opacity:.1;
  color:var(--gold-light);
  pointer-events:none;
}
.package-duration-badge{
  display:inline-flex;
  align-self:flex-start;
  background:var(--gold);
  color:var(--forest-dark);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.03em;
  padding:7px 16px;
  border-radius:999px;
  margin-bottom:20px;
}
.package-card h3{
  color:var(--white);
  font-size:22px;
  margin-bottom:8px;
  position:relative; z-index:1;
}
.package-tagline{
  color:var(--gold-light);
  font-size:13.5px;
  font-style:italic;
  margin-bottom:18px;
  position:relative; z-index:1;
}
.package-highlights{
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-bottom:24px;
  position:relative; z-index:1;
}
.package-highlights li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  font-size:13.8px;
  color:#dfe9e2;
}
.package-highlights li svg{ flex:none; margin-top:3px; color:var(--gold); }
.package-price{
  font-size:13px;
  color:#b8ccc0;
  margin-top:auto;
  margin-bottom:16px;
  position:relative; z-index:1;
}
.package-card .btn-view-itin{
  align-self:flex-start;
  position:relative; z-index:1;
  background:var(--gold);
  color:var(--forest-dark);
  border:none;
  border-radius:999px;
  padding:11px 22px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:background .2s ease;
}
.package-card .btn-view-itin:hover{ background:var(--gold-light); }
.packages-note{
  text-align:center;
  margin:36px auto 0;
  max-width:560px;
  font-size:14px;
  color:#b8ccc0;
}

/* Itinerary viewer — view-only, non-downloadable */
.itin-modal{
  position:fixed; inset:0; z-index:1300;
  display:none;
  align-items:flex-start; justify-content:center;
  padding:50px 18px;
  overflow-y:auto;
}
.itin-modal.open{ display:flex; }
.itin-backdrop{
  position:fixed; inset:0;
  background:rgba(10,20,15,.72);
}
.itin-panel{
  position:relative;
  background:var(--cream);
  border-radius:var(--radius);
  max-width:760px;
  width:100%;
  margin:auto;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}
.itin-close{
  position:absolute;
  top:16px; right:16px;
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(20,48,36,.08);
  border:none;
  cursor:pointer;
  font-size:16px;
  color:var(--forest-dark);
  z-index:2;
  transition:background .2s ease;
}
.itin-close:hover{ background:rgba(20,48,36,.16); }
.itin-panel-inner{
  padding:46px 42px 40px;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
}
.itin-badge{
  display:inline-flex;
  background:var(--forest);
  color:var(--cream);
  font-weight:700;
  font-size:12.5px;
  padding:6px 15px;
  border-radius:999px;
  margin-bottom:16px;
}
.itin-panel-inner h2{ font-size:clamp(24px,3.2vw,30px); margin-bottom:6px; }
.itin-tagline{ color:var(--forest-light); font-style:italic; margin-bottom:18px; font-size:14.5px; }
.itin-summary{ font-size:15px; margin-bottom:30px; }
.itin-section-title{
  font-family:var(--ff-head);
  font-weight:700;
  color:var(--forest-dark);
  font-size:17px;
  margin:0 0 16px;
  padding-top:8px;
  border-top:1px solid var(--border,#e3dcc9);
}
.itin-day{
  margin-bottom:20px;
  padding-left:18px;
  border-left:3px solid var(--gold);
}
.itin-day-title{ font-size:15.5px; font-weight:700; color:var(--forest-dark); margin-bottom:8px; }
.itin-day-body p{ font-size:14.3px; margin-bottom:10px; color:var(--ink); }
.itin-day-body ul{ margin:0 0 10px; display:flex; flex-direction:column; gap:6px; }
.itin-day-body ul li{
  font-size:14.3px; color:var(--ink);
  display:flex; gap:8px; align-items:flex-start;
  padding-left:2px;
}
.itin-day-body ul li::before{
  content:"";
  width:6px; height:6px; border-radius:50%;
  background:var(--gold);
  margin-top:7px; flex:none;
}
.itin-incl-excl{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  margin:24px 0 8px;
}
.itin-incl-excl h4{ font-size:14px; margin-bottom:12px; color:var(--forest-dark); }
.itin-incl-excl ul{ display:flex; flex-direction:column; gap:8px; }
.itin-incl-excl li{ font-size:13.5px; display:flex; gap:8px; align-items:flex-start; color:var(--ink); }
.itin-incl-excl li svg{ flex:none; margin-top:2px; }
.itin-incl li svg{ color:#2d6b50; }
.itin-excl li svg{ color:#b3413a; }
.itin-price-banner{
  margin-top:26px;
  background:var(--cream-2);
  border-radius:var(--radius-sm);
  padding:16px 20px;
  font-weight:600;
  color:var(--forest-dark);
  text-align:center;
}
.itin-cta{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.itin-cta a{
  flex:1 1 150px;
  text-align:center;
  padding:13px 16px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.itin-cta .cta-call{ background:var(--forest); color:#fff; }
.itin-cta .cta-call:hover{ background:var(--forest-light); }
.itin-cta .cta-whatsapp{ background:#25D366; color:#fff; }
.itin-cta .cta-whatsapp:hover{ opacity:.92; }
.itin-cta .cta-email{ background:var(--cream-2); color:var(--forest-dark); border:1px solid #e3dcc9; }
.itin-cta .cta-email:hover{ border-color:var(--forest-light); }
.itin-view-only-note{
  margin-top:18px;
  font-size:12px;
  color:#8a8f83;
  text-align:center;
}

/* Prevent the itinerary from printing / being captured via print-to-PDF */
@media print{
  .itin-modal{ display:none !important; }
}

/* ===== Responsive ===== */
@media (max-width:1024px){
  .about-grid, .kaz-wrap, .location-wrap, .safari-grid{ grid-template-columns:1fr; }
  .room-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .trust-strip{ grid-template-columns:repeat(2,1fr); gap:24px 30px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .packages-grid{ grid-template-columns:repeat(2,1fr); }
}
/* Header switches to the hamburger menu earlier than other tablet reflows —
   with 8 nav links, the full nav bar + phone number + Book Now button
   genuinely don't fit between ~861px and ~1070px (this includes 1024px
   iPad-landscape), so it needs its own, wider breakpoint. */
@media (max-width:1100px){
  .nav-links, .header-cta .phone-chip{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.nav-open .nav-links{
    display:flex; position:fixed; inset:0 0 0 auto; width:78%; height:100vh;
    background:var(--forest-dark); flex-direction:column; padding:110px 30px;
    gap:26px; align-items:flex-start;
  }
}
@media (max-width:860px){
  .contact-grid{ grid-template-columns:1fr; }
  .room-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; }
  .footer-grid{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .packages-grid{ grid-template-columns:1fr; }
  .itin-panel-inner{ padding:36px 22px 30px; }
  .itin-incl-excl{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .section{ padding:64px 0; }
  .hero-stats .stat{ flex:1 1 46%; padding-right:14px; margin-bottom:16px; }
  .about-media .badge-card{ left:12px; bottom:-20px; padding:14px 16px; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  /* Smaller, closer-to-corner floating button so it overlaps less content
     while scrolling on small screens. */
  .wa-float{ width:50px; height:50px; bottom:16px; right:16px; }
  .wa-float svg{ width:24px; height:24px; }
  .location-info{ padding:36px 24px; }
  /* "Book Now — Reserve Your Room" is long enough that .btn's global
     white-space:nowrap forces it wider than the smallest phone screens —
     let it wrap to two lines there instead of overflowing. */
  .hero-actions .btn{ white-space:normal; text-align:center; }
  /* Reclaim a little width in the header row so Book Now + the hamburger
     button don't overflow on the narrowest phones (320px and similar). */
  .brand{ gap:8px; }
  .header-cta{ gap:8px; }
  .header-cta .btn-sm{ padding:9px 14px; font-size:12.5px; }
  .nav-toggle{ width:38px; height:38px; }
}
