/* ============================================================
   CAMBODIA ESCAPE — Karma Experience Landing Page
   Premium editorial travel design
   ============================================================ */

/* ---------- Google Fonts are loaded via <link> in HTML ---------- */

/* ---------- Custom font faces (local) ---------- */
@font-face {
  font-family: "Shoreline Skeletons Demo";
  src: url("../fonts/ShorelineSkeletonsDemoRegular-AR2BM.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Stallion Attacks";
  src: url("../fonts/StallionAttacks-KVoo7.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "KactigonaRegular-E4m3j";
  src: url("../fonts/KactigonaRegular-E4m3j.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* === Colour palette — earthy gold & temple dark === */
  --gold: #c9a84c;
  --gold-light: #e1a241;
  --gold-dark: #8c6e2a;
  --cream: #f5efe0;
  --cream-dark: #d9ceb5;
  --bg-dark: #17110d;
  --bg-section: #241811;
  --text-light: #f5f0e8;
  --text-muted: #b8a98a;
  --overlay-dark: rgba(10, 6, 3, 0.65);
  --overlay-gradient: linear-gradient(180deg,
      rgba(10, 6, 3, 0.35) 0%,
      rgba(10, 6, 3, 0.7) 55%,
      rgba(10, 6, 3, 0.92) 100%);

  /* === Typography === */
  --ff-display: "Playfair Display", "Georgia", serif;
  --ff-script: "Cormorant Garamond", "Georgia", serif;
  --ff-body: "Inter", "Helvetica Neue", sans-serif;

  /* === Sizing === */
  --header-h: 72px;
  /* Fixed header: padding + logo (5rem) extends past inner bar — use for clearing content below */
  --site-header-offset: calc(5rem + 2.75rem);
  --section-pad: clamp(2rem, 5vw, 5rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1520px;
  }
}

@media (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
  background: #ffffff14;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 12px 1px #121212b3;
}

.site-header.scrolled {
  background: rgba(13, 9, 6, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  /* max-width: 1400px; */
  margin: 0 auto;
  height: calc(var(--header-h) - 12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

/* Logo */
.header-logo img {
  height: 4rem;
  width: auto;
  transition: opacity 0.3s ease;
}

.header-logo:hover img {
  opacity: 0.85;
}

/* Desktop Nav */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: clamp(1.25rem, 2.8vw, 5rem);
}

.nav-link {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dark);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* CTA Button */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.btn-enquire {
  display: flex;
  align-items: center;
  background: #daa344;
  width: fit-content;
  padding: 1.235rem;
  border-radius: 45px;
  color: #120e0a;
  font-weight: 600;
  /* font-size: 1rem; */
  /* justify-content: center; */
}

/* ============================================================
   MOBILE SIDEBAR
   ============================================================ */
.mobile-sidebar {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 3000;
  pointer-events: none;
  visibility: hidden;
}

.mobile-sidebar.open {
  pointer-events: auto;
  visibility: visible;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-sidebar.open .sidebar-overlay {
  opacity: 1;
}

.sidebar-content {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  max-width: 100vw;
  height: 100dvh;
  background: linear-gradient(180deg, #1a110b 0%, #0d0906 100%);
  padding: calc(var(--header-h) + 0.9rem) 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -16px 0 36px rgba(0, 0, 0, 0.55);
}

.mobile-sidebar.open .sidebar-content {
  transform: translateX(0);
}

.sidebar-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.sidebar-close:hover {
  color: var(--cream);
}

.sidebar-logo {
  width: 120px;
  margin: 0 auto 0.2rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-link {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dark);
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.sidebar-link:hover {
  color: var(--gold-light);
  padding-left: 1rem;
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

@media (max-width: 600px) {
  .sidebar-content {
    width: 100vw;
    padding: calc(var(--header-h) + 0.75rem) 1rem 1.1rem;
  }

  .sidebar-link {
    font-size: 1rem;
    padding: 0.85rem 0.25rem;
  }
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1rem 2rem;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/CamGallery/leaves-border-5.png") no-repeat center center;
  background-size: cover;
  /* opacity: 0.5; */
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 10s ease-out;
  /* Subtle Ken Burns effect */
}

.hero-img.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgb(13 9 6 / 70%) 0%,
      rgb(13 9 6 / 32%) 25%,
      rgb(13 9 6 / 32%) 75%,
      rgba(13, 9, 6, 0.7) 100%);
  pointer-events: none;
}

/* Leaf Decorations (CSS pseudo-gradient blurs) */
.leaf {
  position: absolute;
  width: 220px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.35;
}

.leaf-left {
  left: -40px;
  bottom: 5%;
  background: radial-gradient(ellipse at center,
      rgba(34, 80, 30, 0.7) 0%,
      transparent 70%);
  transform: rotate(-15deg);
}

.leaf-right {
  right: -40px;
  top: 10%;
  background: radial-gradient(ellipse at center,
      rgba(34, 80, 30, 0.7) 0%,
      transparent 70%);
  transform: rotate(20deg);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow */
.hero-eyebrow {
  font-family: "KactigonaRegular-E4m3j", serif;
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  animation: fadeInUp 1s 0.2s ease-out both;
}

.hero-eyebrow-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  animation: fadeInUp 1s 0.28s ease-out both;
}

.divider-line {
  width: clamp(80px, 14vw, 140px);
  height: 1px;
  background: linear-gradient(90deg,
      rgba(232, 212, 139, 0) 0%,
      rgba(232, 212, 139, 0.9) 50%,
      rgba(232, 212, 139, 0) 100%);
}

.divider-dot {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(232, 212, 139, 0.95);
  background: rgba(232, 212, 139, 0.9);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(232, 212, 139, 0.45);
  transform: rotate(45deg);
}

/* Title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  margin: 1.5rem 0;
  animation: fadeInUp 1s 0.35s ease-out both;
  gap: 0.5rem;
}

.title-main {
  font-family: "Shoreline Skeletons Demo", serif;
  font-size: clamp(1.2rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  text-shadow: 0 6px 30px rgb(0 0 0);
  letter-spacing: 1px;
  line-height: 1.45;
}

.title-script {
  font-family: "KactigonaRegular-E4m3j", serif;
  font-size: clamp(2.2rem, 7vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: #f9a92e;
  margin-top: -0.15em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  display: inline-block;
  padding: 0 5.2rem;
}

.title-script::before,
.title-script::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(56px, 9vw, 100px);
  height: clamp(18px, 3vw, 40px);
  transform: translateY(-45%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.95;
}

.title-script::before {
  left: 0;
  background-image: url("../images/CamGallery/text-border-left.png");
}

.title-script::after {
  right: 0;
  background-image: url("../images/CamGallery/text-border-right.png");
}

/* ===== Three Tilted Photo Cards ===== */
.hero-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  position: relative;
  height: clamp(220px, 34vw, 385px);
  width: 100%;
  max-width: min(96vw, 70rem);
  animation: fadeInUp 1s 0.5s ease-out both;
}

.hero-card {
  position: absolute;
  width: clamp(150px, 22vw, 20rem);
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 15px solid rgb(255, 255, 255);
  box-shadow:
    0 8px 30px rgb(0 0 0),
    0 6px 8px rgb(0 0 0);
  transition:
    transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-left {
  left: -3%;
  transform: rotate(-8deg) translateY(50px);
  z-index: 1;
}

/* .card-left:hover {
  transform: rotate(-4deg) translateY(-5px) scale(1.05);
} */

.card-center {
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  z-index: 3;
  width: clamp(190px, 28vw, 24rem);
}

/* .card-center:hover {
  transform: translateX(-50%) translateY(-12px) scale(1.05);
} */

.card-right {
  right: -3%;
  transform: rotate(8deg) translateY(50px);
  z-index: 2;
}

/* .card-right:hover {
  transform: rotate(4deg) translateY(-5px) scale(1.05);
} */

/* ===== Stay Period ===== */
.hero-stay-period {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--ff-body);
  font-size: clamp(0.72rem, 1.35vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8, 7, 7, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgb(201 168 76 / 56%);
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  margin-bottom: 0.75rem;
  animation: fadeInUp 1s 0.6s ease-out both;
}

.hero-stay-period .stay-period-icon {
  font-size: 1.2rem !important;
  color: var(--gold);
}

/* ===== Duration Badge Row ===== */
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8, 7, 7, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgb(201 168 76 / 56%);
  border-radius: 14px;
  padding: 0.5rem 1.7rem;
  margin-bottom: 0.65rem;
  animation: fadeInUp 1s 0.65s ease-out both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.2rem;
}

.badge-icon {
  font-size: 2rem !important;
  color: var(--gold);
}

.badge-text {
  font-family: var(--ff-body);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.badge-text strong {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.2rem;
}

.badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(201, 168, 76, 0.4);
}

/* Sub Info */
.hero-sub-info {
  font-family: var(--ff-body);
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f1e4;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgb(201 168 76 / 56%);
  border-radius: 999px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s 0.75s ease-out both;
}

/* ===== Feature Highlights ===== */
.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  width: min(100%, 920px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 2, 2, 0.38);
  animation: fadeInUp 1s 0.85s ease-out both;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  min-width: 0;
  flex: 1;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.feature-icon {
  font-size: 1.4rem !important;
  color: var(--gold);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-label {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f2ede2;
  text-align: left;
  line-height: 1.25;
}

/* Destination Journey Styling */
.destination-journey {
  flex: 2.5 !important;
  justify-content: space-between !important;
  padding: 0.95rem 2rem !important;
  gap: 1.2rem !important;
}

.dest-point {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dest-hotel {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.dest-city {
  font-size: 0.6rem;
  color: rgba(242, 237, 226, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.dest-path {
  flex: 1;
  position: relative;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
}

.plane-icon {
  position: absolute;
  font-size: 1.1rem !important;
  color: var(--gold);
  background: #120e0a;
  padding: 0 4px;
}

/* Special Bonus Box */
.special-bonus-box {
  margin-top: 1.2rem;
  padding: 0.6rem 1.8rem;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: fadeInUp 1s 1s ease-out both;
}

.bonus-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: #000;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-text {
  font-size: 0.8rem;
  color: var(--cream);
  margin: 0;
  letter-spacing: 0.02em;
}

.bonus-text strong {
  color: var(--gold-light);
  font-weight: 700;
}

.feature-item:last-child {
  border-right: none;
}

.hero-offer-note {
  margin-top: 0.7rem;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.9);
}

/* ============================================================
   ITINERARY & FORM SECTION — Premium Redesign
   ============================================================ */
.itinerary-section {
  position: relative;
  background: #ffd7b9;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  /* min-height: 100vh; */
  width: 100%;
  max-width: 100%;
}

.itinerary-section h2 {
  color: #1f1610;
}

.itinerary-container {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 28px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
  /* Stretch columns to match height */
  min-height: 100vh;
  /* padding-bottom: 50px; */
}

/* Left side: Itinerary */
.itinerary-left {
  position: relative;
  padding: 5rem 4rem 8rem 5%;
  min-width: 0;
}

.section-title {
  font-family: var(--ff-display), serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 4rem;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.day-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.itinerary-disclaimer {
  margin: 0;
  padding: 1rem 1.25rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(31, 22, 16, 0.88);
  background: rgba(31, 22, 16, 0.07);
  border-left: 3px solid var(--gold-light);
  border-radius: 0 10px 10px 0;
  flex-shrink: 0;
}

.itinerary-disclaimer strong {
  color: #1f1610;
  font-weight: 700;
}

/* ===== Day Card — Full-Bleed Image with Content Overlay ===== */
.day-card {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  filter: brightness(1);
  transform: none;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* When another card becomes active in frame, this card blurs */
.day-card:not(.is-active) {
  opacity: 0.72;
  filter: blur(4px) brightness(0.72) saturate(0.9);
  transform: scale(0.985);
}

.day-card.is-active {
  z-index: 5;
  opacity: 1;
  filter: blur(0) brightness(1);
  transform: scale(1);
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); */
}

/* Background image fills entire card */
.day-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay on the image */
.day-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg,
      rgba(10, 7, 4, 0.95) 0%,
      rgba(10, 7, 4, 0.75) 35%,
      rgba(10, 7, 4, 0.15) 65%,
      rgba(10, 7, 4, 0.05) 100%);
}

/* Content on top of the image */
.day-inner {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

/* Day Badge — Icon + Number */
.day-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.day-icon-wrap {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  flex-shrink: 0;
}

.day-icon-wrap .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--gold-light);
}

.day-number {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.day-inner h3 {
  font-family: var(--ff-display), serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.day-inner p {
  margin-bottom: 0.8rem;
}

/* Style for ampersands to avoid font watermark issues */
.amp {
  font-family: "Inter", serif;
  font-style: italic;
  font-weight: normal;
  display: inline-block;
  /* margin: 0 0.2em; */
}

.day-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  list-style: none;
}

.day-inner li {
  font-size: 1.05rem;
  color: var(--cream-dark);
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.6;
}

.day-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.day-inner .day-sub-list {
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  padding-left: 1rem;
  gap: 0.15rem;
}

.day-inner .day-sub-list li {
  font-size: 0.98rem;
  padding-left: 1.45rem;
}

.day-inner .day-sub-list li::before {
  width: 7px;
  height: 7px;
  border: 1.3px solid var(--gold-light);
  background: transparent;
}

/* ===== Ornamental Vertical Divider ===== */
.section-divider {
  display: flex;
  align-items: flex-start;
  /* Start from top to align with cards */
  justify-content: center;
  width: 28px;
  min-width: 28px;
  max-width: 28px;
  height: 100%;
  position: relative;
  z-index: 5;
}

.divider-track {
  position: absolute;
  top: 5rem;
  /* Matches .itinerary-left padding-top */
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  /* Matches .day-cards gap */
  align-items: center;
}

.divider-step {
  width: 1.5px;
  height: 600px;
  /* Matches .day-card min-height */
  background: rgba(45, 32, 22, 0.28);
  border-radius: 999px;
  background: rgba(58, 41, 27, 0.68);
  box-shadow: 0 0 0 rgba(97, 68, 44, 0.22);
  transition: all 0.3s ease;
}

.divider-step.active {
  background: rgba(121, 86, 56, 0.95);
  box-shadow: 0 0 10px rgba(121, 86, 56, 0.45);
}

.divider-star {
  position: absolute;
  top: calc(5rem + 300px);
  /* Centers star on first step (5rem pad + 300px half-height) */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #8f6847;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(53, 37, 24, 0.35),
    0 0 14px rgba(143, 104, 71, 0.45);
  z-index: 2;
}

/* ===== Right side: Fixed Form ===== */
.itinerary-right {
  position: relative;
  z-index: 10;
  background: #1f1610;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
}

.sticky-form-wrapper {
  position: sticky;
  top: 0;
  padding: calc(var(--site-header-offset) + 0.2rem) 6% 1.5rem 4%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== Form Validation Styles ===== */
.error-msg {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  animation: fadeInError 0.3s ease;
}

@keyframes fadeInError {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.has-error input,
.has-error select {
  border-color: rgba(255, 107, 107, 0.4) !important;
  background: rgba(255, 107, 107, 0.05) !important;
}

.has-error label {
  color: #ff6b6b !important;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  min-width: 0;
  max-width: 100%;
  justify-content: center;
}

.form-title {
  font-family: var(--ff-display), serif;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  letter-spacing: 1px;
  color: var(--gold-light);
  /* margin-top: 0.2rem; */
  margin-bottom: 1.5rem;
  /* padding-top: 0.2em; */
  text-align: left;
  line-height: 1.15;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: #fff;
  width: 100%;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(225, 162, 65, 0.12);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1410;
  color: #fff;
}

.phone-input {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  overflow: hidden;
  min-width: 0;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.country-code img {
  width: 18px;
  border-radius: 2px;
}

.country-code .material-symbols-outlined {
  font-size: 1.2rem;
  color: #999;
}

.phone-input input {
  background: transparent;
  border: none;
  min-width: 0;
  flex: 1;
}

/* Custom Checkbox */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.3rem 0;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 2.2rem;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 1.3rem;
  width: 1.3rem;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  transition: all 0.2s ease;
}

.checkbox-container input:checked~.checkmark {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.submit-btn {
  background: linear-gradient(135deg, #ffc837 0%, #ff8008 100%);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  /* font-family: "KactigonaRegular-E4m3j", serif; */
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 128, 8, 0.35);
}

.submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 128, 8, 0.5);
}

.submit-btn:active {
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-loader {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 5, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.form-loader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.form-loader-inner {
  background: #1d140f;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.form-loader-inner p {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.form-loader-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold-light);
  animation: spinLoader 0.8s linear infinite;
}

@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   ITINERARY RESPONSIVE
   ============================================================ */
@media (max-width: 1300px) {
  .itinerary-container {
    grid-template-columns: 1fr;
  }

  .section-divider {
    display: none;
  }

  .itinerary-right {
    order: -1;
  }

  .sticky-form-wrapper {
    position: relative !important;
    top: 0 !important;
    padding: 3rem 5% 2rem 5%;
    height: auto;
    overflow-y: visible;
  }

  .itinerary-left {
    padding: 2rem 5% 5rem;
  }
}

/* ============================================================
   ABOUT RESORT SECTION (Grid Layout)
   ============================================================ */
.about-resort {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-resort .container {
  margin-right: auto;
  margin-left: auto;
}

.about-header {
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-header .eyebrow {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.about-header .title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-header .description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: all 0.4s ease;
  height: 100%;
  border-radius: 4px;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-card .icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card .icon-wrap svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.about-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-center {
  height: 100%;
  min-height: 600px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.about-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-center:hover img {
  transform: scale(1.08);
}

/* Remove old highlights styles if they were there */
.resort-highlights {
  display: none;
}

/* ============================================================
   ROOM SECTION
   ============================================================ */
.room-section {
  padding: var(--section-pad) 0;
  background: #ffd7b9;
  position: relative;
  overflow: hidden;
}

.room-section .container {
  margin-right: auto;
  margin-left: auto;
}

.room-title-block {
  text-align: center;
  margin-bottom: 5rem;
}

.room-title-block .eyebrow {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border-left: 1px solid #1e1815;
  border-right: 1px solid #1e1815;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1e1815;
  margin-bottom: 1.5rem;
}

.room-title-block h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #1f1610;
  /* letter-spacing: 0.05em; */
}

.room-layout {
  display: flex;
  align-items: center;
  position: relative;
}

.room-info {
  flex: 0 0 45%;
  background: #120e0a;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 3vw, 4.5rem);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  z-index: 5;
  /* box-shadow: 40px 0 80px rgba(0, 0, 0, 0.4); */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Fixed starting point at the top */
  min-height: 550px;
}

.room-info .special-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.5rem 1.2rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.room-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.room-info .capacity {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: block;
}

.room-info .description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.room-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.room-amenity {
  text-align: center;
}

.room-amenity .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}

.room-amenity span:last-child {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.room-gallery {
  flex: 0 0 65%;
  margin-left: -10%;
  position: relative;
  height: clamp(500px, 40vw, 750px);
  overflow: visible;
  /* Changed to visible for detail image */
}

.room-image-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.4s;
}

.room-image-set.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.main-room-img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.main-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-room-img {
  position: absolute;
  bottom: -40px;
  right: 10%;
  width: 40%;
  aspect-ratio: 4 / 3;
  border: 10px solid #120e0a;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); */
  border-radius: 4px;
  overflow: hidden;
  z-index: 6;
}

.detail-room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .room-layout {
    flex-direction: column-reverse;
    /* Put gallery above info */
    gap: 0;
    /* Remove gap */
  }

  .room-info {
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 3rem 2rem;
    min-height: auto;
    border-top: none;
    /* Make it look attached */
  }

  .room-gallery {
    flex: 1;
    width: 100%;
    margin-left: 0;
    height: 400px;
  }

  .main-room-img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .detail-room-img {
    width: 50%;
    right: 5%;
  }
}

@media (max-width: 1024px) {
  .room-nav {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: center;
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .room-carousel {
    min-height: 1000px;
  }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}

/* Gallery Tabs Styling */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  animation: fadeInUp 1s ease-out both;
}

.gallery-tab {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--cream);
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
}

.gallery-tab:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.gallery-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.25);
}

.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
  animation: galleryFadeIn 0.8s ease-out forwards;
}

.iti__country-name {
  color: #120e0a;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .gallery-tabs {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .gallery-tab {
    width: 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-item {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-section p {
  color: var(--gold) !important;
  border-left: 1px solid var(--gold) !important;
  border-right: 1px solid var(--gold) !important;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 6, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item.large {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 4;
}

.gallery-item.half {
  grid-column: span 3;
}

/* ============================================================
   IMPORTANT NOTES SECTION
   ============================================================ */
.itinerary-notes {
  background: radial-gradient(circle at center, #1a120b 0%, #120e0a 100%);
  padding: 4rem 0;
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.notes-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgb(38 20 11);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 4rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.notes-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* intl-tel-input visibility fix */
.iti__country-list {
  background-color: #fff !important;
  color: #333 !important;
}

.iti__country-name,
.iti__dial-code {
  color: #333 !important;
}

.iti__selected-dial-code {
  color: var(--cream) !important;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  position: relative;
}

/* Subtle vertical divider */
.notes-grid::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 55%;
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom,
      transparent,
      rgba(201, 168, 76, 0.1),
      transparent);
}

.notes-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.notes-header .material-symbols-outlined {
  color: var(--gold);
  font-size: 2.2rem;
}

.notes-header h3 {
  font-family: var(--ff-display), serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 1px;
  line-height: 1.2;
}

.notes-list,
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.notes-list li,
.why-list li {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--cream-dark);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  line-height: 1.5;
}

.notes-list .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.why-list .check {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.notes-footer-box {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(201, 168, 76, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.notes-footer-box .material-symbols-outlined {
  color: var(--gold);
  opacity: 0.9;
}

.notes-footer-box p {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
  opacity: 0.9;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 10rem 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/CamGallery/testibg.webp") center/cover no-repeat fixed;
  text-align: center;
  position: relative;
}

.testimonials-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .testimonials-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .testimonials-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .testimonials-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .testimonials-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .testimonials-container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .testimonials-container {
    max-width: 1520px;
  }
}

@media (min-width: 1800px) {
  .testimonials-container {
    max-width: 1720px;
  }
}

.testimonials-section h2 {
  text-align: center;
}

.testimonials-section .hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.testimonials-section .section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 4rem;
}

.testimonialSwiper {
  padding: 4rem 1rem 2rem;
  overflow: visible;
}

.testimonialSwiper .swiper-slide {
  height: auto;
  opacity: 1;
  /* Keep them visible */
}

.testimonial-card {
  height: 100%;
  background: rgb(255 233 198 / 90%);
  /* Dark green/grey from image */
  padding: 3rem 2.5rem;
  border: none;
  border-radius: 4px;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: var(--ff-display), serif;
  font-size: 10rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.testimonial-text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--bg-section);
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.testimonial-author-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.testimonial-author-block h4 {
  font-family: var(--ff-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.testimonial-author-block span {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.3;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

/* .testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
} */

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--ff-display);
  font-size: 6rem;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* .testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
} */

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  text-align: left;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  text-align: left;
}

/* ============================================================
   FOOTER (As per layout image)
   ============================================================ */
.site-footer {
  background: #1a1714;
  padding: 5rem 0 2rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 1rem;
}

.footer-logo {
  max-width: 240px;
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--gold);
}

.office-list {
  list-style: none;
}

.office-list li {
  margin-bottom: 0.8rem;
  color: #999;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.office-list li i {
  font-size: 0.7rem;
  color: var(--gold);
}

.office-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.enquire-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #ffec00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .notes-grid {
    gap: 3rem;
  }

  .notes-grid::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-center {
    grid-column: span 2;
    order: -1;
    min-height: 450px;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Tablet ---- */
@media (max-width: 992px) {

  .header-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-cards {
    height: clamp(220px, 35vw, 320px);
  }

  .hero-card {
    width: clamp(180px, 30vw, 24rem);
  }

  .card-center {
    width: clamp(210px, 34vw, 26rem);
  }

  .card-left {
    left: 4%;
  }

  .card-right {
    right: 4%;
  }

  .hero-content {
    margin-top: 0.8rem;
  }
}

@media (max-width: 900px) {
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, auto);
    gap: 1rem;
    padding: 0 0.75rem;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.half {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .day-card {
    min-height: 400px;
    margin-bottom: 3rem;
    position: sticky;
    top: 100px;
    /* Stacks below the sticky header area */
    z-index: 1;
  }

  .pin-spacer {
    overflow: hidden !important;
  }

  .day-inner {
    padding: 1.5rem;
  }

  .day-inner h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .day-inner li {
    font-size: 0.9rem;
    padding-left: 1.5rem;
    line-height: 1.4;
  }

  .day-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .room-info {
    padding: 3rem 2rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .room-amenities {
    grid-template-columns: 1fr 1fr;
  }

  .detail-room-img {
    display: none;
  }

  .room-gallery {
    height: 400px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-center {
    grid-column: span 1;
  }

  .about-header .title {
    font-size: 2.2rem;
  }

  .submit-btn {
    font-size: 0.8rem;
  }

  .itinerary-notes {
    padding: 3rem 5% 6rem;
  }

  .notes-card {
    padding: 3rem 1.8rem;
  }

  .notes-header h3 {
    font-size: 1.6rem;
  }

  .notes-list li,
  .why-list li {
    font-size: 0.95rem;
    gap: 1rem;
  }

  .about-header .description {
    font-size: 1rem;
  }
}

/* ---- Mobile ---- */
@media (max-width: 600px) {
  :root {
    --header-h: 60px;
    --site-header-offset: calc(34px + 2.25rem);
  }

  .header-logo img {
    height: 34px;
  }

  .hero-banner {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 2.5rem);
    /* Increased to clear header */
    padding-bottom: 2rem;
  }

  .hero-title {
    margin: 0.5rem 0;
  }

  .hero-eyebrow {
    font-size: 0.9rem;
  }

  .hero-eyebrow-divider {
    gap: 0.35rem;
    margin-bottom: 0.7rem;
  }

  .divider-line {
    width: clamp(54px, 18vw, 80px);
  }

  .divider-dot {
    width: 6px;
    height: 6px;
  }

  .title-main {
    /* font-size: 3rem; */
    letter-spacing: 3px;
  }

  .title-script {
    font-size: 1.45rem;
    padding: 0 3rem;
  }

  .title-script::before,
  .title-script::after {
    width: clamp(36px, 10vw, 62px);
    height: clamp(12px, 3vw, 22px);
  }

  .hero-cards {
    height: 180px;
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .hero-card {
    width: 150px;
    border-width: 3px;
  }

  .card-center {
    width: 170px;
  }

  .card-left {
    left: 2%;
  }

  .card-right {
    right: 2%;
  }

  .hero-stay-period {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    margin-bottom: 0.6rem;
  }

  .hero-stay-period .stay-period-icon {
    font-size: 1rem !important;
  }

  .hero-badge-row {
    padding: 0.5rem 1rem;
    gap: 0;
    border-radius: 10px;
  }

  .hero-badge {
    padding: 0 0.6rem;
    gap: 0.3rem;
  }

  .badge-text {
    font-size: 1.05rem;
  }

  .badge-text strong {
    font-size: 1.5rem;
  }

  .badge-icon {
    font-size: 1.6rem !important;
  }

  .badge-divider {
    height: 22px;
  }

  .hero-sub-info {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
  }

  .hero-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
    background: transparent;
    border: none;
  }

  .feature-item {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(2, 2, 2, 0.5);
    padding: 0.8rem 0.5rem;
    border-radius: 8px;
  }

  .destination-journey {
    grid-column: span 3;
    flex-direction: row;
    gap: 0.8rem !important;
    padding: 1.2rem !important;
  }

  .destination-journey .dest-point {
    align-items: center;
    text-align: center;
  }

  .destination-journey .dest-path {
    width: 1px;
    height: 30px;
    min-width: auto;
  }

  /* .destination-journey .plane-icon {
    transform: rotate(135deg);
  } */
  .feature-icon {
    font-size: 1.1rem !important;
    width: 2.3rem;
    height: 2.3rem;
    flex-shrink: 0;
  }

  .feature-label {
    font-size: 0.65rem;
    /* Slightly smaller for 2-column fit */
    line-height: 1.25;
    word-break: break-word;
  }

  .hero-offer-note {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
  }

  .badge-text {
    font-size: 0.9rem;
  }

  .day-card {
    min-height: 480px;
  }

  .day-card:not(.is-active) {
    opacity: 0.82;
    filter: blur(2.5px) brightness(0.82) saturate(0.92);
  }

  .itinerary-section h2 {
    font-size: 1.5rem;
  }

  .day-inner h3 {
    font-size: 1.2rem;
  }

  .day-inner li {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem !important;
    letter-spacing: 0 !important;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.9rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .room-info .description {
    font-size: 0.85rem;
  }

  .room-amenities {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .room-amenity span:last-child {
    font-size: 0.6rem;
  }

  .btn-enquire {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .notes-header h3 {
    font-size: 0.8rem;
  }

  .notes-card {
    padding: 2rem 1rem;
  }

  .notes-list li,
  .why-list li {
    font-size: 0.75rem;
    gap: 1rem;
  }

  .notes-list,
  .why-list {
    gap: 1rem;
  }

  .about-header .description {
    font-size: 0.85rem;
  }
}

/* ---- Very Small ---- */
@media (max-width: 380px) {
  .title-main {
    font-size: 1.68rem;
    letter-spacing: 1px;
  }

  .title-script {
    font-size: 1.25rem;
    padding: 0 2.2rem;
  }

  .hero-card {
    width: 110px;
    border-width: 2px;
    border-radius: 8px;
  }

  .card-center {
    width: 130px;
  }

  .hero-cards {
    height: 140px;
  }

  .feature-label {
    font-size: 0.56rem;
  }

  .feature-item {
    min-width: 75px;
    padding: 0.4rem 0.4rem;
  }
}

/* ===== Notes Single Column Mode ===== */
.notes-grid.single-column {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.notes-grid.single-column::after {
  display: none !important;
}

.notes-grid.single-column>.notes-column {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}

/* ============================================================
   TWO GREAT OFFERS SECTION
   ============================================================ */
.offers-section {
  padding: 6rem 0;
  background: var(--bg-section, #241811);
  /* Matches warm temple brick brown */
  position: relative;
  overflow: hidden;
}

.offers-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offers-header {
  margin-bottom: 4rem;
  text-align: center;
}

.offers-eyebrow {
  color: var(--gold, #c9a84c);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.offers-title {
  font-family: var(--ff-display), serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--cream, #f5efe0);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.offers-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted, #b8a98a);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* .offers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  align-items: stretch;
  margin-top: 2rem;
} */
.offers-grid {
    display: flex;
    /* grid-template-columns: repeat(1, 1fr); */
    /* gap: 3rem; */
    align-items: stretch;
    width: 500px;
    /* justify-content: center; */
    margin-top: 2rem;
    margin: auto;
}

/* Base Card Styling */
.offer-card {
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.offer-card-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Card 1: Standard Card (Earthy Cream Background) */
.standard-card {
  background: var(--cream, #f5efe0);
  color: var(--bg-dark, #17110d);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.offer-card-top-border {
  height: 6px;
  background: linear-gradient(90deg,
      var(--gold, #c9a84c) 0%,
      var(--gold-light, #e1a241) 100%);
  width: 100%;
}

.standard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Card 2: Premium Card (Temple Dark Background) */
.premium-card {
  background: var(--bg-dark, #17110d);
  color: var(--cream, #f5efe0);
  border: 1px solid rgba(201, 168, 76, 0.45);
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light, #e1a241);
  box-shadow: 0 25px 50px rgba(10, 6, 3, 0.6);
}

/* Icon & Header elements */
.offer-header-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.premium-card .offer-header-block {
  padding-right: 7rem;
  /* Prevents overlap with absolute Best Value badge */
}

.offer-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-circle {
  background: rgba(140, 110, 42, 0.12);
  /* Subtle Gold Dark background */
  color: var(--gold-dark, #8c6e2a);
}

.gold-circle {
  background: rgba(225, 162, 65, 0.15);
  /* Gold Light background */
  color: var(--gold-light, #e1a241);
}

.offer-svg-icon {
  width: 24px;
  height: 24px;
}

.offer-package-title {
  font-family: var(--ff-display), serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.standard-card .offer-package-title {
  color: var(--bg-dark, #17110d);
}

.premium-card .offer-package-title {
  color: #ffffff;
}

/* Price elements */
.offer-price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  /* Wraps gracefully on very narrow viewports */
  gap: 4px 0;
}

.currency-symbol {
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 2px;
}

.price-value {
  font-size: clamp(2.5rem,
      7vw,
      4.2rem);
  /* Dynamic fluid sizing for pristine mobile layout */
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.standard-card .currency-symbol,
.standard-card .price-value,
.standard-card .price-asterisk {
  color: var(--gold-dark, #8c6e2a);
}

.premium-card .currency-symbol,
.premium-card .price-value,
.premium-card .price-asterisk {
  color: var(--gold-light, #e1a241);
}

.price-asterisk {
  font-size: 2.2rem;
  font-weight: 700;
  margin-left: 2px;
  align-self: flex-start;
}

.price-period {
  font-size: 0.95rem;
  color: var(--bg-dark, #17110d);
  opacity: 0.7;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.premium-card .price-period {
  color: var(--text-muted, #b8a98a);
  opacity: 1;
}

.offer-divider {
  height: 1px;
  background: rgba(140, 110, 42, 0.15);
  margin-bottom: 2.5rem;
}

.premium-card .offer-divider {
  background: rgba(201, 168, 76, 0.2);
}

/* Features List */
.offer-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 600;
}

.feature-included {
  color: inherit;
}

.feature-excluded {
  color: var(--bg-dark, #17110d);
  opacity: 0.45;
}

.premium-card .feature-excluded {
  color: var(--text-muted, #b8a98a);
  opacity: 0.4;
}

.excluded-text {
  text-decoration: line-through;
}

.feature-icon {
  font-size: 1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
}

.feature-icon.check {
  color: var(--gold, #c9a84c);
}

.premium-card .feature-icon.check {
  color: var(--gold-light, #e1a241);
}

.feature-icon.cross {
  color: #d15041;
}

/* Best Value Badge */
.best-value-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold-light, #e1a241);
  color: var(--bg-dark, #17110d);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 15px rgba(225, 162, 65, 0.3);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 162, 65, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(225, 162, 65, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 162, 65, 0);
  }
}

/* CTA buttons */
.choose-deal-btn {
  width: 100%;
  padding: 1.15rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.outline-btn {
  background: transparent;
  border: 2px solid var(--gold-dark, #8c6e2a);
  color: var(--gold-dark, #8c6e2a);
}

.outline-btn:hover {
  background: var(--gold-dark, #8c6e2a);
  color: var(--cream, #f5efe0);
  transform: scale(1.02);
}

.solid-btn {
  background: var(--gold-light, #e1a241);
  border: 2px solid var(--gold-light, #e1a241);
  color: var(--bg-dark, #17110d);
  box-shadow: 0 5px 15px rgba(225, 162, 65, 0.3);
}

.solid-btn:hover {
  background: var(--gold, #c9a84c);
  border-color: var(--gold, #c9a84c);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
}

/* Responsive constraints */
@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .offers-section {
    padding: 4.5rem 0;
  }

  .offers-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
  }

  .offers-title {
    font-size: 2rem !important;
    margin-bottom: 1rem;
  }

  .offers-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 1rem;
    line-height: 1.5;
  }

  .offers-grid {
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
  }

  .offer-card-content {
    padding: 2.2rem 1.6rem 2.5rem;
  }

  .offer-header-block {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .premium-card .offer-header-block {
    padding-right: 0;
    /* No longer needed with static badge flow */
  }

  .offer-icon-circle {
    width: 36px;
    height: 36px;
  }

  .offer-svg-icon {
    width: 18px;
    height: 18px;
  }

  .offer-package-title {
    font-size: 1.15rem;
  }

  .offer-price-block {
    margin-bottom: 1.2rem;
  }

  .currency-symbol {
    font-size: 1.2rem;
  }

  .price-value {
    font-size: 2.5rem;
  }

  .price-asterisk {
    font-size: 1.4rem;
  }

  .price-period {
    font-size: 0.75rem;
    margin-left: 4px;
    letter-spacing: 1px;
  }

  .offer-divider {
    margin-bottom: 1.8rem;
  }

  .offer-features-list {
    gap: 0.85rem;
    margin-bottom: 2.5rem;
  }

  .offer-features-list li {
    font-size: 0.88rem;
    gap: 0.6rem;
  }

  .feature-icon {
    font-size: 0.8rem;
    width: 16px;
    height: 16px;
  }

  .choose-deal-btn {
    padding: 0.95rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .best-value-badge {
    position: static;
    align-self: flex-start;
    margin: 0 0 1.2rem 0;
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.3rem 0.9rem;
    box-shadow: 0 4px 10px rgba(225, 162, 65, 0.2);
  }
}

.th-header {
  background: rgba(0, 0, 0, 0.7) !important;
  padding: 1.4rem 0 !important;
}