/* ===== HARMONY RESORT — CORE LUXURY STYLESHEET ===== */
/* Loomyweb Luxury Theme Handoff Compatible — v2.0.0 */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Design Tokens --- */
:root {
  /* Brand Colors */
  --primary-color: #1E5A45;
  /* Forest Green */
  --secondary-color: #C9A35C;
  /* Luxury Sand Gold */
  --reserve-gold: #C8A96A;
  /* Specific Header Button Gold */
  --bg-color: #F8F6F2;
  /* Warm Sand Background */
  --text-color: #1B1B1B;
  /* Dark Charcoal Text */
  --accent-color: #D6B06A;
  /* Bright Gold / Champagne */

  /* Neutral Shades */
  --text-muted: #5A625D;
  --white: #FFFFFF;
  --dark-charcoal: #111111;
  --border-light: rgba(30, 90, 69, 0.06);
  --border-gold: rgba(201, 163, 92, 0.2);
  --border-glass: rgba(255, 255, 255, 0.15);

  /* Typography */
  --ff-heading: 'Cinzel', Georgia, serif;
  --ff-body: 'Inter', -apple-system, sans-serif;

  /* Spacing System */
  --section-padding: clamp(7.5rem, 12vw, 11rem) 0;
  /* Expanded 120px to 176px vertical padding */
  --container-width: 1280px;
  /* Wider content width constraint */

  /* Shadows */
  --shadow-soft: 0 15px 35px rgba(27, 27, 27, 0.03);
  --shadow-luxury: 0 30px 60px rgba(27, 27, 27, 0.08);
  --shadow-glass: 0 10px 40px rgba(0, 0, 0, 0.12);

  /* Border Radii */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 8px;

  /* Transitions */
  --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --- 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: var(--ff-body);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

/* --- Container --- */
.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* --- Typography Helpers --- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  /* 48px+ section titles */
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  line-height: 1.8;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Luxury Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition-luxury);
}

.btn-gold {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(30, 90, 69, 0.2);
}

.btn-full {
  width: 100%;
}

/* Luxury Glow Sweep */
.btn-glow {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.8s ease;
  z-index: -1;
  opacity: 0;
}

.btn-glow:hover::after {
  left: 125%;
  opacity: 1;
}

/* Luxury Gold Divider Lines */
.gold-divider {
  width: 60px;
  height: 1px;
  background-color: var(--secondary-color);
  margin: 2rem auto;
  position: relative;
}

.gold-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

/* ==========================================================================
   1. STICKY HEADER (88px–96px Height)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-luxury);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(to bottom, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0) 100%);
}

.site-header.scrolled {
  height: 88px;
  background: rgba(30, 90, 69, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-nav-container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Elegant Typography Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text span {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--secondary-color);
  letter-spacing: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

.logo-img {
  max-height: 64px;
  width: auto;
}

/* Centered Navigation Links */
.nav-menu {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 3.5rem;
  /* Generous spacing */
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

/* Minimalist Underline Animation on Hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: var(--transition-luxury);
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: var(--white);
}

/* Reserve Pill Button */
.header-actions-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-reserve-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background-color: var(--reserve-gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 169, 106, 0.25);
  transition: var(--transition-luxury);
  cursor: pointer;
  border: none;
}

.btn-reserve-pill:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hamburger toggle navigation button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--white);
  transition: var(--transition-luxury);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  z-index: 0;
  /* Create stacking context so negative z-index children stay visible */
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Subtle Dark Luxury Overlays */
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(17, 17, 17, 0.5) 0%,
      rgba(17, 17, 17, 0.25) 50%,
      rgba(27, 27, 27, 0.75) 100%);
  z-index: 2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}

/* Left Typography & Badges */
.hero-text-block {
  max-width: 760px;
}

.hero-badge-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.weather-badge,
.awards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.weather-badge svg,
.awards-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-color);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3.5rem, 7vw, 5rem);
  /* Hero 72px approx */
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 600px;
}

