/* ============================================================
   EXPLORE RISHIKESH — Conversion-Optimised Travel Website
   Header stack: promo-bar(fixed,top:0) → navbar(fixed,top:promo-h) → trust-bar(static)
   No overlaps. Body padding-top = promo-h + nav-h.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --teal-deep:  #0d3b3e;
  --teal-mid:   #155f62;
  --teal-light: #1e8a8f;
  --teal-pale:  #d4eeef;
  --gold:       #c8973a;
  --gold-light: #e8b96a;
  --cream:      #faf7f2;
  --warm-white: #f5f0e8;
  --text-dark:  #1a2e2f;
  --text-mid:   #4a6567;
  --text-light: #7a9699;
  --shadow-soft: 0 8px 40px rgba(13,59,62,.12);
  --shadow-card: 0 4px 24px rgba(13,59,62,.10);
  --radius:     16px;
  --radius-sm:  10px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
  /* Header heights — single source of truth */
  --promo-h: 38px;
  --nav-h:   68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  /* Push ALL page content below the two fixed header elements */
  padding-top: calc(var(--promo-h) + var(--nav-h));
}
img { display: block; width: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); font-weight: 300; font-size: .95rem; }

/* ── Utility ────────────────────────────────────────────────── */
.container      { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center    { text-align: center; }
.section-label  {
  display: inline-block; font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { color: var(--teal-deep); margin-bottom: 14px; }
.section-sub   { max-width: 560px; margin: 0 auto 48px; }
.divider       { width: 52px; height: 3px; background: linear-gradient(90deg,var(--gold),var(--teal-light)); border-radius: 2px; margin: 16px 0 24px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: .86rem; font-weight: 500; letter-spacing: .03em;
  cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
}
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 4px 18px rgba(200,151,58,.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--teal-deep); border: 1.5px solid var(--teal-light); }
.btn-outline:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn-white  { background: #fff; color: var(--teal-deep); }
.btn-white:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 100px;
  background: var(--gold); color: #fff; font-size: .85rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; transition: var(--transition); text-decoration: none; border: none; cursor: pointer;
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 100px;
  background: #25D366; color: #fff; font-size: .85rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; transition: var(--transition); text-decoration: none; border: none; cursor: pointer;
}
.btn-wa:hover { background: #20c25a; transform: translateY(-2px); }
.btn-enquire {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 100px;
  background: var(--teal-deep); color: #fff; font-size: .84rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; transition: var(--transition); border: none; cursor: pointer; text-decoration: none;
}
.btn-enquire:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-pulse { animation: pulseCTA 2.2s infinite; }
@keyframes pulseCTA {
  0%,100% { box-shadow: 0 4px 18px rgba(200,151,58,.35); }
  50%      { box-shadow: 0 4px 28px rgba(200,151,58,.65), 0 0 0 7px rgba(200,151,58,.1); }
}
.fb-cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 100px;
  background: #1877F2; color: #fff; font-size: .85rem; font-weight: 600;
  font-family: 'DM Sans', sans-serif; transition: var(--transition); text-decoration: none;
}
.fb-cta:hover { background: #1565d8; transform: translateY(-2px); }

/* =============================================================
   FIXED HEADER — Promo Bar + Navbar (no overlap)
   ============================================================= */

/* ── 1. Promo Bar: fixed at very top ── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--promo-h);
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 500;
  text-align: center; padding: 0 16px; gap: 6px;
}
.promo-bar a { color: #fff; text-decoration: underline; font-weight: 700; }
.promo-bar a:hover { opacity: .85; }

/* ── 2. Navbar: fixed directly below promo bar ── */
.navbar {
  position: fixed;
  top: var(--promo-h);   /* ← key fix: sits BELOW promo bar */
  left: 0; right: 0;
  z-index: 1050;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: #0d3b3e;
  transition: background .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(13,59,62,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
/* Logo image in navbar */
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,250,.9));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 10px 28px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.8);
}
.nav-logo-img {
  height: 60px; width: auto;
  object-fit: contain; display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.18)) saturate(1.05) contrast(1.04);
}
/* Fallback text (shown only if image fails) */
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: #fff; letter-spacing: .02em; display: none;
}
.nav-logo-text span { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: rgba(255,255,255,.88); font-size: .82rem; font-weight: 400;
  letter-spacing: .04em; position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold-light); transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.nav-cta {
  padding: 9px 20px; background: var(--gold); border-radius: 100px; color: #fff;
}
.nav-links a.nav-cta:hover  { background: var(--gold-light); }
.nav-links a.nav-cta::after { display: none; }
/* Desktop: hide mobile-only drawer elements */
.nav-drawer-header { display: none; }
.nav-close-btn     { display: none; }
.nav-footer        { display: none; }
.nav-backdrop      { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 3. Trust Bar: static (scrolls with page), directly in flow ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e8e2d8;
  padding: 10px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 500; color: var(--teal-mid); white-space: nowrap;
}
.trust-item i { color: var(--gold); font-size: .8rem; }
.trust-item a { color: var(--teal-mid); font-weight: 600; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1591990219521-0a0dd2f23e5b?w=1600&q=80') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,59,62,.83) 0%, rgba(13,59,62,.45) 55%, rgba(13,59,62,.2) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; padding: 48px;
}
.hero-text-col { flex: 1; min-width: 280px; max-width: 540px; }
.hero-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 16px;
  animation: fadeUp .7s .2s both;
}
.hero h1 { color: #fff; font-weight: 300; margin-bottom: 18px; animation: fadeUp .8s .35s both; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 28px; font-weight: 300; animation: fadeUp .8s .5s both; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; animation: fadeUp .8s .65s both; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .8s both; }
.hero-trust span { color: rgba(255,255,255,.78); font-size: .78rem; display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: #4ade80; }

/* Hero Enquiry Box */
.hero-form-col { flex-shrink: 0; width: 350px; max-width: 100%; animation: fadeUp .9s .45s both; }
.hero-enquiry-box {
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-radius: var(--radius); padding: 28px 26px;
  box-shadow: 0 12px 48px rgba(0,0,0,.22);
}
.hero-enquiry-box h4 { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; color: var(--teal-deep); margin-bottom: 4px; }
.hero-enquiry-box > p { font-size: .81rem; margin-bottom: 16px; }
.heq-input, .heq-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e0dbd0; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--text-dark);
  background: var(--cream); outline: none; transition: var(--transition);
  margin-bottom: 9px; display: block;
}
.heq-input:focus, .heq-select:focus { border-color: var(--teal-light); background: #fff; box-shadow: 0 0 0 3px rgba(30,138,143,.1); }
.heq-submit {
  width: 100%; padding: 13px; background: var(--gold); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px;
}
.heq-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.heq-footer {
  text-align: center; margin-top: 10px; font-size: .73rem; color: var(--text-light);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.heq-footer a { color: var(--teal-mid); font-weight: 600; }
.heq-footer i { color: #25D366; }

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar { background: var(--teal-deep); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat-item { padding: 10px 16px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond',serif; font-size: 2.4rem; font-weight: 600; color: var(--gold-light); }
.stat-label  { font-size: .74rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }

/* =============================================================
   PAGE HERO (inner pages — no fixed positioning needed)
   ============================================================= */
.page-hero { height: 360px; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,59,62,.9) 0%, rgba(13,59,62,.35) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 44px; color: #fff; width: 100%;
}
.page-hero-content h1 { color: #fff; font-size: clamp(2rem,4vw,3.5rem); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* =============================================================
   CARD GRIDS
   ============================================================= */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }

.activity-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: var(--transition); }
.activity-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.activity-card-img { height: 210px; overflow: hidden; position: relative; }
.activity-card-img img { height: 100%; transition: transform .5s ease; }
.activity-card:hover .activity-card-img img { transform: scale(1.07); }
.activity-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #fff; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.activity-card-body { padding: 22px; }
.activity-card-body h3 { margin-bottom: 7px; font-size: 1.2rem; }
.activity-card-body p  { font-size: .85rem; margin-bottom: 14px; }
.activity-meta { display: flex; gap: 14px; font-size: .76rem; color: var(--text-light); margin-bottom: 14px; }
.activity-meta span { display: flex; align-items: center; gap: 4px; }

.package-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: var(--transition); }
.package-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.pkg-img { height: 225px; overflow: hidden; position: relative; }
.pkg-img img { height: 100%; transition: transform .5s ease; }
.package-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 14px; right: 14px; background: var(--teal-deep); color: #fff; font-size: .74rem; padding: 5px 13px; border-radius: 100px; }
.pkg-body { padding: 22px; }
.pkg-body h3 { margin-bottom: 6px; }
.pkg-meta { display: flex; align-items: center; justify-content: space-between; margin: 12px 0; }
.pkg-duration { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.pkg-price { font-family: 'Cormorant Garamond',serif; font-size: 1.45rem; font-weight: 600; color: var(--gold); }
.pkg-price span { font-size: .76rem; font-family: 'DM Sans',sans-serif; color: var(--text-light); }
.pkg-body p { font-size: .85rem; margin-bottom: 14px; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.pkg-tag { background: var(--teal-pale); color: var(--teal-mid); font-size: .7rem; padding: 4px 11px; border-radius: 100px; }
.pkg-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }

.resort-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-card); transition: var(--transition); }
.resort-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.resort-img { height: 235px; overflow: hidden; position: relative; }
.resort-img img { height: 100%; transition: transform .5s ease; }
.resort-card:hover .resort-img img { transform: scale(1.06); }
.resort-stars { position: absolute; bottom: 12px; left: 14px; color: var(--gold); font-size: .88rem; }
.resort-category { position: absolute; top: 12px; left: 14px; background: rgba(13,59,62,.85); color: #fff; font-size: .68rem; letter-spacing: .08em; padding: 5px 12px; border-radius: 100px; }
.resort-body { padding: 22px; }
.resort-body h3 { margin-bottom: 7px; }
.resort-body p  { font-size: .85rem; margin-bottom: 14px; }
.resort-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.resort-amenity { background: var(--teal-pale); color: var(--teal-mid); font-size: .69rem; padding: 3px 10px; border-radius: 100px; }
.resort-price { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--teal-pale); gap: 10px; flex-wrap: wrap; }
.price-tag { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; color: var(--teal-deep); font-weight: 600; }
.price-tag span { font-size: .75rem; font-family: 'DM Sans',sans-serif; color: var(--text-light); }

.transport-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-card); transition: var(--transition);
  display: flex; flex-direction: column; gap: 12px;
  border-bottom: 3px solid transparent;
}
.transport-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-bottom-color: var(--gold); }
.transport-icon { width: 54px; height: 54px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.transport-card h3 { font-size: 1.18rem; }
.transport-price { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; color: var(--gold); font-weight: 600; }

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius); height: 460px; overflow: hidden; box-shadow: var(--shadow-soft); }
.about-img-float { position: absolute; bottom: -26px; right: -26px; width: 170px; height: 170px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 5px solid var(--warm-white); }
.about-badge { position: absolute; top: 28px; left: -18px; background: var(--gold); color: #fff; border-radius: var(--radius-sm); padding: 14px 18px; text-align: center; box-shadow: 0 8px 24px rgba(200,151,58,.4); }
.about-badge strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 1.9rem; font-weight: 600; }
.about-badge span { font-size: .68rem; letter-spacing: .06em; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin: 26px 0; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-icon { width: 38px; height: 38px; background: var(--teal-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

/* =============================================================
   CONVERSION ELEMENTS
   ============================================================= */
.enquire-strip { background: linear-gradient(135deg,var(--teal-deep),var(--teal-mid)); padding: 24px 0; }
.enquire-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.enquire-strip h4 { color: #fff; font-size: 1.1rem; font-family: 'Cormorant Garamond',serif; }
.enquire-strip p  { color: rgba(255,255,255,.72); font-size: .83rem; }
.enquire-strip-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.section-cta-banner {
  background: var(--teal-pale); border-radius: var(--radius);
  padding: 26px 30px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 40px;
}
.section-cta-banner h4 { font-size: 1.12rem; color: var(--teal-deep); margin-bottom: 3px; }
.section-cta-banner p  { font-size: .84rem; max-width: 450px; }
.section-cta-banner-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,30,32,.78); backdrop-filter: blur(6px);
  z-index: 9999; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius);
  padding: 34px 30px; width: 100%; max-width: 490px;
  max-height: 90vh; overflow-y: auto;
  position: relative; animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(16px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.modal-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-mid); line-height: 1; }
.modal-box h3 { margin-bottom: 5px; }
.modal-box > p { margin-bottom: 20px; font-size: .85rem; }
.modal-box .form-group { margin-bottom: 13px; }
.modal-box .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: .82rem; font-weight: 500; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid #e8e2d8; border-radius: var(--radius-sm);
  font-family: 'DM Sans',sans-serif; font-size: .87rem; color: var(--text-dark);
  background: var(--cream); outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal-light); background: #fff; box-shadow: 0 0 0 3px rgba(30,138,143,.1); }
