/* ==========================================================================
   ASTRALOKA TOURS — Master Stylesheet
   Brand: Deep Navy (#0e2a52) · Gold (#c9a24b) · Orange accent (#ef8022)
   Fonts: Playfair Display (headings) · Poppins (body)
   ========================================================================== */

/* ------------------------------ Design Tokens ---------------------------- */
:root {
  --navy: #0e2a52;
  --navy-800: #13366b;
  --navy-700: #1b447f;
  --navy-100: #e7edf6;
  --gold: #c9a24b;
  --gold-light: #e2c987;
  --gold-dark: #a9832f;
  --orange: #ef8022;
  --orange-dark: #d96a10;
  --cream: #fbf6ec;
  --cream-2: #f6efe1;
  --ink: #22303f;
  --muted: #62707e;
  --line: #e7e2d6;
  --white: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(14, 42, 82, 0.07);
  --shadow: 0 14px 40px rgba(14, 42, 82, 0.1);
  --shadow-lg: 0 30px 70px rgba(14, 42, 82, 0.16);

  --maxw: 1220px;
  --gutter: clamp(16px, 4vw, 40px);

  --f-head: "Times New Roman", Times, Georgia, serif;
  --f-body: "Times New Roman", Times, Georgia, serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-h: 0px;
  --header-h: 100px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
}
/* ------------------------------ Reset ------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 20px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.05rem;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.4em;
  font-weight: 700;
}
p {
  margin: 0 0 1rem;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------ Layout helpers --------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide {
  max-width: 1380px;
}
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section--compact {
  padding-block: clamp(28px, 3.4vw, 46px);
}
.section--tint {
  background: var(--cream);
}
.section--navy {
  background: var(--navy);
  color: #dfe7f2;
}
.section--navy h1,
.section--navy h2,
.section--navy h3 {
  color: #fff;
}
.text-center {
  text-align: center;
}
.grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

/* ------------------------------ Section heading -------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section--navy .eyebrow {
  color: var(--gold-light);
}
.sec-head {
  max-width: 660px;
  margin: 0 auto clamp(34px, 5vw, 56px);
}
.sec-head.left {
  margin-left: 0;
}
.sec-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}
.sec-head p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}
.section--navy .sec-head p {
  color: #b9c6db;
}

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border-radius: 60px;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.btn i {
  font-size: 0.9em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(239, 128, 34, 0.32);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(239, 128, 34, 0.42);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.32);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 75, 0.42);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-800);
  transform: translateY(-3px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
}
.btn--block {
  width: 100%;
}

/* ============================ TOP BAR ==================================== */
.topbar {
  background: var(--navy);
  color: #c8d4e6;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
}
.topbar__left {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--gold-light);
}
.topbar__left i {
  color: var(--gold);
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar__social span {
  color: #8ea0bd;
}
.topbar__social a {
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--gold);
  background: transparent;
  transition: transform 0.2s var(--ease);
}
.topbar__social a:hover {
  transform: translateY(-3px);
  color: var(--gold);
}

/* ============================ HEADER / NAV ============================== */
#site-chrome-top {
  display: contents;
}
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 2px 0 rgba(14, 42, 82, 0.04);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  height: 76px;
  width: auto;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__txt b {
  font-family: var(--f-head);
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand__txt span {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 3px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu > li > a {
  position: relative;
  display: block;
  padding: 0.6rem 0.95rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  border-radius: 8px;
  transition: color 0.2s;
}
.menu > li > a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.menu > li > a:hover {
  color: var(--gold-dark);
}
.menu > li > a:hover::after,
.menu > li > a.active::after {
  transform: scaleX(1);
}
.menu > li > a.active {
  color: var(--gold-dark);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--navy);
  font-size: 1.2rem;
}
.menu__cta {
  display: none;
}

.menu__close-wrap {
  display: none;
}
/* -------------------------- MOBILE UPGRADES & STICKY NAV FIX -------------------------- */
@media (max-width: 1040px) {
  /* 1. Force the header to be fixed, not sticky. Sticky breaks when body gets overflow:hidden */

  .menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(85vw, 360px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 90px 24px 40px !important;
    box-shadow: -10px 0 40px rgba(14, 42, 82, 0.15) !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s var(--ease) !important;
    z-index: 1210 !important;
    overflow-y: auto !important;
    display: flex !important;
  }

  .menu.open {
    transform: translateX(0) !important;
  }

  /* ===== Close Button ===== */

  .menu__close-wrap {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    list-style: none;
  }

  .menu__close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    font-size: 1.15rem;
    transition: 0.25s;
  }

  .menu__close:hover {
    background: var(--gold-light);
    color: #fff;
  }

  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1101;
  }
  .header {
    position: fixed !important;
    top: var(--topbar-h, 42px);
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 1200 !important;
    /* Crucial: strip animations to stop mobile browsers from trapping the fixed menu inside it */
    animation: none !important;
    transform: none !important;
  }

  /* 2. Push inner page content down so it doesn't hide behind the new fixed header */
  body {
    padding-top: var(--chrome-h, 136px) !important;
  }

  .brand,
  .menu > li,
  .nav__cta .btn {
    animation: none !important;
  }

  .nav__toggle {
    display: grid;
    place-items: center;
  }
  .nav__cta .btn {
    display: none;
  }

  /* 3. Robust Premium Slide-out Mobile Menu Design */
  .menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(85vw, 360px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 90px 24px 40px !important;
    box-shadow: -10px 0 40px rgba(14, 42, 82, 0.15) !important;
    transform: translateX(100%) !important;
    transition: transform 0.35s var(--ease) !important;
    z-index: 1210 !important;
    overflow-y: auto !important;
    display: flex !important;
  }
  .menu.open {
    transform: translateX(0) !important;
  }

  /* Elevated Navigation Links Style */
  .menu > li > a {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: var(--navy) !important;
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 12px;
    border-bottom: none !important;
    transition: all 0.25s var(--ease);
  }
  .menu > li > a::after {
    display: none;
  }
  .menu > li > a:hover,
  .menu > li > a.active {
    background: var(--cream);
    color: var(--gold-dark) !important;
    padding-left: 22px;
  }
  .menu__cta {
    display: block;
  }
  .menu .btn {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
  }

  /* 4. Fix Backdrop Positioning */
  .nav-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(9, 20, 42, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1090 !important;
    transform: none !important;
  }
  .nav-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  /* Modernized Compact Enquiry Form Fields for mobile */
  .field-group {
    margin-bottom: 14px;
  }
  .input,
  .textarea,
  .select,
  .cselect__btn {
    background: #f8fafd;
    border: 1.5px solid #e2eaf4;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .input:focus,
  .textarea:focus,
  .cselect.open .cselect__btn {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.15);
  }
}