.review-badge-float {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rating-stars {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: 1rem;
}

.rating-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Right Floating Booking Card */
.hero-booking-card-wrapper {
  display: flex;
  justify-content: flex-end;
}

.luxury-booking-card {
  width: 100%;
  max-width: 400px;
  background: rgba(30, 90, 69, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--white);
  transition: var(--transition-luxury);
}

.luxury-booking-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 163, 92, 0.4);
}

.luxury-booking-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.luxury-booking-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.booking-quick-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-input-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-input-row label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.booking-input-row input,
.booking-input-row select {
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-fast);
}

.booking-input-row input:focus,
.booking-input-row select:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.booking-input-row select option {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Scroll hint mouse */
.hero-scroll-indicator {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 4;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-scroll-indicator:hover {
  opacity: 0.8;
}

.indicator-mouse {
  width: 20px;
  height: 35px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel {
  width: 3px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.indicator-txt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
}

/* Wave Section Divider */
.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
}

/* ==========================================================================
   3. ABOUT SECTION (Editorial Magazine Collage Layout)
   ========================================================================== */
.about-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
  position: relative;
}

.about-magazine-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6.5rem;
  align-items: center;
}

/* Collage overlapping images design */
.collage-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.collage-accent-frame {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 1;
}

.collage-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  position: relative;
  z-index: 2;
}

.collage-img-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.collage-container:hover .collage-img-main img {
  transform: scale(1.03);
}

.collage-img-overlay {
  position: absolute;
  bottom: -40px;
  right: -25%;
  width: 55%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 6px solid var(--bg-color);
  z-index: 3;
  transition: var(--transition-luxury);
}

.collage-container:hover .collage-img-overlay {
  transform: translate(-10px, -10px);
}

/* Floating experience badge */
.floating-exp-badge {
  position: absolute;
  top: -20px;
  right: -10%;
  background: var(--primary-color);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  z-index: 4;
  text-align: center;
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-num {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent-color);
  font-weight: 500;
  display: block;
}

.badge-txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Details Column */
.about-content-col {
  padding-left: 1rem;
}

.editorial-lead {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  line-height: 1.45;
  margin-bottom: 2rem;
  font-weight: 300;
}

.editorial-paragraph {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Stats Floating Cards */
.about-stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition-luxury);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-luxury);
}

.stat-card h3 {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  color: var(--secondary-color);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Floating feature labels links */
.about-features-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.dot-divider {
  color: var(--secondary-color);
}

/* ==========================================================================
   4. ROOMS SECTION (Accommodations)
   ========================================================================== */
.accommodations-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.room-luxury-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-xl);
  /* 24px rounded corners */
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-luxury);
  border: 1px solid var(--border-light);
  position: relative;
}

.room-luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--secondary-color);
}

.room-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.room-luxury-card:hover .room-card-media img {
  transform: scale(1.06);
}

.room-card-price {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 5;
  box-shadow: var(--shadow-glass);
}

.room-card-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.4) 0%, transparent 50%);
  z-index: 2;
}

/* Details Overlay Panel */
.room-card-glass-panel {
  padding: 3rem 2.5rem;
  position: relative;
  background-color: var(--white);
  transition: var(--transition-luxury);
}

.room-card-main-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.room-card-main-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  transition: var(--transition-luxury);
}

/* Hover reveal drawer content */
.room-card-hidden-info {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-luxury);
  margin-top: 0;
}

.room-luxury-card:hover .room-card-hidden-info {
  max-height: 250px;
  opacity: 1;
  margin-top: 2rem;
}

