/* ==========================================================================
   AIR PANAS CHERANA PUTIH (CP ONSEN MELAKA) - OFFICIAL STYLESHEET
   Theme: Natural Hot Spring & Soothing Pastel Healing Aesthetic
   ========================================================================== */

/* --------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------- */
:root {
  /* Sage & Nature Pastels */
  --sage-50: #f4f9f6;
  --sage-100: #e7f2ec;
  --sage-200: #cfe4d7;
  --sage-300: #a7ceb7;
  --sage-500: #4e8766;
  --sage-600: #3c6e52;
  --sage-800: #234533;

  /* Onsen Aqua / Mineral Water Pastels */
  --aqua-50: #f0fafb;
  --aqua-100: #dcf2f5;
  --aqua-200: #bbe5eb;
  --aqua-400: #62b7c4;
  --aqua-500: #327d8c;
  --aqua-700: #1d5662;
  --aqua-900: #103239;

  /* Warm Peach / Thermal Coral Pastels */
  --peach-50: #fff8f4;
  --peach-100: #fdeee5;
  --peach-200: #fcd8c4;
  --peach-400: #f39773;
  --peach-500: #e07047;
  --peach-600: #c4552e;

  /* Earthy Cream & Sand Neutrals */
  --sand-50: #faf8f5;
  --sand-100: #f4eee5;
  --sand-200: #eae1d2;
  --sand-300: #d8cbba;

  /* Neutral Dark & Typography */
  --text-dark: #1b2824;
  --text-body: #40534d;
  --text-muted: #6e827b;
  --text-light: #9cb0a9;
  --bg-white: #ffffff;
  --bg-light: #f7faf8;
  --border-subtle: rgba(78, 135, 102, 0.15);
  --border-focus: #4e8766;

  /* Card Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(35, 69, 51, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 69, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(35, 69, 51, 0.12);
  --shadow-hover: 0 20px 48px rgba(35, 69, 51, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

p {
  margin-bottom: 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

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

iframe {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

/* --------------------------------------------------
   3. Header Section Headers & Badges
   -------------------------------------------------- */
.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-center {
  text-align: center;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--sage-200);
}

.section-title {
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   4. Buttons & Interactive Controls
   -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--tr-normal);
  text-align: center;
}

.btn-primary-pastel {
  background: linear-gradient(135deg, var(--sage-500), var(--aqua-500));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(50, 125, 140, 0.25);
}

.btn-primary-pastel:hover {
  background: linear-gradient(135deg, var(--sage-600), var(--aqua-700));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 125, 140, 0.35);
  color: #ffffff;
}

.btn-outline-pastel {
  background: rgba(255, 255, 255, 0.9);
  color: var(--aqua-700);
  border-color: var(--aqua-200);
}

.btn-outline-pastel:hover {
  background: var(--aqua-50);
  border-color: var(--aqua-400);
  color: var(--aqua-900);
}