/* ============================ HERO (full-screen video) ================ */
.hero--video {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 920px;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 18, 38, 0.82) 0%,
      rgba(8, 18, 38, 0.55) 42%,
      rgba(8, 18, 38, 0.18) 72%,
      rgba(8, 18, 38, 0.05) 100%
    ),
    linear-gradient(
      rgba(8, 18, 38, 0.55),
      transparent 26%,
      transparent 62%,
      rgba(8, 18, 38, 0.6)
    );
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 560px;
  color: #fff;
  padding-block: 78px 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(226, 201, 135, 0.4);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  margin-bottom: 18px;
}
.hero__badge i {
  color: var(--gold);
}
.hero__title {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.14;
  margin: 0 0 0.5em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.hero__tag {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: #e6ecf6;
  max-width: 480px;
  margin: 0 0 26px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 32px;
}
.hero__stats > div {
  position: relative;
}
.hero__stats > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(-1 * clamp(10px, 1.5vw, 20px));
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.hero__stats b {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  color: var(--gold-light);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #c3cee0;
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: grid;
  place-items: center;
  animation: heroBounce 1.8s ease-in-out infinite;
}
.hero__scroll:hover {
  background: rgba(255, 255, 255, 0.12);
}
@keyframes heroBounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
}
@media (max-width: 640px) {
  .hero--video {
    height: clamp(380px, 65vh, 480px);
  }
}

/* ============================ QUICK STRIP (search) ==================== */
.quickbar {
  position: relative;
  z-index: 8;
  margin-top: -52px;
}
.quickbar__inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.quickbar .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quickbar label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.quickbar .control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: var(--cream);
}
.quickbar .control i {
  color: var(--gold-dark);
}
.quickbar select,
.quickbar input {
  border: 0;
  background: transparent;
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
}
@media (max-width: 900px) {
  .quickbar__inner {
    grid-template-columns: 1fr 1fr;
  }
  .quickbar {
    margin-top: -30px;
  }
  .quickbar .btn {
    grid-column: 1/-1;
  }
}
@media (max-width: 520px) {
  .quickbar__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================ STATS ==================================== */
.section--stats {
  padding-block: clamp(30px, 4vw, 50px);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
  max-width: 860px;
  margin-inline: auto;
}
.stat {
  text-align: center;
  padding: 8px 10px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat__num {
  font-family: var(--f-head);
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--gold-light);
  font-weight: 800;
  line-height: 1;
}
.stat__num small {
  font-size: 0.55em;
}
.stat__label {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #c3d0e4;
  letter-spacing: 0.02em;
}
.stat__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  /* .stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2)::after {
    display: none;
  } */
  .section--stats,
  .hero__stats {
    display: none !important;
  }

  /* Keep the gallery images using the aspect ratio */
  .pd-gallery .scene,
  .pd-gallery .pkg-img {
    border-radius: 16px;
    aspect-ratio: 16/9;
  }

  /* Target ONLY the About image on the home page and force a height */
  .split__media .frame {
    border-radius: 16px;
    aspect-ratio: auto !important; /* Removes the ratio rule */
    height: 200px; /* Change this number to exactly the height you want */
    width: 100%; /* Keeps it full width */
  }
  .split {
    display: flex;
    flex-direction: column;
  }

  .split__media {
    order: 2; /* 2 means it comes second (after the text) */
    width: 100%;
  }
}