.room-amenities-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.amenity-icon-box {
  width: 44px;
  height: 44px;
  background-color: var(--bg-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

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

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

.room-meta-txt {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   5. EXPERIENCES SECTION (Alternating Image/Content Blocks)
   ========================================================================== */
.experiences-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.experiences-blocks {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 4rem;
}

.experience-block-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: center;
}

.experience-block-row.alt-reverse {
  direction: rtl;
  /* Flip image left / text right ordering */
}

.experience-block-row.alt-reverse .exp-block-content {
  direction: ltr;
  /* Reset text direction */
}

/* Block Image Frame Overlays */
.exp-block-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.exp-block-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.experience-block-row:hover .exp-block-media img {
  transform: scale(1.04);
}

.exp-media-frame {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: 2;
}

/* Block Content Details */
.exp-block-content {
  padding: 0 1.5rem;
}

.exp-number {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.exp-block-content h3 {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.exp-block-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.exp-link-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.exp-link-arrow .arrow {
  transition: transform 0.4s ease;
}

.exp-link-arrow:hover {
  color: var(--secondary-color);
}

.exp-link-arrow:hover .arrow {
  transform: translateX(6px);
}

/* ==========================================================================
   6. WHY CHOOSE US (Premium Floating Cards with Counters)
   ========================================================================== */
.why-choose-section {
  padding: var(--section-padding);
  background-color: var(--white);
  position: relative;
}

/* Background grid pattern */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-gold) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.25;
  pointer-events: none;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 3;
}

.why-luxury-card {
  background: var(--bg-color);
  padding: 4rem 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: var(--transition-luxury);
  position: relative;
}

.why-luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.3;
  transition: var(--transition-luxury);
}

.why-luxury-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  background: var(--white);
}

.why-luxury-card:hover::before {
  opacity: 1;
}

.why-card-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(201, 163, 92, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-luxury);
}

.why-luxury-card:hover .why-card-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
}

.why-card-icon-box svg {
  width: 26px;
  height: 26px;
}

.why-counter-num {
  font-family: var(--ff-heading);
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-luxury-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.45rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.why-luxury-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   7. RESORT GALLERY (Pinterest Masonry with Lightbox)
   ========================================================================== */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

/* Masonry Columns */
.gallery-pinterest-masonry {
  column-count: 3;
  column-gap: 2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  background-color: var(--white);
}

.masonry-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-luxury);
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Image Hover Zoom Overlay */
.item-zoom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.2) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: var(--transition-luxury);
  z-index: 3;
}

.masonry-item:hover .item-zoom-overlay {
  opacity: 1;
}

.item-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
}

.item-zoom-overlay h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
}

/* Height Variations for Asymmetry */
.item-tall img {
  aspect-ratio: 2/3;
}

.item-featured img {
  aspect-ratio: 1/1;
}

.item-wide img {
  aspect-ratio: 3/2;
}

/* Lightbox Modal Box */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--accent-color);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxury);
}

/* ==========================================================================
   8. GUEST TESTIMONIALS (Luxury Carousel with Glass Cards)
   ========================================================================== */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.testimonials-carousel-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

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

.carousel-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 0 1rem;
}

.luxury-testimonial-card {
  background: var(--bg-color);
  padding: 4.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

/* Decorative background quotation icon */
.testimonial-decor-quote {
  position: absolute;
  top: 10px;
  right: 50px;
  font-size: 10rem;
  font-family: var(--ff-heading);
  line-height: 1;
  color: rgba(201, 163, 92, 0.08);
  pointer-events: none;
}

.testimonial-stars-rating {
  margin-bottom: 1.5rem;
}

.star-active {
  color: var(--secondary-color);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--primary-color);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.testimonial-guest-profile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.guest-avatar-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--secondary-color);
  box-shadow: var(--shadow-soft);
}

.guest-meta-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verified-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3b82f6;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.55rem;
  width: 13px;
  height: 13px;
}

.guest-meta-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Controls Indicators */
.carousel-navigation-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.carousel-control-btn {
  background: var(--bg-color);
  border: 1px solid var(--border-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-luxury);
}

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

.carousel-control-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-indicators {
  display: flex;
  gap: 0.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(30, 90, 69, 0.15);
  cursor: pointer;
  transition: var(--transition-luxury);
}

.carousel-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.3);
}