.form-group textarea { height: 115px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Floating WhatsApp */
.float-whatsapp { position: fixed; bottom: 24px; right: 24px; z-index: 9000; }
.float-whatsapp-btn {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,.5); cursor: pointer;
  transition: var(--transition); animation: pulseWA 2.5s infinite; text-decoration: none;
}
.float-whatsapp-btn:hover { transform: scale(1.1); }
.float-whatsapp-btn i { color: #fff; font-size: 1.5rem; }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 5px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 5px 28px rgba(37,211,102,.8), 0 0 0 9px rgba(37,211,102,.1); }
}

/* Sticky Mobile Call Bar */
.sticky-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8999; box-shadow: 0 -3px 14px rgba(0,0,0,.2);
}
.scb-inner { display: grid; grid-template-columns: 1fr 1fr; height: 54px; }
.scb-btn { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .86rem; font-weight: 600; letter-spacing: .03em; cursor: pointer; text-decoration: none; transition: var(--transition); font-family: 'DM Sans',sans-serif; }
.scb-call { background: var(--gold); color: #fff; }
.scb-call:hover { background: var(--gold-light); }
.scb-wa   { background: #25D366; color: #fff; }
.scb-wa:hover { background: #20c25a; }

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-section {
  background: url('https://images.unsplash.com/photo-1502786129293-79981df4e689?w=1600&q=80') center/cover;
  position: relative; padding: 100px 0;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(13,59,62,.9),rgba(13,59,62,.7)); }
.cta-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.cta-content h2 { color: #fff; margin-bottom: 14px; }
.cta-content p  { color: rgba(255,255,255,.75); margin-bottom: 34px; font-size: .96rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials-bg { background: var(--teal-deep); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 26px 22px; backdrop-filter: blur(10px); transition: var(--transition); }
.testi-card:hover { background: rgba(255,255,255,.14); }
.testi-stars { color: var(--gold-light); margin-bottom: 12px; font-size: .87rem; }
.testi-text  { color: rgba(255,255,255,.82); font-size: .87rem; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-light); }
.testi-name { color: #fff; font-weight: 500; font-size: .87rem; }
.testi-loc  { color: rgba(255,255,255,.5); font-size: .73rem; }

/* =============================================================
   WHY US
   ============================================================= */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card { text-align: center; padding: 28px 18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); transition: var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.why-icon { width: 62px; height: 62px; margin: 0 auto 14px; background: linear-gradient(135deg,var(--teal-pale),rgba(200,151,58,.14)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.why-card h4 { color: var(--teal-deep); margin-bottom: 8px; font-size: .98rem; }

/* =============================================================
   GALLERY STRIP
   ============================================================= */
.gallery-strip { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 14px; height: 290px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-item img { height: 100%; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info-card { background: var(--teal-deep); border-radius: var(--radius); padding: 40px 32px; color: #fff; }
.contact-info-card h3 { color: #fff; margin-bottom: 7px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 26px; }
.contact-icon { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.contact-item h4 { color: var(--gold-light); margin-bottom: 3px; font-size: .96rem; }
.contact-item p  { color: rgba(255,255,255,.72); font-size: .86rem; }
.social-links { display: flex; gap: 10px; margin-top: 32px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; transition: var(--transition); cursor: pointer; text-decoration: none; }
.social-link:hover { background: var(--gold); }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow-card); }
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 26px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: var(--text-dark); color: rgba(255,255,255,.75); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: 'Cormorant Garamond',serif; font-size: 1.65rem; color: #fff; margin-bottom: 13px; }
.footer-logo span { color: var(--gold-light); }
.footer-logo img,
.nav-drawer-logo-img {
  display: block;
  padding: 6px 10px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,250,.9));
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.footer-about { font-size: .84rem; line-height: 1.8; margin-bottom: 22px; color: rgba(255,255,255,.52); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition); text-decoration: none; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h5 { color: #fff; font-family: 'DM Sans',sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.52); transition: var(--transition); display: flex; align-items: center; gap: 6px; text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.9); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: .86rem; }
.footer-contact-item p { font-size: .83rem; color: rgba(255,255,255,.58); }
.footer-contact-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .79rem; color: rgba(255,255,255,.32); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.32); transition: var(--transition); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* =============================================================
   VALUES / ABOUT FULL
   ============================================================= */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value-card { padding: 30px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.value-icon { width: 58px; height: 58px; margin: 0 auto 16px; background: linear-gradient(135deg,var(--teal-mid),var(--teal-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; }
.value-card h3 { margin-bottom: 8px; }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal { opacity:0; transform:translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .navbar { padding: 0 28px; }
  .hero-inner { padding: 40px 28px; }
  .page-hero-content { padding: 0 28px 38px; }
  .about-grid, .about-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .cards-grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); padding: 14px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item { height: 165px; }
  .hero-form-col { width: 100%; }
}
@media (max-width: 768px) {
  :root { --promo-h: 32px; --nav-h: 72px; }
  .section-cta-banner-btns { justify-content: center; }
  .section-pad { padding: 56px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 12px; }
  .pkg-btn-row { grid-template-columns: 1fr; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 54px; }
  .float-whatsapp { bottom: 68px; right: 14px; }
  .float-whatsapp-btn { width: 50px; height: 50px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-img-float { display: none; }
  .about-badge { left: 0; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .modal-box { padding: 26px 18px; }
  .hero-enquiry-box { padding: 22px 18px; }
}

/* =============================================================
   PACKAGE DETAIL CARDS — responsive
   ============================================================= */
.pkg-detail-card > div,
.resort-detail > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
@media (max-width: 860px) {
  .pkg-detail-card > div,
  [style*="grid-template-columns: 1fr 1.3fr"],
  [style*="grid-template-columns:1fr 1.3fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="min-height:400px"],
  [style*="min-height: 400px"] {
    min-height: 240px !important;
  }
  [style*="padding:36px 40px"],
  [style*="padding: 36px 40px"],
  [style*="padding:32px 36px"],
  [style*="padding: 32px 36px"] {
    padding: 24px 22px !important;
  }
}

/* =============================================================
   PAGE HERO — proper overlay stacking
   ============================================================= */
.page-hero { position: relative; }
.page-hero > .page-hero-bg { position: absolute; inset: 0; }
.page-hero > .container { position: relative; z-index: 2; }


/* =============================================================
   FAB STACK — replaces old sticky-call-bar + float-whatsapp
   Desktop: two floating buttons bottom-right (WA on top, Call below)
   Mobile: same but positioned above the bottom safe area
   ============================================================= */
.fab-stack {
  position: fixed;
  bottom: 28px; right: 22px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.fab-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  text-decoration: none; transition: all .3s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}
.fab-wa {
  background: #25D366;
  animation: pulseWA 2.5s infinite;
}
.fab-wa:hover { background: #20c25a; transform: scale(1.1); }
.fab-call {
  background: var(--gold);
  animation: pulseCall 2.5s infinite;
  animation-delay: .8s;
}
.fab-call:hover { background: var(--gold-light); transform: scale(1.1); }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 26px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}
@keyframes pulseCall {
  0%,100% { box-shadow: 0 4px 18px rgba(200,151,58,.4); }
  50%      { box-shadow: 0 4px 26px rgba(200,151,58,.7), 0 0 0 8px rgba(200,151,58,.1); }
}

/* Remove old sticky bar / float-whatsapp if somehow still present */
.sticky-call-bar { display: none !important; }
.float-whatsapp  { display: none !important; }

@media (max-width: 768px) {
  .fab-stack { bottom: 18px; right: 14px; }
  .fab-btn   { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* =============================================================
   MOBILE TRUST BAR — keep it lean on small screens
   Only show phone + WhatsApp, hide decorative items
   ============================================================= */
@media (max-width: 600px) {
  .trust-bar { padding: 8px 0; }
  /* Hide rating, price, safety — keep only phone + WA */
  .trust-item:nth-child(1),   /* 100% Safe */
  .trust-item:nth-child(2),   /* 5000+ travellers */
  .trust-item:nth-child(3) {  /* Best Price */
    display: none;
  }
  .trust-bar-inner { gap: 16px; justify-content: center; }
  .trust-item { font-size: .8rem; }
}

/* =============================================================
   MOBILE NAV — slide-in drawer from right
   ============================================================= */

/* Backdrop that dims the page when menu is open */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,28,30,.55);
  backdrop-filter: blur(3px);
  z-index: 1048;
  transition: opacity .3s ease;
  opacity: 0;
}
.nav-backdrop.open { display: block; opacity: 1; }

@media (max-width: 768px) {
  .nav-links {
    display: block !important; /* always in DOM, slide via transform */
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: var(--teal-deep);
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 1049;
    align-items: flex-start;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.mobile-open {
    transform: translateX(0);
  }

  /* Drawer header row — logo text + close button side by side */
  .nav-drawer-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    flex-shrink: 0;
  }
  .nav-drawer-header .nav-drawer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .02em;
  }
  .nav-drawer-header .nav-drawer-logo span { color: var(--gold-light); }

  /* Close button — sits inside the header row, not absolute */
  .nav-close-btn {
    background: rgba(255,255,255,.12);
    border: none; border-radius: 50%;
    width: 36px; height: 36px;
    color: #fff; font-size: 1.1rem;
    cursor: pointer;
    display: flex !important;
    align-items: center; justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
  }
  .nav-close-btn:hover { background: rgba(255,255,255,.22); }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: flex !important;
    align-items: center;
    font-size: 1rem !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500;
    padding: 16px 24px !important;
    color: rgba(255,255,255,.88) !important;
    width: 100%;
    transition: background .2s, color .2s;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,.09);
    color: var(--gold-light) !important;
  }
  .nav-links a.active {
    border-left: 3px solid var(--gold-light);
    padding-left: 21px !important;
  }
  .nav-links a.nav-cta {
    background: var(--gold) !important;
    color: #fff !important;
    margin: 16px 20px !important;
    width: calc(100% - 40px) !important;
    border-radius: var(--radius-sm) !important;
    padding: 14px 20px !important;
    justify-content: center;
    font-weight: 700 !important;
    font-size: .94rem !important;
    letter-spacing: .02em;
  }
  .nav-links a.nav-cta:hover { background: var(--gold-light) !important; }

  /* Drawer contact footer */
  .nav-footer {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: auto;
  }
  .nav-footer a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    font-size: .85rem !important;
    color: rgba(255,255,255,.72) !important;
    padding: 7px 0 !important;
    border-bottom: none !important;
    border-left: none !important;
  }
  .nav-footer a:hover { color: #fff !important; background: transparent !important; }

  /* Hide hamburger × when drawer is open — close btn handles it */
  .hamburger.open { display: none; }
  .hamburger { display: flex; z-index: 1051; }
  .navbar { padding: 0 18px; }
  .hero-inner { padding: 28px 18px 36px; }
  .page-hero-content { padding: 0 18px 32px; }
  .cards-grid-3, .cards-grid-4, .cards-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .enquire-strip-inner { flex-direction: column; text-align: center; }
  .enquire-strip-btns { justify-content: center; }
  .section-cta-banner { flex-direction: column; text-align: center; }

  /* Mobile: promo bar shorter */
  .promo-bar {
    font-size: .7rem;
    padding: 0 12px;
    text-align: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: var(--promo-h);
  }
  /* Logo image smaller on mobile */
  .nav-logo {
    padding: 6px 12px;
    border-radius: 14px;
  }
  .nav-logo-img { height: 48px; }
  :root { --promo-h: 34px; --nav-h: 72px; }
}
@media (max-width: 480px) {
  /* Promo bar: show only phone link, hide long text */
  .promo-bar .promo-text { display: none; }
  .promo-bar strong { display: none; }
  /* Logo image extra compact */
  .nav-logo {
    padding: 5px 10px;
    border-radius: 12px;
  }
  .nav-logo-img { height: 42px; }
  :root { --promo-h: 30px; --nav-h: 64px; }
}

/* =============================================================
   HERO FORM — No. of Persons input styling (number type)
   ============================================================= */
.heq-input[type="number"] { -moz-appearance: textfield; }
.heq-input[type="number"]::-webkit-outer-spin-button,
.heq-input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Date input styling */
.heq-input[type="date"],
input[type="date"].form-group,
.form-group input[type="date"] {
  cursor: pointer;
  color: var(--text-dark);
}
.heq-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: .6;
}

/* =============================================================
   PACKAGE DETAIL CARDS — mobile responsive
   ============================================================= */
@media (max-width: 860px) {
  [style*="grid-template-columns: 1fr 1.3fr"],
  [style*="grid-template-columns:1fr 1.3fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================================
   MOBILE CLEANUP — inline layout overrides used across pages
   ============================================================= */
@media (max-width: 860px) {
  .page-hero { height: 300px; }
  .page-hero-content { max-width: 680px; }

  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  [style*="gap:60px"],
  [style*="gap: 60px"],
  [style*="gap:32px"],
  [style*="gap: 32px"] {
    gap: 20px !important;
  }

  [style*="margin-bottom:80px"],
  [style*="margin-bottom: 80px"] {
    margin-bottom: 48px !important;
  }

  [style*="padding:40px 32px"],
  [style*="padding: 40px 32px"] {
    padding: 28px 24px !important;
  }

  .pkg-detail-card [style*="display:flex;gap:10px"],
  .pkg-detail-card [style*="display:flex; gap:10px"],
  .pkg-detail-card [style*="display:flex;gap:12px"],
  .pkg-detail-card [style*="display:flex; gap:12px"],
  .transport-card [style*="display:flex;gap:12px"],
  .transport-card [style*="display:flex; gap:12px"] {
    gap: 10px !important;
  }

  .pkg-detail-card > div > div:first-child img {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .page-hero { height: 260px; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .page-hero-content p { font-size: .92rem; max-width: 32rem; }
  .breadcrumb { flex-wrap: wrap; row-gap: 4px; }

  .section-cta-banner,
  .contact-form-wrap,
  .contact-info-card,
  .hero-enquiry-box,
  .transport-card,
  .package-card,
  .resort-card,
  .activity-card {
    border-radius: 14px;
  }

  .pkg-detail-card {
    margin-bottom: 24px !important;
  }

  .pkg-detail-card > div > div:first-child {
    min-height: 240px !important;
  }

  .pkg-detail-card > div > div:first-child img {
    height: 240px !important;
  }

  .pkg-detail-card [style*="padding:24px 22px"],
  .pkg-detail-card [style*="padding: 24px 22px"],
  .pkg-detail-card [style*="padding:32px 36px"],
  .pkg-detail-card [style*="padding: 32px 36px"] {
    padding: 22px 18px !important;
  }

  .pkg-detail-card h3,
  .resort-card h3,
  .transport-card h3,
  .activity-card h3 {
    font-size: 1.28rem;
  }

  .pkg-detail-card [style*="font-size:2rem"] {
    font-size: 1.7rem !important;
  }

  .pkg-detail-card [style*="display:flex;gap:10px"],
  .pkg-detail-card [style*="display:flex; gap:10px"],
  .pkg-detail-card [style*="display:flex;gap:12px"],
  .pkg-detail-card [style*="display:flex; gap:12px"],
  .section-cta-banner-btns,
  .cta-btns,
  .enquire-strip-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .pkg-detail-card .btn-enquire,
  .pkg-detail-card .btn-call,
  .pkg-detail-card .btn-wa,
  .section-cta-banner-btns .btn-enquire,
  .section-cta-banner-btns .btn-call,
  .section-cta-banner-btns .btn-wa,
  .cta-btns .btn,
  .cta-btns .btn-call,
  .cta-btns .btn-wa,
  .enquire-strip-btns .btn-enquire,
  .enquire-strip-btns .btn-call,
  .enquire-strip-btns .btn-wa {
    width: 100%;
    justify-content: center;
  }

  [style*="justify-content:space-between"],
  [style*="justify-content: space-between"] {
    gap: 10px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .page-hero { height: 220px; }
  .page-hero-content { padding: 0 14px 22px; }
  .page-hero-content h1 { font-size: 1.95rem; }
  .section-pad { padding: 46px 0; }
  .section-sub { margin-bottom: 34px; }

  .pkg-detail-card > div > div:first-child {
    min-height: 210px !important;
  }

  .pkg-detail-card > div > div:first-child img {
    height: 210px !important;
  }

  .pkg-detail-card [style*="padding:22px 18px"],
  .pkg-detail-card [style*="padding: 22px 18px"],
  .pkg-detail-card [style*="padding:24px 22px"],
  .pkg-detail-card [style*="padding: 24px 22px"] {
    padding: 18px 14px !important;
  }

  .pkg-detail-card h3 { font-size: 1.15rem; }
  .pkg-detail-card [style*="font-size:2rem"] { font-size: 1.45rem !important; }
  .pkg-tag,
  .resort-amenity,
  .activity-tag { font-size: .66rem; }
  .fab-stack { bottom: 14px; right: 12px; }
  .fab-btn { width: 46px; height: 46px; font-size: 1.15rem; }
}
