/* ==========================================================================
   HILL CROWN RESORT - PREMIUM SINGLE-PAGE THEME STYLESHEET
   Loomyweb Handoff Specifications Compliant
   ========================================================================== */

/* ── Custom Theme variables ── */
:root {
  --primary-color: #0E6F6A;
  /* Premium Teal / Forest Green */
  --secondary-color: #7C8D4F;
  /* Olive Green */
  --text-color: #444444;
  /* Soft Slate Grey */
  --muted-color: #777777;
  /* Muted Grey */
  --background-color: #FFFFFF;
  /* Clean White */
  --surface-color: #FFFFFF;
  /* Pure White */
  --border-color: #EEEEEE;
  /* Light Border */
  --shadow: 0 10px 30px rgba(14, 111, 106, 0.04);
  --shadow-lg: 0 20px 40px rgba(14, 111, 106, 0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --spacing: 2rem;

  /* Additional Variables to eliminate hardcoded colors */
  --white: #FFFFFF;
  --black: #000000;
  --dark-bg: #0B2422;
  /* Dark Forest Teal */
  --dark-surface: #10312F;
  /* Dark Card Background */
  --light-green-bg: #F4F7F6;
  /* Soft Light Green background */
  --danger-color: #D9534F;
  --success-color: #0E6F6A;
  --overlay-bg: rgba(11, 36, 34, 0.65);
  /* Hero / Gallery overlays */
  --overlay-dark: rgba(11, 36, 34, 0.8);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-dark: rgba(14, 111, 106, 0.8);
  --glass-blur: blur(12px);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --font-script-alt: 'Great Vibes', cursive;

  --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 100px;
  --container-width: 1200px;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--secondary-color);
  width: 0%;
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* Hide empty plugin slots and style their wrapper */
[data-slot] {
  display: block;
}

[data-slot]:empty {
  display: none !important;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border: 2px solid var(--background-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 0.95rem;
  color: var(--muted-color);
  margin-bottom: 1rem;
}

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

/* ── Layout & Containers ── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 24px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: var(--secondary-color);
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.05rem;
}

.bg-light {
  background-color: var(--background-color);
}

.bg-white {
  background-color: var(--surface-color);
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Buttons & CTAs ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  background: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27, 77, 62, 0.15);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 77, 62, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background-color: var(--muted-color);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.15);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.25);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-full-width {
  width: 100%;
}

.desktop-cta {
  padding: 0.7rem 1.6rem;
  font-size: 0.8rem;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ══════════════════════════════════════════
   1. STICKY HEADER & NAVBAR
   ══════════════════════════════════════════ */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

header.main-header.scrolled {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Thin Scroll Progress Bar */
.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 4%;
  margin: 0 auto;
}

.logo {
  text-align: left;
  flex-shrink: 0;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  object-fit: contain;
}

/* Default logo: visible on transparent header, hidden when scrolled */
.logo-default {
  opacity: 1;
  position: relative;
}

.logo-scrolled {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

header.main-header.scrolled .logo-brand {
  position: relative;
}

header.main-header.scrolled .logo-default {
  opacity: 0;
  pointer-events: none;
}

header.main-header.scrolled .logo-scrolled {
  opacity: 1;
  pointer-events: auto;
  height: 44px;
}

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

.nav-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2.2rem;
  /* Generous luxury spacing */
}

nav.nav-menu ul li a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.8rem 0;
  position: relative;
  transition: var(--transition-fast);
  display: inline-block;
}

header.main-header.scrolled nav.nav-menu ul li a {
  color: #222222;
}

nav.nav-menu ul li a:hover,
nav.nav-menu ul li a.active {
  color: var(--white);
}

header.main-header.scrolled nav.nav-menu ul li a:hover,
header.main-header.scrolled nav.nav-menu ul li a.active {
  color: var(--primary-color) !important;
}

/* Underline Animation */
nav.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.main-header.scrolled nav.nav-menu ul li a::after {
  background-color: var(--primary-color);
}

nav.nav-menu ul li a:hover::after,
nav.nav-menu ul li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Menu styling */
.dropdown-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  padding: 0.8rem 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 1010;
}