/* ==========================================================================
   9. FAQ SECTION (Modern Accordion)
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--bg-color);
}

.faq-accordion-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item-box {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-luxury);
}

.faq-item-box:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-luxury);
}

.faq-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-chevron-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-luxury);
}

.faq-chevron-icon svg {
  width: 16px;
  height: 16px;
}

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

.faq-item-box.active .faq-chevron-icon {
  transform: rotate(180deg);
}

.faq-body-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 2.5rem;
}

.faq-item-box.active .faq-body-content {
  max-height: 200px;
  padding-bottom: 2rem;
}

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

/* ==========================================================================
   10. CALL TO ACTION (CTA with Floating Particles)
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 9.5rem 0;
  overflow: hidden;
  color: var(--white);
}

.cta-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

.cta-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(30, 90, 69, 0.9) 0%,
      rgba(17, 17, 17, 0.85) 100%);
  z-index: -1;
}

/* Particle animation canvas simulation */
.cta-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background-color: var(--accent-color);
  border-radius: 50%;
  opacity: 0.35;
  animation: floatUp 15s infinite ease-in-out;
}

.p1 {
  width: 4px;
  height: 4px;
  top: 80%;
  left: 15%;
  animation-duration: 12s;
}

.p2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 45%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.p3 {
  width: 3px;
  height: 3px;
  top: 90%;
  left: 75%;
  animation-duration: 10s;
  animation-delay: 1s;
}

.p4 {
  width: 5px;
  height: 5px;
  top: 40%;
  left: 85%;
  animation-duration: 20s;
}

.p5 {
  width: 4px;
  height: 4px;
  top: 70%;
  left: 30%;
  animation-duration: 14s;
  animation-delay: 3s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-120px) scale(0.6);
    opacity: 0;
  }
}

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

.cta-luxury-card {
  text-align: center;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 5rem 4.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-glass);
}

.cta-luxury-card h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.cta-luxury-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

/* ==========================================================================
   11. CONTACT SECTION (Split layout with Map & Glass Card)
   ========================================================================== */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

.contact-editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.5rem;
  align-items: start;
}

.contact-info-col h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--primary-color);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Glass Details Card */
.contact-glass-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-top: 2rem;
  transition: var(--transition-luxury);
}

.contact-glass-badge:hover {
  transform: translateX(5px);
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: var(--shadow-soft);
}

.badge-icon-circ {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(30, 90, 69, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-glass-badge:hover .badge-icon-circ {
  background-color: var(--primary-color);
  color: var(--white);
}

.badge-icon-circ svg {
  width: 22px;
  height: 22px;
}

.badge-txt-box span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.badge-txt-box p,
.badge-txt-box a {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}

.badge-txt-box a:hover {
  color: var(--primary-color);
}

/* Map & Inclusions Split Card */
.contact-map-split-card {
  margin-top: 5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-light);
  background-color: var(--white);
}

.map-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 450px;
}

.map-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-iframe-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.complimentary-breakup-wrapper {
  padding: 3.5rem 3rem;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.complimentary-breakup-wrapper .section-label {
  margin-bottom: 0.75rem;
}

.complimentary-breakup-wrapper h4 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.breakup-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.complimentary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.complimentary-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.complimentary-list li svg.icon {
  width: 18px;
  height: 18px;
  color: var(--secondary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.comp-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.comp-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .map-split-layout {
    grid-template-columns: 1fr;
  }
  .map-iframe-wrapper iframe {
    height: 350px;
  }
  .complimentary-breakup-wrapper {
    padding: 2.5rem 2rem;
  }
}

/* Custom Inquiry Form styling inside slot */
.contact-slot-wrapper {
  background-color: var(--bg-color);
  padding: 3.5rem 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-luxury);
}

.form-header-group {
  margin-bottom: 2.25rem;
}

.form-header-group h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.form-header-group p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-row {
  margin-bottom: 1.5rem;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(30, 90, 69, 0.15);
  background-color: var(--white);
  font-size: 0.85rem;
  color: var(--text-color);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(201, 163, 92, 0.12);
}

/* ==========================================================================
   12. FOOTER (Dark Luxury Layout)
   ========================================================================== */
.site-footer {
  background-color: var(--dark-charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 6.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 0.9fr;
  gap: 4.5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-block .logo-text {
  font-size: 2.1rem;
}

.footer-desc {
  font-size: 0.85rem;
  margin-top: 1.5rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
  margin-bottom: 2rem;
}

/* Newsletter Area */
.newsletter-signup-area h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.newsletter-signup-area p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  max-width: 260px;
}

.newsletter-form input {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  width: 100%;
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding-left: 0.5rem;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  transform: translateX(4px);
}

/* Instagram moments grid */
.footer-instagram-block h4,
.footer-links-block h4,
.footer-social-block h4 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  max-width: 260px;
}

.insta-img-box {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.insta-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.insta-img-box:hover img {
  transform: scale(1.08);
}

/* Links Columns */
.footer-links-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.footer-links-grid a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-links-grid a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

/* Connect column & social icons fallback */
.fallback-social-links {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.fallback-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-luxury);
}

.fallback-social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(201, 163, 92, 0.2);
}