/* Hero Button Variations */
.btn-hero-primary {
  background: linear-gradient(135deg, #e07047, #d95e33);
  color: #ffffff;
  padding: 0.85rem 1.45rem;
  font-size: 0.96rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(224, 112, 71, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #c7562f, #b3441f);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(224, 112, 71, 0.45);
  color: #ffffff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--sage-800);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.85rem 1.45rem;
  font-size: 0.96rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-hero-secondary:hover {
  background: #ffffff;
  color: var(--sage-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-hero-ghost {
  background: rgba(35, 69, 51, 0.4);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.85rem 1.35rem;
  font-size: 0.96rem;
  white-space: nowrap;
}

.btn-hero-ghost:hover {
  background: rgba(35, 69, 51, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  color: #ffffff;
}

/* --------------------------------------------------
   5. Announcement Bar
   -------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #1b3d2f 0%, #1a4b56 100%);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.highlight-badge {
  background: #e07047;
  color: #ffffff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.csr-pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
}

/* --------------------------------------------------
   6. Main Navigation Bar
   -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--tr-normal);
  width: 100%;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(35, 69, 51, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
  transition: transform var(--tr-fast);
}

.brand-logo:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-height: 52px;
  max-width: 190px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  transition: filter var(--tr-fast), transform var(--tr-fast);
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 4px 14px rgba(50, 125, 140, 0.22));
}

.nav-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
  background: rgba(244, 249, 246, 0.7);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--sage-200);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--tr-fast);
  display: inline-block;
}

.nav-link:hover {
  color: var(--sage-700);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.nav-link.active {
  color: var(--aqua-900);
  background: var(--bg-white);
  box-shadow: 0 2px 8px rgba(50, 125, 140, 0.12);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 105;
}

.hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all var(--tr-fast);
}

/* --------------------------------------------------
   7. Hero Section
   -------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video,
.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      rgba(18, 38, 29, 0.92) 0%,
      rgba(24, 53, 58, 0.82) 55%,
      rgba(24, 53, 58, 0.45) 100%);
}

/* Floating Steam Particles */
.steam-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.steam-particle {
  position: absolute;
  bottom: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(12px);
  animation: floatSteam 9s infinite linear;
}

.steam-particle.s1 {
  width: 140px;
  height: 140px;
  left: 15%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.steam-particle.s2 {
  width: 220px;
  height: 220px;
  left: 45%;
  animation-duration: 11s;
  animation-delay: 2.5s;
}

.steam-particle.s3 {
  width: 180px;
  height: 180px;
  left: 75%;
  animation-duration: 9.5s;
  animation-delay: 1.2s;
}

.steam-particle.s4 {
  width: 120px;
  height: 120px;
  left: 60%;
  animation-duration: 7.5s;
  animation-delay: 4s;
}

@keyframes floatSteam {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }

  25% {
    opacity: 0.65;
  }

  75% {
    opacity: 0.4;
  }

  100% {
    transform: translateY(-600px) scale(1.6);
    opacity: 0;
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: stretch;
  gap: 3.5rem;
  width: 100%;
}

.hero-text-col {
  width: 100%;
  max-width: 100%;
  color: #ffffff;
}

/* Ruangan Sebelah Kanan Banner (Desktop View): Logo Tourism & Geopark Melaka (Center-Aligned) */
.hero-partners-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-partners-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 2.25rem;
  width: 100%;
  height: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.hero-partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  transition: transform var(--tr-normal), filter var(--tr-normal);
}

.hero-partner-badge:hover {
  transform: scale(1.06) translateY(-4px);
}

.hero-partner-logo {
  margin: 0 auto;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.hero-partner-badge:hover .hero-partner-logo {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 16px rgba(255, 255, 255, 0.4));
}

.hero-partner-logo.logo-visit {
  height: 145px;
  max-width: 290px;
}

.hero-partner-logo.logo-geopark {
  height: 145px;
  max-width: 220px;
}

.hero-partner-logo.logo-larut {
  height: 120px;
  max-width: 310px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e3faf2;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  word-break: break-word;
  overflow-wrap: break-word;
}

.gradient-text {
  background: linear-gradient(135deg, #a7ceb7 0%, #bce9f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e5ede9;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  max-width: 100%;
}

.hero-description strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* 4 Feature Tags in a Single Horizontal Row on Desktop (Equal Height & Full Text) */
.hero-feature-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

.feat-tag {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
}

.feat-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.feat-info {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 2px;
  word-break: normal;
  overflow-wrap: break-word;
}

.feat-info small {
  font-size: 0.72rem;
  color: #d1dfd9;
  line-height: 1.25;
  display: block;
  word-break: normal;
  overflow-wrap: break-word;
}

/* --------------------------------------------------
   8. Live Status & Quick Bar
   -------------------------------------------------- */
.live-status-bar {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2.5rem;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.status-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-100);
  transition: transform var(--tr-fast), box-shadow var(--tr-fast);
}

.status-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.status-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pulse-green {
  background: var(--sage-100);
  color: var(--sage-600);
}

.icon-peach {
  background: var(--peach-100);
  color: var(--peach-500);
}

.icon-aqua {
  background: var(--aqua-100);
  color: var(--aqua-500);
}

.status-texts {
  display: flex;
  flex-direction: column;
}

.status-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.status-value {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

.text-success {
  color: #16a34a !important;
}

.status-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
   9. Minerals & Health Benefits Section
   -------------------------------------------------- */
.minerals-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.minerals-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.mineral-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.mineral-box {
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  transition: transform var(--tr-fast);
}

.mineral-box:hover {
  transform: translateY(-4px);
  background: var(--sage-100);
}

.mineral-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sage-600);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.mineral-num small {
  font-size: 1rem;
  font-weight: 600;
}

.mineral-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.mineral-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--sand-50);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--sand-200);
  display: flex;
  gap: 1.2rem;
  transition: all var(--tr-fast);
}

.benefit-card:hover {
  background: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}

.benefit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-sage {
  background: var(--sage-100);
  color: var(--sage-600);
}

.bg-aqua {
  background: var(--aqua-100);
  color: var(--aqua-500);
}

.bg-peach {
  background: var(--peach-100);
  color: var(--peach-500);
}

.bg-lavender {
  background: #ede9fe;
  color: #7c3aed;
}

.benefit-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.benefit-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------
   11. Treatment Testimonials Section
   -------------------------------------------------- */
.testimonials-section {
  background: linear-gradient(180deg, var(--sage-50) 0%, var(--bg-light) 100%);
}

.testimonial-featured-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sage-200);
  display: grid;
  grid-template-columns: 380px 1fr;
  margin-bottom: 3rem;
  align-items: stretch;
}

.feat-testi-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.feat-testi-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.testi-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(224, 112, 71, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
}

.feat-testi-content {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars-row {
  color: #eab308;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.verified-text {
  font-size: 0.82rem;
  color: var(--sage-600);
  font-weight: 700;
  margin-left: 0.5rem;
}

.feat-quote {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testi-author-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.testi-author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.testi-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-100);
  display: flex;
  flex-direction: column;
  transition: all var(--tr-fast);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}

.testi-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.category-pill {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.pill-joint {
  background: var(--peach-100);
  color: var(--peach-600);
  border: 1px solid var(--peach-200);
}

.pill-skin {
  background: var(--aqua-100);
  color: var(--aqua-700);
  border: 1px solid var(--aqua-200);
}

.pill-night {
  background: #ede9fe;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.pill-nerve {
  background: var(--sage-100);
  color: var(--sage-700);
  border: 1px solid var(--sage-200);
}

.stars {
  color: #eab308;
  font-size: 0.98rem;
  letter-spacing: 1.5px;
  line-height: 1;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-200), var(--aqua-200));
  color: var(--text-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-meta h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-quote {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.testi-footer {
  padding-top: 0.85rem;
  border-top: 1px dashed var(--sage-100);
}

.time-stamp {
  font-size: 0.75rem;
  color: var(--sage-600);
  font-weight: 600;
}

/* --------------------------------------------------
   12. TikTok Viral Showcase & Night Onsen Section
   -------------------------------------------------- */
.tiktok-section {
  background: linear-gradient(180deg, #182823 0%, #16363a 100%);
  color: #ffffff;
}

.tiktok-section .section-title {
  color: #ffffff;
}

.tiktok-section .section-desc {
  color: #d2e4de;
}

.tiktok-header-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.tiktok-header-box .section-desc {
  max-width: 760px;
  margin: 0 auto 1.5rem auto;
}

.tiktok-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tiktok-handle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.btn-tiktok {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.btn-tiktok:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

.tiktok-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .tiktok-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.tiktok-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
}

.tiktok-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.tiktok-card.featured-tiktok-top {
  border: 1.5px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.tiktok-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tiktok-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

.tiktok-card:hover .tiktok-card-media img {
  transform: scale(1.08);
}

.tiktok-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-views {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tiktok-rank-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rank-1 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}

.rank-2 {
  background: linear-gradient(135deg, #94a3b8, #64748b);
  color: #ffffff;
}

.rank-3 {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #ffffff;
}

.play-btn-circle {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all var(--tr-fast);
  text-decoration: none;
}

.play-btn-circle:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #000000;
}

.tiktok-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tiktok-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.tiktok-creator {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6ee7b7;
}

.tiktok-time {
  font-size: 0.72rem;
  color: #94a3b8;
}

.tiktok-card-content h4 {
  color: #ffffff;
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.tiktok-card-content p {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tiktok-stats-bar {
  display: flex;
  gap: 1.2rem;
  padding: 0.6rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.tiktok-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tiktok-tags span {
  font-size: 0.75rem;
  color: #93c5fd;
  background: rgba(147, 197, 253, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.tiktok-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tiktok-sound {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.btn-watch-tiktok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--tr-fast);
}

.btn-watch-tiktok:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* --------------------------------------------------
   13. Pricing & Interactive Ticket Calculator
   -------------------------------------------------- */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--sand-50) 100%);
}

.pricing-calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.price-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.price-tier-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--sand-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--tr-fast);
}

.price-tier-card:hover {
  border-color: var(--sage-400);
  box-shadow: var(--shadow-md);
}

.price-tier-card.happy-hour-tier {
  border: 2px solid #f59e0b;
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 50%, #fef3c7 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.price-tier-card.happy-hour-tier:hover {
  border-color: #d97706;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.25);
}

.tier-badge-hh {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.28rem 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.hh-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b45309;
  margin-top: 2px;
}

.tier-price-hh {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
}

.hh-price-block {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.hh-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hh-val del {
  color: #94a3b8;
  font-size: 0.82rem;
  margin-right: 2px;
}

.hh-val strong {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #b45309;
}

.price-tier-card.popular-tier {
  border: 2px solid var(--sage-500);
  background: linear-gradient(180deg, #ffffff 0%, var(--sage-50) 100%);
}

.tier-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--sage-600);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
}

.tier-badge-free {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--peach-500);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
}

.tier-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tier-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.tier-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage-600);
}

.tier-price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.tier-price .period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Calculator Box */
.calculator-box {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sage-200);
  position: sticky;
  top: 100px;
}