/* ============================ FEATURE / WHY CHOOSE ==================== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(1);
  transform-origin: left;
}
.feature:hover {
  box-shadow: var(--shadow);
  animation: card-bob 0.7s ease-in-out infinite;
}
@keyframes card-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.feature__ic {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold-light);
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.18rem;
}
.feature p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.features--6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 900px) {
  .features--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .features--6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features--diff {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .features--diff {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .features--diff {
    grid-template-columns: 1fr;
  }
}
.features--diff .feature {
  padding: 24px 22px;
}
.features--diff .feature__ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.features--diff .feature h3 {
  font-size: 1.08rem;
}
.features--diff .feature p {
  font-size: 0.9rem;
}
.features--diff .feature::before {
  transform: scaleX(1);
}
.features--diff .feature:hover {
  transform: translateY(-6px);
}

/* ============================ PACKAGE CARDS =========================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 3.2vw, 44px) clamp(20px, 2.4vw, 32px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .pkg-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(14, 42, 82, 0.07);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(14, 42, 82, 0.16);
  border-color: transparent;
}
.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__media .scene {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media .scene {
  transform: scale(1.06);
}
.card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(14, 42, 82, 0.86);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.card__dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__region {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 7px;
}
.card__title {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 5px;
}
.card__sub {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__title a:hover {
  color: var(--gold-dark);
}
.card__incl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.card__incl li {
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.25rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.card__incl li i {
  color: var(--gold-dark);
}
.card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card__price small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}
.card__price b {
  font-family: var(--f-head);
  font-size: 1.28rem;
  color: var(--navy);
}
.card__price b span {
  font-size: 0.6em;
  color: var(--muted);
  font-family: var(--f-body);
  font-weight: 500;
}
.card__price .req {
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
}

#featured-packages .card__media,
#packages-listing .card__media {
  aspect-ratio: 16/9;
}
#featured-packages .card__body,
#packages-listing .card__body {
  padding: 14px 15px 16px;
}
#featured-packages .card__region,
#packages-listing .card__region {
  font-size: 0.68rem;
  margin-bottom: 5px;
}
#featured-packages .card__title,
#packages-listing .card__title {
  font-size: 1.02rem;
  margin-bottom: 3px;
}
#featured-packages .card__sub,
#packages-listing .card__sub {
  font-size: 0.78rem;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-bottom: 10px;
}
#featured-packages .card__incl,
#packages-listing .card__incl {
  gap: 6px;
  margin-bottom: 12px;
}
#featured-packages .card__incl li,
#packages-listing .card__incl li {
  font-size: 0.66rem;
  padding: 0.2rem 0.5rem;
}
#featured-packages .card__foot,
#packages-listing .card__foot {
  padding-top: 11px;
}
#featured-packages .card__price b,
#packages-listing .card__price b {
  font-size: 1.08rem;
}
#featured-packages .card__badge,
#featured-packages .card__dur,
#packages-listing .card__badge,
#packages-listing .card__dur {
  font-size: 0.68rem;
  padding: 0.28rem 0.6rem;
}

.scene {
  position: relative;
  display: block;
}
.scene svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-figure {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.pkg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__media .pkg-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media .pkg-img {
  transform: scale(1.06);
}
.post__media .pkg-img {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.post:hover .post__media .pkg-img {
  transform: scale(1.05);
}
.pd-gallery .pkg-img {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ============================ PACKAGE SEARCH ========================= */
.pkg-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 30px;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 60px;
  padding: 0.9rem 1.5rem;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.pkg-search:focus-within {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(201, 162, 75, 0.2);
}
.pkg-search i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.pkg-search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-family: inherit;
  font-size: 1.02rem;
  color: var(--ink);
}
.pkg-search input::placeholder {
  color: var(--muted);
}