.fallback-social-links svg {
  width: 18px;
  height: 18px;
}

.footer-contact-details {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Copyright footer bottom */
.footer-bottom-bar,
.footer-bottom-copyright {
  text-align: center;
  padding-top: 3.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-copyright a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-copyright a:hover {
  color: var(--white);
}

/* Before Footer Slot */
.before-footer-slot {
  display: block;
}

/* Floating button slot */
.floating-button-slot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (IntersectionObserver entries)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hide Mobile Menu Overlay by Default on Desktop */
.mobile-menu-overlay {
  display: none;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (MOBILE-FIRST)
   ========================================================================== */

/* Up to Tablet (Landscape) */
@media (max-width: 1024px) {
  .nav-list {
    gap: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 6rem;
  }

  .hero-booking-card-wrapper {
    justify-content: center;
  }

  .luxury-booking-card {
    max-width: 550px;
    width: 100%;
  }

  .hero-scroll-indicator {
    bottom: 8rem;
  }

  .about-magazine-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .collage-container {
    width: 75%;
  }

  .collage-img-overlay {
    right: -15%;
  }

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

  .experience-block-row {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .experience-block-row.alt-reverse {
    direction: ltr;
    /* Remove image swap ordering on smaller devices */
  }

  .experience-block-row.alt-reverse .exp-block-content {
    direction: ltr;
  }

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

  .gallery-pinterest-masonry {
    column-count: 2;
  }

  .contact-editorial-layout {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .footer-top-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* Up to Mobile / Small Tablet (Portrait) */
@media (max-width: 900px) {
  :root {
    --section-padding: clamp(4.5rem, 8vw, 7rem) 0;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 7rem 0 10rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-container {
    margin-top: 2rem;
    gap: 2.5rem;
  }

  .site-header {
    height: 88px;
    background-color: rgba(30, 90, 69, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .btn-reserve-pill {
    display: none;
    /* Hide header cta pill to prioritize hamburger overlay menu */
  }

  .nav-menu {
    display: none;
    /* Hide standard nav list links on mobile */
  }

  .nav-toggle {
    display: flex;
  }

  /* Slide-in Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7rem 3rem 4rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu-overlay.active {
    right: 0;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    text-align: center;
  }

  .mobile-nav-link {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 2px;
  }

  .mobile-menu-footer {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .mobile-btn-fixed {
    display: flex;
    /* Display reserve CTA at the bottom of the mobile overlay */
    width: 90%;
    font-size: 0.9rem;
    padding: 1.1rem 2rem;
  }

  /* Hamburger Toggle Active Anim */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

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

  .hero-subtitle-p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-badge-row {
    gap: 0.75rem;
  }

  .collage-container {
    width: 90%;
  }

  .collage-img-overlay {
    right: -10%;
    bottom: -30px;
    width: 60%;
  }

  .floating-exp-badge {
    right: -5%;
    top: -30px;
    padding: 0.85rem 1.25rem;
    min-width: 100px;
  }

  .badge-num {
    font-size: 1.8rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .gallery-pinterest-masonry {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-pinterest-masonry::-webkit-scrollbar {
    display: none;
  }

  .gallery-pinterest-masonry .masonry-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .luxury-testimonial-card {
    padding: 2.5rem 1.75rem;
  }

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

  .faq-toggle-btn {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
  }

  .faq-body-content {
    padding: 0 1.75rem;
  }

  .cta-luxury-card {
    padding: 3.5rem 1.5rem;
  }

  .contact-slot-wrapper {
    padding: 2.5rem 1.5rem;
  }

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

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