.calc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--sage-100);
}

.calc-icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage-600);
}

.calc-icon-title h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.live-pill {
  background: var(--aqua-100);
  color: var(--aqua-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Session Selection Switch in Calculator (High Contrast & Clear Hierarchy) */
.calc-session-box {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.session-box-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.session-switch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.session-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--sand-300);
  background: #ffffff;
  cursor: pointer;
  color: #1e293b;
  text-align: center;
  transition: all var(--tr-fast);
  width: 100%;
}

.session-tab-btn span {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e293b;
}

.session-tab-btn small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
}

.session-tab-btn:hover {
  border-color: var(--sage-500);
  background: #f8fafc;
}

/* Active Standard Session: Deep Green with Bright White/Mint text */
.session-tab-btn.active {
  background: #193828 !important;
  border-color: #12281d !important;
  box-shadow: 0 4px 14px rgba(25, 56, 40, 0.35);
}

.session-tab-btn.active span {
  color: #ffffff !important;
}

.session-tab-btn.active small {
  color: #bbf7d0 !important;
}

/* Active Happy Hour Session: Deep Warm Amber with White/Gold text */
.session-tab-btn.active.hh-active {
  background: linear-gradient(135deg, #b45309, #92400e) !important;
  border-color: #78350f !important;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.4);
}

.session-tab-btn.active.hh-active span {
  color: #ffffff !important;
}

.session-tab-btn.active.hh-active small {
  color: #fef08a !important;
}

.session-notice {
  margin-top: 0.65rem;
  font-size: 0.76rem;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.hh-pill-inline {
  display: inline-block;
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.35rem;
  vertical-align: middle;
}

.calc-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--sand-50);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--sand-200);
}