/* ============================ FILTER TABS ============================= */
.filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 18px;
  justify-content: center;
  align-items: center;
  max-width: 88%;
  margin: 0 auto 28px;
}
@media (max-width: 760px) {
  .filterbar {
    max-width: 100%;
    gap: 12px 14px;
  }
}
.filter-chip {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.filter-chip .count {
  font-size: 0.72rem;
  opacity: 0.7;
}

/* ============================ TESTIMONIALS =========================== */
.tst-slider {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 26px);
}
.tst-viewport {
  overflow-x: clip;
  overflow-y: visible;
  flex: 1;
  min-width: 0;
  padding-block: 4px;
}
.tst-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s var(--ease);
}
.tst {
  min-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
}
@media (min-width: 640px) {
  .tst {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .tst {
    min-width: 33.3333%;
  }
}
.tst__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 10px 26px rgba(14, 42, 82, 0.07);
  border: 1px solid var(--line);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tst-arrow {
  position: static !important;
  transform: none !important;
  flex: 0 0 auto;
  display: grid !important;
}
@media (max-width: 520px) {
  .tst-arrow {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

/* ============================ FAQ ==================================== */
.faq-wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.faq.open {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.faq__q i {
  transition: transform 0.3s var(--ease);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.faq.open .faq__q i {
  transform: rotate(180deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq.open .faq__a {
  max-height: 520px;
}
.faq__a p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section--navy .tst__card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #dfe7f2;
}
.tst__stars {
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.tst__quote {
  font-size: 0.93rem;
  font-style: italic;
  color: inherit;
  margin-bottom: 22px;
}
.tst__person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 6px;
}
.tst__ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
}
.tst__ava .tst__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tst__person b {
  display: block;
  color: inherit;
  font-family: var(--f-head);
}
.section--navy .tst__person b {
  color: #fff;
}
.tst__person span {
  font-size: 0.85rem;
  color: var(--muted);
}
.section--navy .tst__person span {
  color: #a9b8d0;
}

/* ============================ BLOG CARDS ============================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 30px);
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.post {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.post:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.post__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.post__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  z-index: 2;
}
.post__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.post__meta i {
  color: var(--gold-dark);
  margin-right: 0.35rem;
}
.post__body h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}
.post__body h3 a:hover {
  color: var(--gold-dark);
}
.post__body p {
  color: var(--muted);
  font-size: 0.92rem;
}
.post__more {
  margin-top: auto;
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.post__more i {
  transition: transform 0.25s;
}
.post:hover .post__more i {
  transform: translateX(5px);
}

#home-blogs .post__media,
#blog-listing .post__media {
  aspect-ratio: 16/9;
}
#home-blogs .post__body,
#blog-listing .post__body {
  padding: 18px 20px;
}
#home-blogs .post__body h3,
#blog-listing .post__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
#home-blogs .post__body p,
#blog-listing .post__body p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#home-blogs .post__meta,
#blog-listing .post__meta {
  font-size: 0.78rem;
  margin-bottom: 8px;
}

/* ============================ PAGE BANNER (inner) =================== */
.pagehero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 20, 42, 0.8), rgba(9, 20, 42, 0.88)),
    url("../images/Packages/Kashmir-1.jpg");
  background-size: cover;
  background-position: center;
}
body[data-page="about"] .pagehero {
  background-image:
    linear-gradient(rgba(9, 20, 42, 0.8), rgba(9, 20, 42, 0.88)),
    url("../images/Packages/Kashi.jpg");
}
body[data-page="packages"] .pagehero {
  background-image:
    linear-gradient(rgba(9, 20, 42, 0.8), rgba(9, 20, 42, 0.88)),
    url("../images/Packages/Prayagraj-2.jpg");
}
body[data-page="blog"] .pagehero {
  background-image:
    linear-gradient(rgba(9, 20, 42, 0.8), rgba(9, 20, 42, 0.88)),
    url("../images/Packages/Goa-1.jpg");
}
body[data-page="contact"] .pagehero {
  background-image:
    linear-gradient(rgba(9, 20, 42, 0.8), rgba(9, 20, 42, 0.88)),
    url("../images/Packages/Ayodhya-1.webp");
}
.pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1000px 400px at 85% -10%,
      rgba(201, 162, 75, 0.26),
      transparent 60%
    ),
    radial-gradient(
      700px 300px at 10% 120%,
      rgba(239, 128, 34, 0.2),
      transparent 60%
    );
}
.pagehero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.pagehero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 90px) 0;
  text-align: center;
}
.pagehero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
}
.pagehero p {
  color: #c6d2e6;
  max-width: 640px;
  margin: 8px auto 0;
}
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: #b9c6db;
  margin-top: 18px;
}
.crumb a:hover {
  color: var(--gold-light);
}
.crumb i {
  font-size: 0.6rem;
  color: var(--gold);
}
.crumb .here {
  color: var(--gold-light);
}

/* ============================ ABOUT split ============================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split--rev .split__media {
  order: 2;
}
@media (max-width: 860px) {
  .split--rev .split__media {
    order: 0;
  }
}
.split__media {
  position: relative;
}
.split__media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}
.split__media .scene {
  width: 100%;
  height: 100%;
}
.split__media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split__badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.split__badge .b-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.split__badge b {
  font-family: var(--f-head);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}
.split__badge span {
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .split__badge {
    left: 16px;
    bottom: -20px;
  }
}

.tick-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 8px 0 26px;
}
.tick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.tick-list li i {
  color: #1f9d55;
  margin-top: 0.25rem;
}
@media (max-width: 520px) {
  .tick-list {
    grid-template-columns: 1fr;
  }
}

/* ============================ MISSION / VALUES ====================== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  .values {
    grid-template-columns: 1fr;
  }
}
.value {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px;
}
.value .v-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: var(--cream);
  color: var(--gold-dark);
  margin-bottom: 12px;
  border: 1px solid var(--line);
}
.value h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35em;
}
.value p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================ PACKAGE DETAIL ======================= */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
}
.pd-gallery .scene {
  width: 100%;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pd-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: var(--radius);
}
.pd-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.pd-meta i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.pd-meta small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.76rem;
}

.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 620px) {
  .incl-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.incl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.incl-item i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.itinerary {
  position: relative;
  margin-top: 8px;
}
.itin-day {
  position: relative;
  padding: 0 0 26px 54px;
}
.itin-day::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: -6px;
  width: 2px;
  background: var(--line);
}
.itin-day:last-child::before {
  display: none;
}
.itin-day__no {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--f-head);
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 0 0 5px var(--cream);
}
.section .itin-day__no {
  box-shadow: 0 0 0 5px #fff;
}
.itin-day h4 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.itin-day p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.pd-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.pd-tab {
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: 0.2s;
}
.pd-tab.active {
  color: var(--navy);
  border-color: var(--gold);
}
.pd-panel {
  display: none;
}
.pd-panel.active {
  display: block;
  animation: fade 0.4s var(--ease);
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
}
@media (max-width: 600px) {
  .two-col-list {
    grid-template-columns: 1fr;
  }
}
.two-col-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.94rem;
}
.two-col-list.inc li i {
  color: #1f9d55;
  margin-top: 0.3rem;
}
.two-col-list.exc li i {
  color: #d94a4a;
  margin-top: 0.3rem;
}