.dropdown-item:hover .dropdown-menu,
.dropdown-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  color: #333333 !important;
  padding: 0.7rem 1.8rem !important;
  margin: 0 !important;
  width: 100%;
  font-size: 0.75rem !important;
  text-align: left;
  display: block !important;
  border-bottom: none !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  transition: background-color 0.25s, color 0.25s !important;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background-color: rgba(14, 111, 106, 0.06);
  color: var(--primary-color) !important;
}

.dropdown-arrow {
  font-size: 0.55rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Header CTA Reserve Button */
.header-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-reserve {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid var(--white) !important;
  padding: 0.75rem 1.8rem !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  transition: var(--transition-fast) !important;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.btn-reserve:hover {
  background-color: var(--white) !important;
  color: var(--primary-color) !important;
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

header.main-header.scrolled .btn-reserve {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

header.main-header.scrolled .btn-reserve:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  box-shadow: 0 8px 25px rgba(14, 111, 106, 0.25);
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
  border-radius: 2px;
  transform-origin: center;
}

header.main-header.scrolled .hamburger .bar {
  background-color: #222222;
}

.hamburger.active .bar {
  background-color: var(--white);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation Menu Drawer */
nav.nav-menu-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--dark-bg);
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px var(--spacing);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
}

nav.nav-menu-mobile.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.mobile-links li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-delay: calc(var(--i) * 0.08s);
}

nav.nav-menu-mobile.active .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-links li a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  transition: var(--transition-fast);
}

.mobile-links li a::after {
  display: none !important;
}

.mobile-links li a:hover,
.mobile-links li a.active {
  color: var(--white);
  transform: scale(1.05);
}

.mobile-dropdown-parent {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.mobile-menu-header {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.mobile-submenu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.mobile-submenu li a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-submenu li a:hover {
  color: var(--white) !important;
}

nav.nav-menu-mobile .mobile-cta-item {
  margin-top: 1.5rem;
}

.btn-reserve-mobile {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 1rem 2.5rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(14, 111, 106, 0.3);
  transition: var(--transition-fast) !important;
}

.btn-reserve-mobile:hover {
  background-color: var(--secondary-color) !important;
  box-shadow: 0 8px 25px rgba(14, 111, 106, 0.45);
}


/* Responsive Navigation Breakpoints */
@media (max-width: 992px) {

  .nav-menu,
  .header-right {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .logo {
    padding: 0;
  }
}

/* ══════════════════════════════════════════
   2. HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/hero.jpg') no-repeat center center/cover;
  overflow: hidden;
}

/* Slider Structure & Transitions */
.hero-slides-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Background style is set inline in html */
  transform: scale(1.05);
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 0 var(--spacing);
  margin-top: 40px;
  /* Offset for header height spacing */
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
  letter-spacing: 0.02em;
}

.hero-cta-wrap {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.btn-hero-teal {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 1.1rem 2.4rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 4px 15px rgba(14, 111, 106, 0.2);
  transition: var(--transition-fast) !important;
  border: none;
  cursor: pointer;
}

.btn-hero-teal:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 111, 106, 0.35);
  color: var(--white) !important;
}

.btn-hero-outline {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  padding: 1.1rem 2.4rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast) !important;
  cursor: pointer;
}

.btn-hero-outline:hover {
  border-color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.btn-hero-teal:hover .btn-arrow,
.btn-hero-outline:hover .btn-arrow {
  transform: translateX(4px);
}

/* Floating Slide Arrows */
.hero-arrows-nav {
  position: absolute;
  top: 140px;
  right: 4%;
  display: flex;
  gap: 0.8rem;
  z-index: 10;
}

.hero-arrow-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-arrow-btn:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}


/* Floating Dots indicator */
.hero-dots-float {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.hero-dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
  cursor: pointer;
}

.hero-dot-indicator.active {
  background-color: var(--white);
  border-color: var(--white);
  transform: scale(1.25);
}