.highlight-free-row {
  background: var(--sage-50);
  border-color: var(--sage-200);
}

.highlight-addon-row {
  background: var(--aqua-50);
  border-color: var(--aqua-200);
}

.item-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.item-info small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-counter {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sage-300);
  background: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sage-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
}

.btn-counter:hover {
  background: var(--sage-500);
  color: #ffffff;
  border-color: var(--sage-500);
}

.counter-input {
  width: 44px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  background: transparent;
  color: var(--text-dark);
}

.calc-summary-box {
  background: var(--sand-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.summary-val {
  font-weight: 700;
  color: var(--text-dark);
}

.summary-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  margin-top: 0.75rem;
  border-top: 2px dashed var(--sand-300);
}

.summary-total-line span {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.total-big-amount {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--sage-600);
}

.calc-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-calc-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all var(--tr-fast);
}

.btn-calc-whatsapp:hover {
  background: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-calc-copy {
  background: var(--sand-50);
  border: 1px solid var(--sand-300);
  color: var(--text-body);
  padding: 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--tr-fast);
}

.btn-calc-copy:hover {
  background: var(--sand-100);
  border-color: var(--sage-400);
}

.calc-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
}

/* --------------------------------------------------
   14. Visitor Amenities & Guidelines
   -------------------------------------------------- */