.pd-side {
  position: sticky;
  top: 100px;
}
.enquiry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.enquiry-card__head {
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  color: #fff;
  padding: 22px 26px;
}
.enquiry-card__head h3 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}
.enquiry-card__head p {
  margin: 6px 0 0;
  color: #c3d0e4;
  font-size: 0.86rem;
}
.enquiry-card__body {
  padding: 24px 26px 28px;
}

/* ============================ FORMS (compact) ================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field-group {
  margin-bottom: 11px;
}
.field-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.field-group label .req-star {
  color: var(--orange);
}

.input,
.textarea,
.select {
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  transition: 0.2s;
  outline: none;
}
.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.14);
}
.input.invalid,
.textarea.invalid,
.select.invalid {
  border-color: #e05656;
  background: #fdf1f1;
}
.textarea {
  min-height: 80px;
  resize: vertical;
}
.field-error {
  display: none;
  color: #d94a4a;
  font-size: 0.74rem;
  margin-top: 4px;
}
.field-error.show {
  display: block;
}

.cselect {
  position: relative;
}
.cselect__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
}
.cselect__btn:hover {
  border-color: var(--gold);
}
.cselect.open .cselect__btn {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.14);
}
.cselect__btn i {
  color: var(--gold-dark);
  font-size: 0.78rem;
  transition: transform 0.25s var(--ease);
}
.cselect.open .cselect__btn i {
  transform: rotate(180deg);
}
.cselect__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cselect__value.is-placeholder {
  color: var(--muted);
}
.cselect__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  display: none;
}
.cselect.open .cselect__menu {
  display: block;
  animation: fade 0.18s var(--ease);
}
.cselect__group {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 9px 10px 4px;
  position: sticky;
  top: -6px;
  background: #fff;
}
.cselect__opt {
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
}
.cselect__opt:hover {
  background: var(--cream);
  color: var(--gold-dark);
}
.cselect__opt.active {
  background: var(--navy);
  color: #fff;
}
.cselect__menu::-webkit-scrollbar {
  width: 8px;
}
.cselect__menu::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 8px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 6px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eafaf0;
  border: 1px solid #b6e7c9;
  color: #177a45;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success.show {
  display: flex;
}
.form-success i {
  font-size: 1.2rem;
}

/* ============================ CTA band ============================= */
.cta {
  position: relative;
  background: linear-gradient(
    120deg,
    var(--navy) 0%,
    var(--navy-800) 60%,
    #16406f 100%
  );
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.cta::before {
  content: "";
  inset: 0;
  background: radial-gradient(
    560px 260px at 92% 15%,
    rgba(201, 162, 75, 0.28),
    transparent 60%
  );
}
.cta__inner {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.2vw, 40px) clamp(22px, 3.5vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 40px;
  flex-wrap: wrap;
}
.cta__inner > div:first-child {
  flex: 1 1 380px;
}
.cta .eyebrow {
  margin-bottom: 0.55rem;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin: 0;
  line-height: 1.2;
}
.cta p {
  color: #cdd8ec;
  margin: 0.45rem 0 0;
  max-width: 540px;
  font-size: 0.95rem;
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .cta__actions {
    width: 100%;
  }
  .cta__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

/* ============================ FOOTER ============================== */
.footer {
  background: var(--navy);
  color: #b7c4da;
  padding-top: clamp(50px, 7vw, 80px);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(26px, 4vw, 50px);
  padding-bottom: 44px;
}
@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand img {
  height: 92px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer__brand p {
  font-size: 0.9rem;
  color: #9fb0cc;
  max-width: 300px;
}
.footer h4 {
  color: #fff;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.footer__links li {
  margin-bottom: 11px;
}
.footer__links a {
  font-size: 0.9rem;
  color: #a9b8d0;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.footer__links i {
  font-size: 0.6rem;
  color: var(--gold);
}
.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #a9b8d0;
}
.footer__contact i {
  color: var(--gold);
  margin-top: 3px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: transform 0.25s var(--ease);
}
.footer__social a:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--navy);
}
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: #8496b3;
}
.footer__bar a:hover {
  color: var(--gold-light);
}