.hero-dot-indicator:hover {
  border-color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

/* ══════════════════════════════════════════
   3. ABOUT HILL CROWN RESORT
   ══════════════════════════════════════════ */
.about-editorial-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-collage {
  display: flex;
  gap: 1.5rem;
  flex: 1.15;
}

.collage-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.collage-right {
  margin-top: 4.5rem;
}

.collage-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.collage-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.collage-img-wrapper:hover img {
  transform: scale(1.06);
}

/* Specific heights matching staggered layout */
.img-1 {
  height: 260px;
}

.img-2 {
  height: 180px;
}

.img-3 {
  height: 180px;
}

.img-4 {
  height: 290px;
}

.img-5 {
  height: 290px;
}

.about-editorial-text {
  flex: 0.85;
}

.about-title-mockup {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.script-highlight {
  font-family: var(--font-script);
  color: var(--primary-color);
  text-transform: none;
  font-weight: 400;
  font-size: 3.6rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 0.8;
  letter-spacing: 0;
}

.about-editorial-text p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.btn-learn-more {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.95rem 2.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-fast) !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(14, 111, 106, 0.12);
  margin-top: 1rem;
}

.btn-learn-more:hover {
  background-color: var(--secondary-color) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(14, 111, 106, 0.22);
  color: var(--white) !important;
}

.btn-learn-more .btn-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-learn-more:hover .btn-arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════
   4. WIDE VIDEO BANNER
   ══════════════════════════════════════════ */
.video-banner {
  position: relative;
  height: 450px;
  background: linear-gradient(rgba(11, 36, 34, 0.25), rgba(11, 36, 34, 0.45)), url('../images/bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 36, 34, 0.1);
}

.video-banner-content {
  position: relative;
  z-index: 5;
}

.play-btn-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  cursor: pointer;
  text-indent: 4px;
  /* center visual adjustment for triangle */
}

.play-btn-circle:hover {
  transform: scale(1.1);
  background-color: var(--white);
  box-shadow: 0 15px 35px rgba(14, 111, 106, 0.3);
  color: var(--secondary-color) !important;
}

.play-btn-circle svg {
  transition: var(--transition-fast);
}

.play-btn-circle:hover svg {
  transform: scale(1.05);
}

/* ══════════════════════════════════════════
   5. RESORT HIGHLIGHTS
   ══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   5. RESORT HIGHLIGHTS
   ══════════════════════════════════════════ */
.section-highlights {
  background-color: #fbf9f4;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.highlights-showcase-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5.5rem;
  align-items: center;
}

.highlights-showcase-left {
  position: relative;
}

.highlights-interactive-list {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlight-list-item {
  display: flex;
  gap: 2rem;
  padding: 1.8rem 1.5rem;
  border-left: 2px solid rgba(14, 111, 106, 0.08);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 8px 8px 0;
}

.highlight-list-item:hover {
  background: rgba(14, 111, 106, 0.02);
  border-color: rgba(14, 111, 106, 0.3);
}

.highlight-list-item.active {
  background: rgba(14, 111, 106, 0.04);
  border-color: var(--primary-color);
  padding-left: 2rem;
}

.highlight-item-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary-color);
  opacity: 0.6;
  transition: all 0.4s ease;
  line-height: 1.2;
}

.highlight-list-item.active .highlight-item-num {
  opacity: 1;
  transform: scale(1.1);
}

.highlight-item-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #0e3733;
  margin-bottom: 0.4rem;
  transition: color 0.4s ease;
}

.highlight-list-item.active .highlight-item-text h3 {
  color: var(--primary-color);
}

.highlight-item-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-color);
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-list-item.active .highlight-item-text p {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.5rem;
}

.highlight-mobile-img {
  display: none;
}

.highlights-explore-wrap {
  margin-top: 1.5rem;
}

/* Right Column Showcase Frame */
.highlights-showcase-right {
  position: relative;
}

.showcase-frame {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(14, 55, 51, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #f0ebe1;
}

.showcase-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.08) rotate(0.5deg);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.showcase-image-wrap.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  z-index: 2;
}

.showcase-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(14, 55, 51, 0.85) 0%, rgba(14, 55, 51, 0.2) 50%, transparent 100%);
  z-index: 2;
}

.showcase-caption {
  position: absolute;
  bottom: 2.8rem;
  left: 2.8rem;
  right: 2.8rem;
  z-index: 3;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.showcase-image-wrap.active .showcase-caption {
  transform: translateY(0);
  opacity: 1;
}

.showcase-caption .caption-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--secondary-color);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.5rem;
}

.showcase-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--white);
}

/* Vertical Accent Line */
.vertical-accent-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(to bottom, var(--secondary-color), transparent);
  margin: 1.8rem 0 2rem 0;
}