.amenities-section {
  background: var(--bg-white);
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.amenity-card {
  flex: 0 1 calc(25% - 1.35rem);
  min-width: 250px;
  background: var(--sand-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--sand-200);
  transition: all var(--tr-normal);
  display: flex;
  flex-direction: column;
}

.amenity-card:hover {
  background: var(--bg-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}

.amenity-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bg-pastel-green {
  background: var(--sage-100);
  color: var(--sage-600);
}

.bg-pastel-blue {
  background: var(--aqua-100);
  color: var(--aqua-500);
}

.bg-pastel-peach {
  background: var(--peach-100);
  color: var(--peach-500);
}

.bg-pastel-lavender {
  background: #ede9fe;
  color: #7c3aed;
}

.bg-pastel-teal {
  background: #ccfbf1;
  color: #0f766e;
}

.bg-pastel-yellow {
  background: #fef3c7;
  color: #b45309;
}

.amenity-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

.guidelines-card {
  background: linear-gradient(135deg, var(--sage-50), var(--aqua-50));
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.guideline-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage-700);
  margin-bottom: 1.75rem;
}

.guideline-header h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.guideline-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.rule-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.rule-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --------------------------------------------------
   15. Photo Gallery Showcase
   -------------------------------------------------- */
.gallery-section {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--sage-100);
}

.gallery-item.item-large {
  grid-column: span 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-smooth);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 38, 29, 0.92) 100%);
  color: #ffffff;
  transform: translateY(10px);
  opacity: 0.95;
  transition: all var(--tr-normal);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-caption h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.gallery-caption p {
  font-size: 0.82rem;
  color: #d1dfd9;
  line-height: 1.4;
}

/* --------------------------------------------------
   16. Location & Directions Section
   -------------------------------------------------- */
.location-section {
  background: var(--bg-white);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: stretch;
}

.location-card {
  background: var(--sand-50);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--sand-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-badge {
  display: inline-block;
  background: var(--aqua-100);
  color: var(--aqua-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.location-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.loc-address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.travel-times-box {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--sand-200);
  margin-bottom: 1.75rem;
}

.travel-title {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.travel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.travel-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sand-100);
}

.travel-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.travel-from {
  color: var(--text-body);
  font-weight: 600;
}

.travel-dur {
  color: var(--sage-600);
  font-weight: 700;
}

.nav-buttons-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-waze {
  background: #33ccff;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-waze:hover {
  background: #1ab2e6;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-gmaps {
  background: #ea4335;
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gmaps:hover {
  background: #d32f2f;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-phone {
  background: var(--bg-white);
  border: 1px solid var(--sage-300);
  color: var(--sage-700);
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-phone:hover {
  background: var(--sage-50);
  border-color: var(--sage-500);
}

.map-frame-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--sand-200);
  min-height: 420px;
  height: 100%;
  display: flex;
  position: relative;
}

.map-frame-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  flex: 1 1 auto;
}

/* --------------------------------------------------
   17. FAQ Section
   -------------------------------------------------- */
.faq-section {
  background: var(--bg-light);
}

.faq-accordion-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--sage-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-fast);
}

.faq-item:hover {
  border-color: var(--sage-300);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sage-600);
  transition: transform var(--tr-normal);
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-normal);
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.35rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------
   18. Footer
   -------------------------------------------------- */
.site-footer {
  background: #162420;
  color: #ffffff;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.footer-logo-img {
  height: 62px;
  width: auto;
  max-height: 68px;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 12px rgba(98, 183, 196, 0.25));
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.footer-logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 16px rgba(98, 183, 196, 0.4));
}