.nl-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.nl-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  outline: none;
}
.nl-form input::placeholder {
  color: #8496b3;
}
.nl-form button {
  width: 46px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.nl-form button:hover {
  background: var(--gold-light);
}

/* ============================ FLOATING ENQUIRE ==================== */
.float-enquire {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-enquire a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
  position: relative;
}
.float-enquire a:hover {
  transform: scale(1.1);
}
.float-enquire .wa {
  background: #25d366;
}
.float-enquire .call {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.float-enquire .tip {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.float-enquire a:hover .tip {
  opacity: 1;
}

.enquire-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  display: none;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(14, 42, 82, 0.14);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
}
.enquire-strip .es-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: #fff;
}
.enquire-strip .es-wa {
  background: #25d366;
}
.enquire-strip .es-call {
  background: var(--navy);
}
.enquire-strip .btn {
  flex: 1;
}
@media (max-width: 600px) {
  .enquire-strip {
    display: flex;
  }
  .float-enquire {
    display: none;
  }
  .footer__bar {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================ MODAL ============================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 40, 0.6);
  backdrop-filter: blur(3px);
}
.modal__box {
  position: relative;
  z-index: 2;
  background: #fff;
  width: min(480px, 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 92vh;
  overflow: visible;
  animation: pop 0.35s var(--ease);
}
.modal__head {
  background: linear-gradient(135deg, var(--navy), var(--navy-800));
  color: #fff;
  padding: 18px 24px;
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal__head h3 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
}
.modal__head p {
  margin: 4px 0 0;
  color: #c3d0e4;
  font-size: 0.84rem;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: grid;
  place-items: center;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal__body {
  padding: 20px 24px 24px;
}

/* ============================ MISC / ANIM ======================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
}

.muted {
  color: var(--muted);
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
}
.divider-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 6px 0 22px;
}
.divider-orn::before,
.divider-orn::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-orn::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.empty i {
  font-size: 2.4rem;
  color: var(--line);
  margin-bottom: 14px;
  display: block;
}

/* ==========================================================================
   GLOBAL RESPONSIVE POLISH — applies across every page
   ========================================================================== */
@media (max-width: 1024px) {
  html {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
  .modal {
    align-items: flex-start;
    padding-top: 105px;
  }

  .modal__box {
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 17px;
  }
}
@media (max-width: 380px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 720px) {
  .topbar {
    font-size: 0.8rem;
  }
  .topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
  }
  .topbar__left {
    justify-content: center;
    gap: 10px 18px;
  }
}
@media (max-width: 480px) {
  .topbar__social span {
    display: none;
  }
  .topbar__left a[href^="mailto"] {
    display: none;
  }
  .brand img {
    height: 58px;
  }
  .brand__txt b {
    font-size: 1.1rem;
  }
  .brand__txt span {
    letter-spacing: 0.3em;
  }
}

@media (max-width: 960px) {
  .pd-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .sec-head {
    margin-bottom: clamp(22px, 6vw, 34px);
  }
  .cta__inner {
    text-align: center;
  }
  .cta__inner > div:first-child {
    flex-basis: 100%;
  }
  .cta .eyebrow {
    justify-content: center;
  }
}

img,
iframe,
video,
table {
  max-width: 100%;
}
.pd-tabs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#inclusions-band .value {
  transition:
    transform 0.32s var(--ease),
    background 0.32s,
    border-color 0.32s,
    box-shadow 0.32s;
}
#inclusions-band .value:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
#inclusions-band .value .v-ic {
  transition:
    transform 0.4s var(--ease),
    color 0.3s;
}
#inclusions-band .value:hover .v-ic {
  transform: scale(1.14) rotate(-8deg);
  color: #fff !important;
}
#inclusions-band .value h3 {
  transition: color 0.3s;
}
#inclusions-band .value:hover h3 {
  color: var(--gold-light) !important;
}

#home-about .eyebrow {
  margin-bottom: 0.82rem;
}
#home-about h2 {
  margin-bottom: 0.32em;
}
#home-about .lead {
  margin-bottom: 0.82rem;
}
#home-about .muted {
  margin-bottom: 0.82rem;
}
#home-about .tick-list {
  margin: 6px 0 21px;
}

#who-we-are .about-figure {
  max-width: 500px;
}
#who-we-are .split {
  gap: clamp(22px, 3.2vw, 44px);
  align-items: center;
}
#who-we-are .eyebrow {
  margin-bottom: 0.55rem;
}
#who-we-are h2 {
  margin-bottom: 0.28em;
}
#who-we-are .lead {
  margin-bottom: 0.55rem;
}
#who-we-are .muted {
  margin-bottom: 0.6rem;
}
#who-we-are .tick-list {
  margin: 4px 0 0;
  gap: 9px 22px;
}

#home-testimonials .sec-head {
  margin-bottom: clamp(18px, 2.6vw, 30px);
}
#home-testimonials .sec-head .eyebrow {
  margin-bottom: 0.55rem;
}
#home-testimonials .sec-head h2 {
  margin-bottom: 0.26em;
}

#home-blog-sec .sec-head {
  margin-bottom: clamp(18px, 2.6vw, 30px);
}
#home-blog-sec .sec-head .eyebrow {
  margin-bottom: 0.55rem;
}
#home-blog-sec .sec-head h2 {
  margin-bottom: 0.26em;
}

#about-stats .stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 24px);
}
@media (max-width: 820px) {
  #about-stats .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  #about-stats .stat-cards {
    grid-template-columns: 1fr;
  }
}
#about-stats .stat-card {
  position: relative;
  text-align: center;
  padding: 34px 22px 30px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(226, 201, 135, 0.45);
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
  will-change: transform;
}
#about-stats .stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}
#about-stats .stat-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}
#about-stats .stat-card__ic {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid rgba(226, 201, 135, 0.4);
}
#about-stats .stat-card__num {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold-light);
}
#about-stats .stat-card__label {
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  color: #c3cee0;
  text-transform: uppercase;
}