.btn-highlights-explore {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 1.5px solid var(--primary-color) !important;
  padding: 1.05rem 2.4rem !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(14, 111, 106, 0.05);
}

.btn-highlights-explore:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 111, 106, 0.22);
}

.btn-highlights-explore:hover .btn-arrow {
  transform: translateX(5px);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .highlights-showcase-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlights-showcase-right {
    display: none;
  }

  .highlight-list-item {
    border-left: none;
    border-bottom: 1px solid rgba(14, 111, 106, 0.08);
    border-radius: 0;
    padding: 1.5rem 0.5rem;
  }

  .highlight-list-item:hover {
    background: transparent;
  }

  .highlight-list-item.active {
    background: transparent;
    padding-left: 0.5rem;
    border-bottom-color: var(--primary-color);
  }

  .highlight-list-item.active .highlight-item-text p {
    max-height: 150px;
  }

  .highlight-mobile-img {
    display: block;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 0;
    box-shadow: 0 10px 25px rgba(14, 55, 51, 0.08);
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, margin 0.5s ease;
  }

  .highlight-list-item.active .highlight-mobile-img {
    max-height: 250px;
    opacity: 1;
    margin-top: 1.2rem;
  }

  .highlight-mobile-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
}

@media (max-width: 768px) {
  .section-highlights {
    padding: 80px 0;
  }
}

/* ══════════════════════════════════════════
   5. LUXURY ROOMS
   ══════════════════════════════════════════ */
.rooms-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  color: var(--primary-color);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

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

.room-card {
  background-color: var(--surface-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition-normal);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.room-img-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition-normal);
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.05);
}

.room-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--glass-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.room-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.room-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  /* limit to 320 chars constraint */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* -webkit-line-clamp: 4; */
  -webkit-box-orient: vertical;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.room-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted-color);
}

.room-spec-item svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.room-book-btn {
  display: block;
  text-align: center;
  background-color: var(--background-color);
  color: var(--primary-color);
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

.room-book-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ── Room Card Long Content Overflow state ── */
.room-desc:empty {
  display: none;
}

/* ══════════════════════════════════════════
   6. RESORT AMENITIES
   ══════════════════════════════════════════ */
.amenity-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.amenity-item:hover {
  background-color: var(--surface-color);
  box-shadow: var(--shadow);
  border-color: var(--secondary-color);
}

.amenity-icon {
  color: var(--primary-color);
  background-color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(27, 77, 62, 0.04);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.amenity-item:hover .amenity-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.amenity-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.amenity-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   7. WHY CHOOSE US
   ══════════════════════════════════════════ */
.why-feat-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.why-feat-item {
  border-left: 3px solid var(--secondary-color);
  padding-left: 1.5rem;
}

.why-feat-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

.why-feat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   8. NEARBY ATTRACTIONS
   ══════════════════════════════════════════ */
.attraction-card {
  background-color: var(--surface-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.attraction-img-wrap {
  height: 200px;
  overflow: hidden;
}

.attraction-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: var(--transition-normal);
}

.attraction-card:hover .attraction-img-wrap img {
  transform: scale(1.05);
}

.attraction-content {
  padding: 1.8rem;
}

.attraction-distance {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.attraction-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.attraction-desc {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   9. PHOTO GALLERY (Masonry & Lightbox)
   ══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* Gallery hover overlay animation */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, var(--glass-dark));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.gallery-overlay p {
  color: var(--secondary-color);
  font-size: 0.85rem;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.05s;
}

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

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

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 42, 32, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--secondary-color);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ══════════════════════════════════════════
   10. GUEST TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials-slider-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 3rem;
  background-color: var(--background-color);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  text-align: center;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  /* limit to 180 chars constraint */
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--muted-color);
  margin-bottom: 0;
}

/* Testimonial slider navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.test-nav-btn {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-color);
  transition: var(--transition-fast);
  box-shadow: var(--shadow);
}

.test-nav-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.testimonials-indicators {
  display: flex;
  gap: 0.5rem;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.test-dot.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
   11. FAQ SECTION
   ══════════════════════════════════════════ */
.faq-container-width {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background-color: var(--surface-color);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-card.active {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow);
}

.faq-question-btn {
  width: 100%;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question-btn h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
  padding-right: 1.5rem;
}

.faq-icon-shape {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-card.active .faq-icon-shape {
  transform: rotate(45deg);
}

.faq-answer-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 2rem 1.8rem 2rem;
}

.faq-answer-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════════
   12. BOOKING CTA
   ══════════════════════════════════════════ */
.cta-banner {
  padding: 120px 0;
  background: linear-gradient(var(--overlay-bg), var(--overlay-dark)),
    url('../images/3.jpg') no-repeat center center/cover;
  text-align: center;
  color: var(--white);
  position: relative;
}

.cta-banner-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.cta-banner-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════
   13. CONTACT SECTION
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  color: var(--secondary-color);
  background-color: var(--background-color);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}

