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

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

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

/* ---------- 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;
}

@font-face {
  font-family: "RememberSummer-e97ap";
  src: url("../fonts/RememberSummer-e97ap.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

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

:root {
  /* === Phuket & Koh Samui Theme — Teal & Premium Yellow === */
  --teal: #004d4d;
  --teal-dark: #003333;
  --teal-light: #006666;
  --yellow: #ffd100;
  --yellow-accent: #f9d423;
  --bg-beige: #fdfbf6;
  --gold: var(--yellow);
  --gold-light: var(--yellow-accent);
  --gold-dark: #b89600;
  --cream: var(--bg-beige);
  --cream-dark: #e8e2d4;
  --bg-dark: #002d4b;
  --bg-section: #002d4c;
  --text-light: #f5f0e8;
  --text-muted: #a0b2b2;
  --overlay-dark: rgba(0, 45, 75, 0.7);
  --overlay-gradient: linear-gradient(180deg,
      rgba(0, 45, 75, 0.4) 0%,
      rgba(0, 45, 75, 0.75) 55%,
      rgba(0, 45, 75, 0.95) 100%);

  /* === Typography === */
  --ff-display: "Playfair Display", "Georgia", serif;
  --ff-script: "KactigonaRegular-E4m3j", "Cormorant Garamond", serif;
  --ff-body: "Inter", "Helvetica Neue", sans-serif;
  --ff-brush: "Inter", sans-serif;
  /* Switched to Inter as per request */

  /* === Sizing === */
  --header-h: 72px;
  --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: 10px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
  /* Clear header */
  backdrop-filter: blur(10px);
  box-shadow: none;
  /* No shadow */
}

.site-header.scrolled {
  background: rgba(13, 9, 6, 0.95);
  backdrop-filter: blur(10px);
  padding: 5px 0;
  box-shadow: none;
}

.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.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  /* Fully visible white */
  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;
}

.btn-enquire {
  display: flex;
  align-items: center;
  background: #f6c435;
  width: fit-content;
  padding: 1.235rem;
  border-radius: 45px;
  color: #ffffff;
  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, #002d4b 0%, #001a2e 100%);
  padding: calc(var(--header-h) + 2rem) 1.5rem 1.5rem;
  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;
  background: rgba(201, 168, 76, 0.05);
}

.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;
  }
}

/* ============================================================
   PHUKET & KOH SAMUI HERO BANNER — Editorial Redesign
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* Reduced from 120vh to end at visuals */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  /* Allow circles to overlap slightly if needed */
  padding-bottom: 5rem;
  background: var(--bg-beige);
  background-image: url("../images/KSPhuketGallery/texture-1.jpg");
  /* Reverting to local texture if needed, or keep previous */
  background-size: cover;
}

/* Background Top Section */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-img.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  display: none;
}

/* White Fade in Center (Vertical Strip) */
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  /* Widened slightly */
  height: 100%;
  background: linear-gradient(to right,
      #00000000 0%,
      rgb(255 255 255 / 74%) 20%,
      rgb(255 255 255 / 74%) 80%,
      transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Hero Decorations */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.top-left-splash {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle at 20% 20%,
      rgba(50, 150, 200, 0.3),
      transparent 70%);
  filter: blur(40px);
  transform: rotate(-15deg);
}

.bottom-icons {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  gap: 30px;
  opacity: 0.3;
}

.decor-icon {
  font-size: 3rem !important;
  color: #004d4d;
}

.hero-leaf-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 30%;
  background: url("../images/KSPhuketGallery/coconut-leave-2.png") no-repeat center center;
  background-size: cover;
  /* opacity: 0.15; Subtle overlay effect */
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: multiply;
  /* Helps blend with the sky/beach */
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  /* Above the leaf overlay */
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phuket-top-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: #004d4d;
  letter-spacing: 0px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.phuket-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  letter-spacing: -8px;

  /* Texture Background */
  background: url("../images/KSPhuketGallery/texture-1.jpg") center center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.phuket-plus {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #004d4d;
  margin: 0.5rem 0;
  letter-spacing: -1px;
}

.phuket-script {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 6vw, 2rem);
  color: #004d4d;
  font-style: italic;
  margin: 0.2rem 0;
}

.phuket-title-2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 0rem;
  letter-spacing: 0px;

  /* Texture Background */
  background: url("../images/KSPhuketGallery/texture-1.jpg") center center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.hero-book-lead {
  font-family: "KactigonaRegular-E4m3j", "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 3.8vw, 2.85rem);
  font-weight: 400;
  color: #004d4d;
  letter-spacing: 0.04em;
  margin: 0 0 0.1rem;
  line-height: 1.2;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.85);
}