#what-drives-us .values {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 640px) {
  #what-drives-us .values {
    grid-template-columns: 1fr;
  }
}
#what-drives-us .value {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s;
  will-change: transform;
}
#what-drives-us .value::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}
#what-drives-us .value:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
#what-drives-us .value .v-ic {
  background: var(--gold);
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   PREMIUM PAGE-LOAD & SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.in {
  will-change: auto;
}

.header {
  animation: navDrop 0.6s var(--ease-out) both;
}
@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.brand {
  animation: aFade 0.7s var(--ease-out) 0.12s both;
}

.menu > li {
  animation: aDown 0.5s var(--ease-out) both;
}
.menu > li:nth-child(1) {
  animation-delay: 0.3s;
}
.menu > li:nth-child(2) {
  animation-delay: 0.39s;
}
.menu > li:nth-child(3) {
  animation-delay: 0.48s;
}
.menu > li:nth-child(4) {
  animation-delay: 0.57s;
}
.menu > li:nth-child(5) {
  animation-delay: 0.66s;
}
.menu > li:nth-child(6) {
  animation-delay: 0.75s;
}

.nav__cta .btn {
  animation: aEnquire 0.6s var(--ease-out) 0.5s both;
}
@keyframes aEnquire {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__bg {
  animation: aHeroZoom 2.6s var(--ease-out) both;
  will-change: transform;
}
@keyframes aHeroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes aFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes aUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes aDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes aScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   TWEAKS.CSS — (Appended) Home hero entrance animation overrides
   ========================================================================== */
.hero__badge,
.hero__title,
.hero__tag,
.hero__cta,
.hero__stats {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.hero__badge {
  animation-delay: 0.15s;
}
.hero__title {
  animation-delay: 0.32s;
}
.hero__tag {
  animation-delay: 0.5s;
}
.hero__cta {
  animation-delay: 0.66s;
}
.hero__stats {
  animation-delay: 0.82s;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .brand,
  .menu > li,
  .nav__cta .btn,
  .hero__badge,
  .hero__title,
  .hero__tag,
  .hero__cta,
  .hero__stats > div,
  .hero__bg,
  .hero__stats,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE CORRECTIONS
   ========================================================================== */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  :root {
    --gutter: clamp(14px, 5vw, 22px);
  }
  .section {
    padding-block: clamp(34px, 10vw, 54px);
  }
  .section--compact {
    padding-block: clamp(28px, 8vw, 42px);
  }
  .sec-head {
    max-width: 100%;
  }
  .sec-head h2,
  .pagehero h1 {
    overflow-wrap: anywhere;
  }

  .btn {
    width: auto;
    max-width: 100%;
    min-height: 46px;
    padding: 0.75rem 1rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .nav {
    gap: 10px;
    padding-block: 8px;
  }
  .brand img {
    height: 54px;
    max-width: 160px;
    object-fit: contain;
  }
  .nav__toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .hero--video {
    min-height: 0;
    height: clamp(380px, 70vh, 600px);
    max-height: none;
  }

  .hero__inner {
    align-items: flex-end;
    padding-bottom: 54px;
  }
  .hero__content {
    padding-block: 94px 0;
  }
  .hero__badge {
    max-width: 100%;
    border-radius: 18px;
    align-items: flex-start;
    line-height: 1.25;
  }
  .hero__title {
    font-size: clamp(1.85rem, 11vw, 2.55rem);
  }
  .hero__tag {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero__cta {
    gap: 10px;
  }
  .hero__cta .btn {
    flex: 1 1 100%;
  }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
  }
  .hero__stats > div {
    padding: 0;
  }
  .hero__stats > div::after {
    display: none;
  }
  .hero__stats span {
    display: block;
    line-height: 1.25;
  }
  .hero__scroll {
    display: none;
  }

  .pagehero__inner {
    padding: clamp(34px, 12vw, 58px) 0;
  }
  .pagehero h1 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }
  .pagehero p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .crumb {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    line-height: 1.3;
  }

  .split {
    gap: 24px;
  }
  .split__media .frame,
  .about-figure,
  .pd-gallery .scene,
  .pd-gallery .pkg-img {
    border-radius: 16px;
  }
  .split__media .frame,
  .pd-gallery .scene,
  .pd-gallery .pkg-img {
    aspect-ratio: 4/3;
  }

  .features,
  .features--diff,
  .pkg-grid,
  .blog-grid,
  .values,
  #what-drives-us .values {
    grid-template-columns: 1fr;
  }
  .features--6 {
    grid-template-columns: 1fr 1fr;
  }
  .feature,
  .value {
    padding: 22px 18px;
  }

  .card {
    border-radius: 16px;
  }
  .card__foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .card__foot .btn {
    width: 100%;
  }
  .card__badge {
    max-width: calc(100% - 28px);
  }
  .card__dur {
    left: 12px;
    right: auto;
    max-width: calc(100% - 24px);
  }

  .pkg-search {
    border-radius: 16px;
    padding: 0.72rem 0.95rem;
    margin-bottom: 22px;
  }
  .pkg-search input {
    min-width: 0;
    font-size: 0.95rem;
  }
  .filterbar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 2px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filterbar::-webkit-scrollbar {
    display: none;
  }
  .filter-chip {
    flex: 0 0 auto;
    padding: 0.55rem 0.9rem;
  }

  .tst-slider {
    gap: 8px;
  }
  .tst {
    padding: 0 6px;
  }
  .tst__card {
    padding: 22px 18px;
  }

  .faq__q {
    padding: 18px;
    font-size: 1.05rem;
  }
  .faq__a p {
    padding: 0 18px 20px;
  }

  .pd-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .incl-grid {
    grid-template-columns: 1fr;
  }
  .pd-tabs {
    flex-wrap: nowrap;
    gap: 12px;
    padding-bottom: 2px;
  }
  .pd-tab {
    flex: 0 0 auto;
    padding: 0.72rem 0.2rem;
  }

  .enquiry-card__head,
  .enquiry-card__body,
  .form-wrap__head,
  .form-wrap__body {
    padding-inline: 18px;
  }

  .cta {
    border-radius: 18px;
  }
  .cta__inner {
    padding: 24px 18px;
  }
  .cta__actions {
    flex-direction: column;
  }
  .cta__actions .btn {
    width: 100%;
  }

  .footer {
    padding-top: 40px;
  }
  .footer__grid {
    gap: 24px;
    padding-bottom: 32px;
  }
  .footer__brand img {
    height: 72px;
  }
  .footer__bar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 16px;
  }

  .enquire-strip {
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom, 0px));
  }
  .enquire-strip .es-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .enquire-strip .btn {
    min-width: 0;
    min-height: 42px;
    padding: 0.65rem 0.7rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .features--6 {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    grid-template-columns: 1fr;
  }
  .hero__stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 10px;
  }
  .hero__stats > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .hero__stats b {
    flex: 0 0 auto;
  }
  .hero__stats span {
    text-align: right;
  }
  .topbar__left a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .post__meta {
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .info-card {
    padding: 14px;
  }
}