.contact-item-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

.contact-item-details p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item-details a {
  transition: var(--transition-fast);
}

.contact-item-details a:hover {
  color: var(--secondary-color);
}

.contact-social-wrap h5 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Plugin slot custom rendering */
.social-slot-container {
  display: flex;
  gap: 0.8rem;
}

/* Support injected icons styles */
.social-slot-container a,
.footer-social-slot a {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.social-slot-container a:hover,
.footer-social-slot a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Contact Form Panel */
.contact-form-panel {
  background-color: var(--background-color);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-form-desc {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Fallback Form Elements Styling */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-color);
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: var(--muted-color);
  opacity: 0.6;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.08);
}

select.form-control {
  cursor: pointer;
  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='none' stroke='%231B4D3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

/* Form validation states */
.form-control:invalid:focus {
  border-color: var(--danger-color);
}

.form-control.is-invalid {
  border-color: var(--danger-color);
  background-color: rgba(217, 83, 79, 0.02);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

/* Map Section */
.map-section {
  height: 450px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.map-iframe {
  border: none;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(90%);
}

/* ══════════════════════════════════════════
   14. FOOTER
   ══════════════════════════════════════════ */
.main-footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 80px 0 50px 0;
  border-top: 1px solid var(--border-color);
}

.footer-logo-area {
  margin-bottom: 2.5rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin: 0 auto 1rem auto;
}

.footer-logo-area h3 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--secondary-color);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-bottom-info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-info a {
  color: var(--secondary-color);
}

.footer-bottom-info a:hover {
  text-decoration: underline;
}

/* ── Floating Widget & Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--border-color);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(0);
}

/* State Styling: Disabled & Loading */
.btn-primary.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-primary.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

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

/* Empty State / Slots formatting */
.gallery-grid:empty::after,
.rooms-grid:empty::after {
  content: 'No items currently available.';
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--background-color);
  color: var(--muted-color);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
   ══════════════════════════════════════════ */

/* Tablet Viewport (max-width: 992px) */
@media (max-width: 992px) {
  :root {
    --header-height: 80px;
  }

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

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-split {
    flex-direction: column;
    gap: 3rem;
  }

  .about-text,
  .about-gallery {
    width: 100%;
    flex: none;
  }

  .about-gallery {
    justify-content: center;
  }

  .about-badge {
    left: 2rem;
  }

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

  .hamburger {
    display: flex;
  }

  /* Responsive Drawer Navigation */
  nav.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1005;
    padding: 100px 2.5rem var(--spacing) 2.5rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  nav.nav-menu.active {
    right: 0;
  }

  nav.nav-menu ul {
    flex-direction: column;
    gap: 1.2rem;
  }

  nav.nav-menu ul li a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav.nav-menu ul li a::after {
    display: none;
    /* Disable underline animation on mobile list */
  }

  nav.nav-menu ul li a:hover,
  nav.nav-menu ul li a.active {
    background-color: transparent;
    color: var(--secondary-color);
  }

  .mobile-cta-item {
    display: block;
    margin-top: 1.5rem;
  }

  .desktop-cta {
    display: none;
  }
}

/* Mobile Viewport (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --spacing: 1.5rem;
  }

  .section {
    padding: 70px 0;
  }



  /* Grid Layout collapse */
  .grid-3,
  .grid-4,
  .rooms-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item img {
    height: 250px;
  }

  .hero-cta-wrap {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .about-gallery {
    flex-direction: row;
    gap: 1rem;
  }

  .about-img-wrap {
    width: 100% !important;
    height: 180px !important;
  }

  .about-img-col:nth-child(2) {
    margin-top: 0;
  }

  .about-badge {
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    width: auto;
    white-space: nowrap;
  }

  .about-badge h3 {
    font-size: 1.8rem;
  }

  .contact-form-panel {
    padding: 2rem 1.5rem;
  }

  .testimonials-slider-wrap {
    padding: 0 0.5rem;
  }

  .testimonial-slide {
    padding: 2rem 1rem;
  }
}

/* ══════════════════════════════════════════
   EDITORIAL & PREMIUM AMAN-INSPIRED STYLE ADDITIONS
   ══════════════════════════════════════════ */

/* ── Wide Container & Editorial Headers ── */
.container-wide {
  max-width: 1400px;
}

.section-tag-editorial {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 30px;
}

.section-tag-editorial::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: var(--secondary-color);
}