.hero-main-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.75rem, 11vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin: 0 0 0.35rem;
  letter-spacing: -2px;
  text-transform: uppercase;

  /* Texture Background */
  background: url("../images/KSPhuketGallery/texture_3.jpg") center center;
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.35)); */
}

.hero-sub-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 500;
  color: #004d4d;
  margin-top: 0.5rem;
  /* margin-bottom: 1.5rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  letter-spacing: 1px;
}

.hero-sub-title::before,
.hero-sub-title::after {
  content: "";
  height: 1.5px;
  width: 40px;
  background: #004d4d;
}

.hero-offer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.offer-line-1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(.8rem, 2.8vw, 1.5rem);
  font-weight: 800;
  color: #0f0f46;
  letter-spacing: 0em;
  text-transform: uppercase;
  text-shadow: 1px 1px #fff;
}

.offer-line-2 {
  font-family: "KactigonaRegular-E4m3j", serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #000000;
  line-height: 1;
  text-shadow: 4px -1px #ffee01;
}

.hero-dest-details {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.6rem);
  font-weight: 600;
  color: #0f0f46;
  opacity: 0.8;
  letter-spacing: 0.02em;
  margin-top: 1rem;
  text-shadow: 1px 1px #ffffff;
}

/* Pricing Splash Area */
.phuket-pricing-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* margin-top: 1rem; */
  width: 100%;
}

.price-splash {
  color: #fff;
  padding: 2.5rem 3rem;
  /* Increased vertical padding */
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  /* Slightly smaller to fit better */
  font-weight: 400;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: fit-content;
  z-index: 1;

  /* Patch/Brush Effect Using Uploaded Asset */
  background: url("../images/KSPhuketGallery/stoke-bg.png") no-repeat center center;
  background-size: 100%;
  border-radius: 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.price-splash .price-val {
  color: #f6c435;
  font-weight: 900;
  font-size: 1.4em;
  font-family: "Inter", sans-serif;
  font-style: normal;
  display: inline-block;
  margin: 0;
  transform: translateY(-2px);
  /* Vertical adjustment for script alignment */
}

.worth-splash {
  color: #000;
  padding: 1.2rem 2.9rem;
  /* Increased vertical padding */
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.2rem);
  font-weight: 900;
  margin-top: -40px;
  /* Tighter overlap */
  width: fit-content;

  /* Patch/Brush Effect Using Uploaded Asset */
  background: url("../images/KSPhuketGallery/stoke-yellow.png") no-repeat center center;
  background-size: 100%;
  mask-image: none;
  -webkit-mask-image: none;
  z-index: 1;
}

/* Badges */
.phuket-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* Three Circles */
.hero-visuals {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -20px;
  /* Slight overlap */
  margin-top: 3rem;
  width: 100%;
}

.visual-circle {
  position: relative;
  width: clamp(150px, 20vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  overflow: visible;
  /* To allow label to show on top */
  z-index: 4;
}

.visual-circle.circle-center {
  width: clamp(180px, 25vw, 350px);
  z-index: 5;
  margin: 0 -30px;
  /* Overlap effect */
}

.visual-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.circle-label-splash {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #004d4d;
  color: #fff;
  padding: 0.4rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 20px 40px 15px 30px / 10px 15px 10px 20px;
  white-space: nowrap;
}

/* Inclusions List */
.hero-inclusions {
  background: #f0f7f7;
  border: 1.5px solid rgba(0, 77, 77, 0.15);
  border-radius: 25px;
  padding: 45px 40px 30px;
  max-width: 680px;
  width: 92%;
  margin: 50px auto 80px;
  text-align: left;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.inclusions-section {
  position: relative;
  background: url("../images/KSPhuketGallery/doodle.png") repeat;
  background-size: 600px;
  /* Adjust based on asset look */
  padding: 2rem 0 5rem;
  display: flex;
  justify-content: center;
  margin-top: -3px;
  /* Ensure no white gap */
}

.inclusions-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.hero-inclusions {
  position: relative;
  z-index: 15;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inclusions::before {
  display: none;
  /* Removed the pseudo-element doodle */
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 77, 77, 0.15);
}

.inclusion-item:last-child {
  border-bottom: none;
}

.inclusion-icon {
  width: 50px;
  height: 50px;
  background: #004d4d;
  color: #f6c435;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.inclusion-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #004d4d;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.inclusion-text b {
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
  }

  .hero-visuals {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }

  .visual-circle,
  .circle-center {
    width: 45% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    margin: 0;
    border-width: 6px;
  }

  .circle-center {
    width: 90% !important;
    order: -1;
  }

  .hero-inclusions {
    padding: 35px 20px 20px;
  }

  .inclusion-item {
    gap: 15px;
  }

  .inclusion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.inclusions-section {
  position: relative;
  background: url("../images/KSPhuketGallery/doodle.png") repeat;
  background-size: 600px;
  /* Adjust based on asset look */
  padding: 2rem 0 5rem;
  display: flex;
  justify-content: center;
  margin-top: -3px;
  /* Ensure no white gap */
}

.inclusions-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
}

.hero-inclusions {
  position: relative;
  z-index: 15;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inclusions::before {
  display: none;
  /* Removed the pseudo-element doodle */
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 77, 77, 0.15);
}

.inclusion-item:last-child {
  border-bottom: none;
}

.inclusion-icon {
  width: 50px;
  height: 50px;
  background: #004d4d;
  color: #f6c435;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.inclusion-text {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #004d4d;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.inclusion-text b {
  font-weight: 800;
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
  }

  .hero-visuals {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }

  .visual-circle,
  .circle-center {
    width: 45% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    margin: 0;
    border-width: 6px;
  }

  .circle-center {
    width: 90% !important;
    order: -1;
  }

  .hero-inclusions {
    padding: 35px 20px 20px;
  }

  .inclusion-item {
    gap: 15px;
  }

  .inclusion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ============================================================
   ITINERARY & FORM SECTION — Premium Redesign
   ============================================================ */
.itinerary-section {
  position: relative;
  background: #cbeaff;
  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;
}

.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;
}