/* Blog detail image size */
body[data-page="blog"] #blog-detail .pd-gallery {
  max-width: 1200px;
  margin: 0 auto 24px;
}

body[data-page="blog"] #blog-detail .pd-gallery .pkg-img,
body[data-page="blog"] #blog-detail .pd-gallery .scene {
  width: 100%;
  aspect-ratio: 16 / 6;
  max-height: 1500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  body[data-page="blog"] #blog-detail .pd-gallery .pkg-img,
  body[data-page="blog"] #blog-detail .pd-gallery .scene {
    aspect-ratio: 16 / 7;
    max-height: 280px;
  }
}

@media (max-width: 768px) {
  .hero__inner {
    align-items: flex-start;
  }

  .hero__content {
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .hero__badge {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: 2rem !important;
    line-height: 1.12;
    margin-bottom: 10px;
  }

  .hero__tag {
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero__stats {
    display: none;
  }
}

/* ============================ HERO SLIDER ADDITIONS ==================== */
.hero.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3264 / 1312; /* Locks the ratio exactly to 2.488:1 */
  height: auto;
  min-height: auto;
  max-height: none;
  background: var(--navy);
  overflow: hidden;
}

.hero.slider .slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero.slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.hero.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

/* --- Arrows (Visible on Hover) --- */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}

.slider__arrow--prev {
  left: 24px;
}
.slider__arrow--next {
  right: 24px;
}

/* Show arrows on hover (Desktop) */
.hero.slider:hover .slider__arrow {
  opacity: 1;
  visibility: visible;
}

/* Hide arrows on mobile (users can swipe instead) */
@media (max-width: 760px) {
  /* --- Hide arrows by default, show ONLY on press/tap --- */
  .slider__arrow {
    display: grid !important;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: opacity 0.2s ease;
  }

  /* This makes the arrows appear when you hold/press the banner */
  .hero.slider:active .slider__arrow {
    opacity: 0.85;
    visibility: visible;
  }

  /* --- Reduce the size of the Stats Section --- */
  .section--stats {
    padding-block: 20px !important;
  }
  .stats {
    gap: 10px !important;
  }
  .stat {
    padding: 6px !important;
  }
  .stat__num {
    font-size: 1.7rem !important;
  }
  .stat__label {
    font-size: 0.75rem !important;
    margin-top: 4px !important;
  }
}

/* ============================ HEADER OVERLAP & GAP FIX ============================ */
@media (max-width: 1040px) {
  /* Restores the blue top bar so it isn't hidden behind the white header */
  .topbar {
    position: relative !important;
  }

  /* Makes the white header stick naturally below the top bar */
  .header {
    position: sticky !important;
    top: 0 !important;
    animation: none !important;
    transform: none !important;
  }
  hero.slider {
    min-height: 0;
    height: auto !important;

    /* Option 2: If you prefer a fixed height instead, delete the aspect-ratio line above and use this:
    height: 400px !important; */

    max-height: none;
    margin-top: 0;
  }
  /* Removes the buggy white gap above the banner */
  body {
    padding-top: 0 !important;
  }
}