.section-tag-editorial.tag-light {
  color: var(--secondary-color);
}

.section-tag-editorial.tag-light::before {
  background-color: var(--secondary-color);
}

.section-title-editorial {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.section-title-editorial em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.section-desc-editorial {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--muted-color);
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
  line-height: 1.6;
}

.paragraph-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.text-white-opacity {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ── Section dark background override ── */
.section-dark {
  background-color: #0B202A !important;
  /* Deep Midnight Ocean */
  color: var(--white);
}

/* ── 6. Resort Amenities Editorial ── */
.amenities-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.amenities-editorial-left {
  padding-right: 2rem;
}

.amenity-featured-img {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.amenity-featured-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 12s ease;
}

.amenity-featured-img:hover img {
  transform: scale(1.1);
}

.amenities-editorial-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2.5rem;
}

.amenity-editorial-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(27, 77, 62, 0.08);
}

.amenity-editorial-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--secondary-color);
  opacity: 0.8;
  line-height: 1;
  margin-top: 0.2rem;
}

.amenity-editorial-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.amenity-editorial-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-color);
  margin-bottom: 0;
}

/* ── 7. Why Choose Us Editorial ── */
.why-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-editorial-gallery {
  position: relative;
  height: 580px;
}

.why-img-frame {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-img-frame:hover img {
  transform: scale(1.08);
}

.why-frame-1 {
  width: 65%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 2;
}

.why-frame-2 {
  width: 50%;
  height: 280px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.why-frame-3 {
  width: 40%;
  height: 200px;
  top: 150px;
  right: 10%;
  z-index: 1;
}

.why-editorial-text {
  padding-left: 1rem;
}

.why-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 3rem;
}

.why-editorial-list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-editorial-list-item .item-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  margin-top: 0.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--secondary-color);
}

.why-editorial-list-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.why-editorial-list-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* ── 8. Nearby Attractions Editorial ── */
.attractions-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.attraction-editorial-card {
  background-color: var(--surface-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 77, 62, 0.04);
  transition: var(--transition-normal);
}

.attraction-editorial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.3);
}

.attraction-editorial-card .attraction-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.attraction-editorial-card .attraction-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.attraction-editorial-card:hover .attraction-img-wrap img {
  transform: scale(1.08);
}

.attraction-distance-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 32, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--secondary-color);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.attraction-editorial-content {
  padding: 2.2rem;
}

.attraction-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.attraction-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-color);
  margin-bottom: 0;
}

/* ── 9. Gallery Editorial Grid ── */
.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-editorial-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow);
  height: 320px;
}

.gallery-editorial-item.item-featured {
  grid-column: span 2;
  height: 320px;
}

.gallery-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-editorial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(11, 32, 42, 0.95) 0%, rgba(11, 32, 42, 0.4) 70%, transparent 100%);
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.gallery-editorial-item:hover .gallery-editorial-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-editorial-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.gallery-editorial-overlay p {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

/* ── 10. Testimonials Editorial ── */
.testimonials-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 4rem 3rem;
  background-color: var(--background-color);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.quote-sign {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--secondary-color);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  margin-bottom: 2.5rem;
}

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