.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;
}

/* ===== 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(201, 168, 76, 0.15);
  border-radius: 999px;
  transition: all 0.3s ease;
}

.divider-step.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(246, 196, 53, 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: var(--gold);
  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: #002d4c;
  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 {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.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: #002d4b;
  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);
}

/* Inclusions Splash at Bottom */
.hero-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, #fff 40%, transparent 100%);
  z-index: 6;
  pointer-events: none;
}

.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: var(--bg-beige);
  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: #000000;
  /* letter-spacing: 0.05em; */
}

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

.room-info {
  flex: 0 0 45%;
  background: #002d4b;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 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);
}

.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: 1rem;
  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, 35vw, 750px);
  overflow: visible;
}

.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;
}

.room-nav-arrows {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.room-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.room-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

.room-arrow .material-symbols-outlined {
  font-size: 1.25rem;
}

.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;
  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;
  }

  .room-info {
    flex: 1;
    margin-bottom: -100px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

/* 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;
}

/* ============================================================
   OFFER ELIGIBILITY NOTE — Inside notes card footer
   ============================================================ */
.notes-card .offer-eligibility {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: calc(100% + 8rem);
  max-width: none;
  margin: 2.5rem -4rem -4rem;
  padding: 1.35rem 2.5rem 1.35rem 2rem;
  background: #002147;
  border: none;
  border-radius: 0 0 20px 20px;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.notes-card .offer-eligibility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-light);
}

.notes-card .offer-eligibility-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-top: 0.15rem;
  margin-left: 0.5rem;
}

.notes-card .offer-eligibility-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.notes-card .offer-eligibility-text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
}

/* ============================================================
   IMPORTANT NOTES SECTION
   ============================================================ */
.itinerary-notes {
  background: #002d4b;
  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(0 71 118);
  border: 1px solid rgb(0, 42, 70);
  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: #126196;
  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(rgb(17 17 17 / 73%), rgb(0 45 75 / 63%)),
    url(../images/KSPhuketGallery/phuket-2.jpg) 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: 0rem;
}

.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);
  /* 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: #002d4c;
  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;
} */

@media (max-width: 380px) {
  .room-info {
    padding: 2rem 1.5rem;
    margin-bottom: -60px;
  }

  .room-info h3 {
    font-size: 1.4rem;
  }

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

  .gallery-grid {
    grid-auto-rows: 200px;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

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

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

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

  .why-list li,
  .notes-list li {
    font-size: 0.85rem;
  }
}

.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: #00000000;
  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;
  }

  .room-title-block {
    margin-bottom: 2rem;
  }
}

@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-layout {
    flex-direction: column-reverse;
    gap: 0;
  }

  .room-info {
    padding: 3rem 2rem;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0 0 20px 20px;
  }

  .room-gallery {
    height: 350px;
    width: 100%;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
  }

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

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

  .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-card .offer-eligibility {
    width: calc(100% + 3.6rem);
    margin: 2rem -1.8rem -3rem;
    padding: 1.15rem 1.25rem 1.15rem 1rem;
    gap: 1rem;
    border-radius: 0 0 16px 16px;
  }

  .notes-card .offer-eligibility-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .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.8rem;
    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-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;
    letter-spacing: 0;
  }

  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%;
}

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