.footer-tourism-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  width: 100%;
  flex-wrap: wrap;
}

.footer-affiliate-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform var(--tr-fast), filter var(--tr-fast);
}

.footer-affiliate-logo:hover {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(98, 183, 196, 0.4));
}

.footer-desc {
  font-size: 0.9rem;
  color: #a8beb7;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--tr-fast);
}

.social-circle:hover {
  background: var(--sage-500);
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--aqua-400);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #a8beb7;
  transition: color var(--tr-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-time {
  font-size: 0.88rem;
  color: #d1dfd9;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.badge-24h {
  display: inline-block;
  background: #16a34a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
}

.footer-price-text {
  font-size: 0.85rem;
  color: #a8beb7;
  line-height: 1.5;
}

.footer-price-text strong {
  color: #ffffff;
}

.footer-phone-link {
  display: inline-block;
  color: #bce9f0;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.25rem;
  transition: color var(--tr-fast);
}

.footer-phone-link:hover {
  color: #ffffff;
}

.footer-bottom {
  background: #0f1a17;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #7b968e;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------
   19. Floating WhatsApp Widget
   -------------------------------------------------- */
.floating-contact-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.65rem 1.25rem 0.65rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--tr-normal);
}

.floating-wa-btn:hover {
  background: #1ebc57;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.wa-icon-glow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------
   20. Lightbox Modal
   -------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 26, 23, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1001;
  max-width: 900px;
  width: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: background var(--tr-fast);
}

.lightbox-close:hover {
  background: #000000;
}

.lightbox-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.lightbox-info {
  padding: 1.5rem 2rem;
  background: var(--bg-white);
}

.lightbox-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.lightbox-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
   21. Responsive Media Queries
   -------------------------------------------------- */

/* Desktop Single-Row Hero Buttons */
@media (min-width: 769px) {
  .hero-cta-group {
    flex-wrap: nowrap;
  }
}