.testimonial-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.test-nav-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.test-nav-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.testimonials-indicators {
  display: flex;
  gap: 0.6rem;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* ── 11. FAQ Accordion ── */
.faq-editorial-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.faq-editorial-card {
  background-color: var(--surface-color);
  border-radius: var(--radius);
  border: 1px solid rgba(27, 77, 62, 0.06);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-editorial-card:hover {
  border-color: rgba(197, 168, 128, 0.3);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.2rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question-btn h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary-color);
  padding-right: 1.5rem;
}

.faq-icon-shape {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.faq-icon-shape::before,
.faq-icon-shape::after {
  content: '';
  position: absolute;
  background-color: var(--secondary-color);
  transition: transform 0.4s ease;
}

.faq-icon-shape::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon-shape::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-editorial-card.active .faq-icon-shape {
  transform: rotate(135deg);
}

.faq-answer-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 2.2rem 2.2rem 2.2rem;
}

.faq-answer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-color);
  margin-bottom: 0;
}

/* ── 12. Booking CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 140px 0;
  background-image: url('../images/hero.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 32, 42, 0.85) 0%, rgba(27, 77, 62, 0.8) 100%);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner-content .cta-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.cta-banner-content h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.cta-banner-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
}

/* ── 13. Contact Editorial ── */
.contact-editorial-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-editorial-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-item .detail-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.15);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.contact-detail-item p,
.contact-detail-item p a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-color);
  margin-bottom: 0;
}

.contact-detail-item p a:hover {
  color: var(--primary-color);
}

.contact-editorial-socials h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.booking-glass-panel {
  background: rgba(27, 77, 62, 0.02);
  border: 1px solid rgba(27, 77, 62, 0.08);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.contact-form-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted-color);
  margin-bottom: 2.5rem;
}

/* ── Elegant Glass Float Labels Form ── */
.form-group-glass {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-control-glass {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(27, 77, 62, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.8rem 0;
  color: var(--text-color);
  transition: var(--transition-fast);
}

textarea.form-control-glass {
  resize: none;
}

.form-group-glass select.form-control-glass {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B4D3E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 10px;
  padding-right: 2rem;
}

.form-control-glass:focus {
  border-bottom-color: var(--primary-color);
}

.form-group-glass label {
  position: absolute;
  top: 0.8rem;
  left: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--muted-color);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control-glass:focus~label,
.form-control-glass:not(:placeholder-shown)~label {
  top: -1rem;
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* ── Responsive overrides for Editorial Sections ── */
@media (max-width: 992px) {
  .about-editorial-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .about-collage {
    width: 100%;
  }

  .collage-right {
    margin-top: 2rem;
  }

  .about-editorial-text {
    width: 100%;
    padding-left: 0;
  }

  .amenities-editorial-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .amenities-editorial-left {
    padding-right: 0;
  }

  .amenity-featured-img img {
    height: 320px;
  }

  .why-editorial-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-editorial-gallery {
    height: 480px;
  }

  .attractions-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-editorial-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .amenities-editorial-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-editorial-gallery {
    height: 380px;
  }

  .why-frame-1 {
    width: 75%;
    height: 240px;
  }

  .why-frame-2 {
    width: 60%;
    height: 180px;
  }

  .why-frame-3 {
    display: none;
  }

  .attractions-editorial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-editorial-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-glass-panel {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   15. REFACTORED INLINE STYLES
   ========================================================================== */

/* Header actions Loomyweb slot fallback hide */
[data-slot="header_actions"] {
  display: none;
}

/* Mobile nav stagger delay transitions */
.nav-menu-mobile ul li:nth-child(1) {
  --i: 1;
}

.nav-menu-mobile ul li:nth-child(2) {
  --i: 2;
}

.nav-menu-mobile ul li:nth-child(3) {
  --i: 3;
}

.nav-menu-mobile ul li:nth-child(4) {
  --i: 4;
}

.nav-menu-mobile ul li:nth-child(5) {
  --i: 5;
}

.nav-menu-mobile ul li:nth-child(6) {
  --i: 6;
}

.nav-menu-mobile ul li:nth-child(7) {
  --i: 7;
}

/* Hero slides background images */
.hero-slide:nth-child(1) .hero-slide-bg {
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/hero.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(2) .hero-slide-bg {
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/sunset.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(3) .hero-slide-bg {
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/luxuryspa.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(4) .hero-slide-bg {
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/authenticgoandining.jpg') no-repeat center center/cover;
}

.hero-slide:nth-child(5) .hero-slide-bg {
  background: linear-gradient(rgba(11, 36, 34, 0.45), rgba(11, 36, 34, 0.75)), url('../images/watersports.jpg') no-repeat center center/cover;
}