/* Tablets and Below (< 1024px) */
@media (max-width: 1024px) {
  .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .minerals-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonial-featured-card {
    grid-template-columns: 1fr;
  }

  .feat-testi-img {
    height: 260px;
    min-height: 240px;
    max-height: 300px;
  }

  .feat-testi-img img {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .pricing-calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calculator-box {
    position: static;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hamburger-btn {
    display: flex;
  }

  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }

  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    border-bottom: 1px solid var(--sage-200);
    z-index: 99;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0.4rem;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-link {
    width: 100%;
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 1.02rem;
    border-radius: var(--radius-md);
    text-align: left;
  }

  .tiktok-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-feature-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-partners-showcase {
    justify-content: center;
    padding-left: 0;
  }

  .hero-partners-list {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.25rem;
    height: auto;
    max-width: 100%;
    padding: 0;
  }

  .hero-partner-badge {
    justify-content: center;
    width: auto;
  }

  .hero-partner-logo.logo-visit {
    height: 75px;
    max-width: 170px;
  }

  .hero-partner-logo.logo-geopark {
    height: 75px;
    max-width: 130px;
  }

  .hero-partner-logo.logo-larut {
    height: 65px;
    max-width: 180px;
  }
}

/* Medium Tablets & Large Phones (< 768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-padding {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

  .section-desc {
    font-size: 0.96rem;
  }

  .nav-wa-text {
    display: none;
  }

  .nav-wa-btn {
    padding: 0.5rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    gap: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 4.5rem 0 3rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-ghost {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .tiktok-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .amenities-grid {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .amenity-card {
    flex: 0 1 calc(50% - 0.75rem);
    min-width: 0;
    padding: 1.5rem;
  }

  .guideline-rules-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .map-frame-card {
    min-height: 380px;
    height: 380px;
  }

  .map-frame-card iframe {
    min-height: 380px;
    height: 380px;
  }

  .floating-wa-text {
    display: none;
  }

  .floating-wa-btn {
    padding: 0.75rem;
  }
}

/* Mobile Phones (< 640px) */
@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .announcement-bar {
    font-size: 0.76rem;
    padding: 0.5rem 0;
  }

  .announcement-content {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .announcement-left {
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
  }

  .csr-pill {
    font-size: 0.72rem;
    text-align: center;
  }

  .hero-pill-badge {
    font-size: 0.76rem;
    padding: 0.35rem 0.8rem;
    white-space: normal;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6.8vw, 2.2rem);
    margin-bottom: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.7rem;
    margin-bottom: 2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-hero-ghost {
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.94rem;
  }

  .hero-feature-tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    padding-top: 1.25rem;
  }

  .feat-tag {
    padding: 0.5rem 0.6rem;
    gap: 0.5rem;
  }

  .feat-icon {
    font-size: 1.15rem;
  }

  .feat-info strong {
    font-size: 0.78rem;
  }

  .feat-info small {
    font-size: 0.68rem;
  }

  .mineral-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .mineral-box {
    padding: 0.85rem 0.5rem;
  }

  .mineral-num {
    font-size: 1.65rem;
  }

  .mineral-num small {
    font-size: 0.82rem;
  }

  .mineral-name {
    font-size: 0.75rem;
  }

  .mineral-desc {
    display: none;
  }

  .feat-testi-content {
    padding: 1.35rem;
  }

  .feat-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .tiktok-header-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .btn-tiktok {
    width: 100%;
    justify-content: center;
  }

  .tiktok-card-content {
    padding: 1.25rem;
  }

  .tiktok-card-media {
    height: 220px;
  }

  .session-switch-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .price-tier-card {
    padding: 1.35rem;
  }

  .calculator-box {
    padding: 1.25rem 1rem;
  }

  .calc-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
  }

  .calc-item-row {
    padding: 0.75rem 0.65rem;
  }

  .item-info strong {
    font-size: 0.88rem;
  }

  .counter-control {
    gap: 0.35rem;
  }

  .btn-counter {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .counter-input {
    width: 36px;
    font-size: 1rem;
  }

  .calc-summary-box {
    padding: 1rem;
  }

  .total-big-amount {
    font-size: 1.65rem;
  }

  .amenity-card {
    flex: 0 1 100%;
    width: 100%;
    padding: 1.35rem 1.15rem;
  }

  .guidelines-card {
    padding: 1.35rem 1.15rem;
  }

  .gallery-item {
    height: 220px;
  }

  .location-card {
    padding: 1.35rem 1.15rem;
  }

  .travel-times-box {
    padding: 1rem;
  }

  .travel-list li {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .nav-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }

  .btn-waze,
  .btn-gmaps,
  .btn-phone {
    width: 100%;
    justify-content: center;
  }

  .map-frame-card {
    min-height: 350px;
    height: 350px;
  }

  .map-frame-card iframe {
    min-height: 350px;
    height: 350px;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 1rem;
  }

  .footer-brand-header {
    align-items: center;
    gap: 0.75rem;
  }

  .footer-tourism-logos {
    padding-left: 0;
    border: none;
    padding-top: 0;
    width: 100%;
    justify-content: center;
    gap: 0.85rem;
  }

  .footer-affiliate-logo {
    height: 38px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .lightbox-modal {
    padding: 0.75rem;
  }

  .lightbox-info {
    padding: 1rem 1.25rem;
  }

  .lightbox-info h4 {
    font-size: 1.05rem;
  }

  .lightbox-info p {
    font-size: 0.82rem;
  }
}

/* Extra Small Mobile Devices (< 480px) */
@media (max-width: 480px) {
  .site-header .nav-wrapper {
    height: 64px;
    gap: 0.4rem;
  }

  .brand-logo {
    gap: 0.35rem;
  }

  .brand-logo-img {
    height: 42px;
    max-height: 42px;
    max-width: 145px;
  }

  .footer-logo-img {
    height: 52px;
    max-height: 52px;
    max-width: 180px;
  }

  .nav-wa-btn {
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    gap: 0.35rem;
  }

  .nav-wa-text {
    font-size: 0.78rem;
  }

  .hero-feature-tags {
    grid-template-columns: 1fr 1fr;
  }

  .mineral-stats-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .mineral-desc {
    display: block;
  }

  .summary-total-line span {
    font-size: 0.82rem;
  }

  .total-big-amount {
    font-size: 1.45rem;
  }
}