/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --primary: #1A4D2E;
  --primary-light: #2D5F41;
  --primary-dark: #0F331D;
  --accent: #C5A059;
  --accent-light: #D4B67D;
  --accent-dark: #A67C3D;

  /* Neutral Palette */
  --surface: #FDFBF7;
  --surface-alt: #F5F1E9;
  --depth: #0A110D;
  --white: #FFFFFF;
  --text: #1F2923;
  --text-muted: #5C6B61;
  --text-on-dark: #E6EDE9;

  /* Legacy Aliases for Compatibility */
  --charcoal: var(--depth);
  --gold: var(--accent);
  --gold-light: var(--accent-light);
  --forest: var(--primary);
  --forest-dark: var(--primary-dark);
  --beige: var(--surface-alt);
  --sand: #EAE3D2;
  --text-light: var(--text-muted);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(10, 17, 13, 0.03);
  --shadow-md: 0 12px 32px rgba(10, 17, 13, 0.06);
  --shadow-lg: 0 24px 64px rgba(10, 17, 13, 0.1);
  --shadow-premium: 0 40px 100px rgba(10, 17, 13, 0.12);

  /* Spacing & Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s var(--ease-out);
  --transition-base: 0.5s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden
}

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%
}

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

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

ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  overflow: hidden
}

section {
  overflow: hidden
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition)
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm)
}

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

.header-logo img {
  height: 62px;
  transition: var(--transition)
}

.site-header.scrolled .header-logo img {
  height: 62px
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center
}

.nav-menu>li {
  position: relative
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-link i {
  font-size: .7rem;
  transition: var(--transition)
}

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

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

.site-header.scrolled .nav-link {
  color: var(--charcoal)
}

.site-header.scrolled .nav-link:hover {
  color: var(--forest)
}

.nav-menu li:hover .nav-link i {
  transform: rotate(180deg)
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100
}

.nav-menu li:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  font-size: .85rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  cursor: pointer
}

.dropdown-item:hover,
.dropdown-item.active {
  background: var(--beige);
  color: var(--forest);
  border-left-color: var(--gold);
  padding-left: 28px
}

.dropdown-item i {
  font-size: .7rem;
  margin-left: 8px
}

/* Nested Dropdown */
.dropdown-submenu {
  position: relative
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  transform: translateX(10px);
  margin-top: -12px
}

.dropdown-submenu:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-whatsapp {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition)
}

.header-whatsapp:hover {
  background: #25D366;
  color: #fff
}

.site-header.scrolled .header-whatsapp {
  background: rgba(37, 211, 102, .1);
  color: #25D366
}

.btn-book-now {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: .85rem;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: var(--transition)
}

.btn-book-now:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1px)
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition)
}

.site-header.scrolled .mobile-toggle span {
  background: var(--charcoal)
}

/* ===== MOBILE SIDEBAR ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition)
}

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

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  transition: .4s ease;
  overflow-y: auto;
  padding: 24px
}

.mobile-sidebar.active {
  right: 0
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px
}

.mobile-logo {
  height: 40px
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal)
}

.mobile-menu li {
  border-bottom: 1px solid var(--beige)
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-weight: 500;
  color: var(--charcoal);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  width: 100%
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--forest)
}

.mobile-link i {
  font-size: .8rem;
  transition: var(--transition)
}

.mobile-dropdown.active>.mobile-link i {
  transform: rotate(180deg)
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
  padding-left: 16px;
  background: var(--beige)
}

.mobile-dropdown.active>.mobile-submenu {
  max-height: 2500px;
  padding-bottom: 12px
}

.mobile-submenu li {
  border-bottom: none
}

.mobile-submenu li a {
  display: block;
  padding: 10px 0;
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500
}

.mobile-submenu li a:hover,
.mobile-submenu li a.active {
  color: var(--gold)
}

.mobile-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/resort/hero-banner.jpg') center/cover no-repeat
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .55) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 24px
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--body-font);
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, .88);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  border-radius: 50px;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--gold);
  line-height: 1
}

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

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 50px;
  font-size: .9rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: var(--transition)
}

.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white)
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .6);
  font-size: 1.5rem;
  animation: bounceDown 2s infinite
}

@keyframes bounceDown {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(10px)
  }
}

/* ===== SECTION BASE ===== */
.section {
  padding: 100px 0
}

.section-alt {
  background: var(--beige)
}

.section-dark {
  background: var(--forest-dark);
  color: var(--white)
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px
}

.section-tag {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px
}

.section-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 16px
}

.section-dark .section-header h2 {
  color: var(--white)
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, .7)
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.about-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition)
}

.about-img:hover img {
  transform: scale(1.03)
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md)
}

.about-text h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.3
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.02rem
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--beige);
  border-radius: var(--radius);
  transition: var(--transition)
}

.about-highlight:hover {
  background: var(--sand);
  transform: translateY(-2px)
}

.about-highlight i {
  color: var(--forest);
  font-size: 1.2rem
}

.about-highlight span {
  font-weight: 500;
  font-size: .92rem
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .04)
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold)
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.4rem;
  transition: var(--transition)
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--sunset))
}

.feature-card h3 {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--charcoal)
}

.feature-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.package-card {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition)
}

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

.package-img {
  width: 240px;
  min-height: 260px;
  flex-shrink: 0;
  overflow: hidden
}

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

.package-card:hover .package-img img {
  transform: scale(1.08)
}

.package-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.package-body h3 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--charcoal)
}

.package-body p {
  color: var(--text-light);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 20px
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

.btn-link:hover {
  color: var(--gold);
  gap: 12px
}

/* ===== ROOMS ===== */
.rooms-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 48px
}

.rooms-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8
}

.rooms-slider {
  overflow: hidden;
  padding: 10px 0
}

.rooms-swiper {
  overflow: hidden
}

.room-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.room-slide-img {
  height: 300px;
  overflow: hidden
}

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

.room-slide:hover .room-slide-img img {
  transform: scale(1.05)
}

.room-slide-body {
  padding: 24px;
  background: var(--white)
}

.room-slide-body h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  margin-bottom: 8px
}

.room-slide-body p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 16px
}

.room-amenities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.room-amenities span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-light)
}

.room-amenities i {
  color: var(--forest);
  font-size: .8rem
}

.swiper-pagination-bullet-active {
  background: var(--forest) !important
}

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .05)
}

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

.amenity-card i {
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 14px;
  transition: var(--transition)
}

.amenity-card:hover i {
  color: var(--gold);
  transform: scale(1.15)
}

.amenity-card span {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--charcoal)
}

/* ===== GALLERY ===== */
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
  overflow: hidden
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition)
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .4));
  opacity: 0;
  transition: var(--transition)
}

.gallery-item:hover::after {
  opacity: 1
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: var(--transition)
}

.why-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-4px)
}

.why-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px
}

.why-card h4 {
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px
}

.why-card p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.testimonial-slide {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 700px;
  margin: 0 auto
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 4px
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px
}

.testimonial-author {
  font-weight: 600;
  color: var(--charcoal)
}

.testimonial-role {
  font-size: .85rem;
  color: var(--text-light)
}

/* ===== BLOGS ===== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition)
}

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

.blog-img {
  height: 220px;
  position: relative;
  overflow: hidden
}

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

.blog-card:hover .blog-img img {
  transform: scale(1.08)
}

.blog-date {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm)
}

.blog-body {
  padding: 28px
}

.blog-body h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--charcoal);
  line-height: 1.4
}

.blog-body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: url('../images/resort/cta-banner.jpg') center/cover no-repeat;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 85, 48, .9), rgba(44, 85, 48, .8))
}

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

.cta-banner h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 1.1rem;
  flex-shrink: 0
}

.contact-info-item h4 {
  font-size: .95rem;
  margin-bottom: 4px;
  color: var(--charcoal)
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-light);
  font-size: .92rem;
  line-height: 1.6
}

.contact-info-item a:hover {
  color: var(--forest)
}

.contact-form {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 36px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal)
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: .92rem;
  background: var(--white);
  transition: var(--transition);
  outline: none
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, .1)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: .5px
}

.btn-submit:hover {
  background: var(--forest-dark);
  transform: translateY(-1px)
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .8)
}

.footer-top {
  padding: 80px 0 48px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px
}

.footer-logo {
  height: 62px;
  margin-bottom: 16px
}

.footer-desc {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 20px
}

.footer-social {
  display: flex;
  gap: 12px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal)
}

.footer-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold)
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: var(--transition)
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0
}

.footer-contact a {
  color: rgba(255, 255, 255, .6);
  transition: var(--transition);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-contact li>a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-map {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.footer-map iframe {
  width: 100%;
  max-width: 100%
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .4)
}

/* ===== HORIZONTAL PACKAGE CARDS ===== */
.packages-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto
}

.package-card-horizontal {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .05)
}

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

.package-card-img {
  width: 35%;
  min-height: 280px;
  position: relative
}

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

.package-card-body {
  width: 65%;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.package-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.package-card-body h3 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--charcoal)
}

.package-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--beige);
  border-radius: 4px;
  font-size: .85rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 20px
}

.package-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px
}

.package-features li {
  font-size: .9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px
}

.package-features li i {
  color: var(--gold);
  font-size: .8rem
}

.package-footer {
  margin-top: auto
}

@media(max-width:768px) {
  .package-card-horizontal {
    flex-direction: column
  }

  .package-card-img,
  .package-card-body {
    width: 100%
  }

  .package-card-img {
    min-height: 200px
  }

  .package-features {
    grid-template-columns: 1fr
  }
}

/* ===== ROOM LISTING CARDS ===== */
.rooms-listing-grid {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.room-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, .05)
}

.room-main-info {
  display: flex
}

.room-gallery {
  width: 45%;
  position: relative
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px
}

.room-text {
  width: 55%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.room-text h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 8px
}

.room-tagline {
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  font-size: .95rem;
  font-weight: 500
}

.room-amenities-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.room-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px
}

.room-icon-item i {
  font-size: 1.2rem;
  color: var(--forest);
  background: var(--beige);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.room-icon-item span {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light)
}

.room-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px
}

.room-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--charcoal)
}

.room-features-list li i {
  color: var(--gold);
  font-size: .9rem
}

@media(max-width:991px) {
  .room-main-info {
    flex-direction: column
  }

  .room-gallery,
  .room-text {
    width: 100%
  }

  .room-gallery img {
    min-height: 300px
  }

  .room-text {
    padding: 32px
  }
}

@media(max-width:576px) {
  .room-features-list {
    grid-template-columns: 1fr
  }
}

/* ===== AMENITIES PAGE CARDS ===== */
.amenities-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px
}

.amenity-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .05)
}

.amenity-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold)
}

.amenity-img {
  height: 200px;
  position: relative
}

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

.amenity-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white)
}

.amenity-info {
  padding: 32px 24px 24px
}

.amenity-info h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 12px
}

.amenity-info p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6
}

/* ===== DINING PAGE ===== */
.dining-intro-flex {
  display: flex;
  align-items: center;
  gap: 64px
}

.dining-intro-text {
  width: 55%
}

.dining-intro-img {
  width: 45%
}

.dining-intro-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg)
}

.dining-features {
  display: flex;
  gap: 32px;
  margin-top: 32px
}

.dining-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.dining-feat-item i {
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--forest);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.dining-feat-item span {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal)
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px
}

.meal-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: var(--transition)
}

.meal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold)
}

.meal-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige)
}

.meal-header i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block
}

.meal-header h3 {
  font-family: var(--heading-font);
  color: var(--charcoal)
}

.meal-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
  color: var(--text-light)
}

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

@media(max-width:991px) {
  .dining-intro-flex {
    flex-direction: column;
    gap: 40px
  }

  .dining-intro-text,
  .dining-intro-img {
    width: 100%
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--beige);
  color: var(--charcoal);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--transition)
}

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

.gallery-page-masonry {
  column-count: 4;
  column-gap: 24px
}

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: .4s ease
}

.gallery-page-item img {
  width: 100%;
  transition: var(--transition)
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 43, 36, .8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center
}

.gallery-overlay i {
  font-size: 1.8rem;
  margin-bottom: 12px;
  transform: translateY(20px);
  transition: var(--transition)
}

.gallery-overlay span {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: .1s
}

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

.gallery-page-item:hover .gallery-overlay i,
.gallery-page-item:hover .gallery-overlay span {
  transform: translateY(0)
}

.gallery-page-item:hover img {
  transform: scale(1.05)
}

@media(max-width:1199px) {
  .gallery-page-masonry {
    column-count: 3
  }
}

@media(max-width:768px) {
  .gallery-page-masonry {
    column-count: 2
  }
}

@media(max-width:480px) {
  .gallery-page-masonry {
    column-count: 1
  }
}

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .05)
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold)
}

.event-img {
  height: 220px
}

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

.event-info {
  padding: 24px
}

.event-info h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 12px
}

.event-info p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6
}

.venue-flex {
  display: flex;
  align-items: center;
  gap: 64px
}

.venue-text {
  width: 55%
}

.venue-perks {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.venue-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--beige)
}

.venue-perks li i {
  color: var(--gold);
  font-size: .8rem
}

.venue-stats-grid {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.venue-stat-item {
  background: rgba(255, 255, 255, .05);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .1)
}

.venue-stat-item h4 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px
}

.venue-stat-item span {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .6)
}

@media(max-width:991px) {
  .venue-flex {
    flex-direction: column;
    gap: 40px
  }

  .venue-text,
  .venue-stats-grid {
    width: 100%
  }

  .venue-perks {
    grid-template-columns: 1fr
  }
}

/* ===== CONTACT PAGE CARDS ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px
}

.contact-card-box {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: var(--transition)
}

.contact-card-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold)
}

.contact-card-box i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block
}

.contact-card-box h3 {
  font-family: var(--heading-font);
  color: var(--charcoal);
  margin-bottom: 12px
}

.contact-card-box p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 24px
}

.contact-card-links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-card-links a,
.contact-email {
  color: var(--forest);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition)
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: scale(1.05)
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5)
}

/* ===== CALL FLOAT ===== */
.call-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(26, 77, 46, 0.4);
  transition: all 0.3s var(--ease-out);
  animation: call-pulse 2s infinite;
  border: 2px solid var(--accent);
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(26, 77, 46, 0.5);
  background: var(--accent);
  border-color: var(--primary);
}

@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .6)
  }
}

/* ===== INNER HERO ===== */
.inner-hero {
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white)
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .4))
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px
}

.inner-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px
}

.inner-hero p {
  font-size: 1.1rem;
  opacity: .9
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: .8
}

.breadcrumb a:hover {
  color: var(--gold)
}

/* ===== ABOUT PAGE SECTIONS ===== */
.intro-flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center
}

.intro-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg)
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.story-images {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px
}

.collage-main img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%
}

.collage-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  border: 8px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden
}

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

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.exp-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .03)
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold)
}

.exp-card i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block
}

.exp-card h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--charcoal)
}

.exp-card p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.6
}

/* ===== STATS ===== */
.section-stats {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 85, 48, .85)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light)
}

.stat-label {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: .9
}

/* ===== AMENITIES SIMPLE ===== */
.amenities-grid-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.amenity-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition)
}

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

.amenity-item i {
  font-size: 1.4rem;
  color: var(--gold)
}

.amenity-item:hover i {
  color: var(--white)
}

.amenity-item span {
  font-weight: 500;
  font-size: .95rem
}

/* ===== WHY CHOOSE GRID ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  transition: var(--transition)
}

.why-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md)
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm)
}

.why-info h4 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--charcoal)
}

.why-info p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.5
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--charcoal);
  padding: 40px 0;
  color: var(--white)
}

.strip-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px
}

.strip-item i {
  font-size: 1.6rem;
  color: var(--gold)
}

.strip-item span {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .6
}

.strip-item p {
  font-size: 1.1rem;
  font-weight: 600
}

.btn-whatsapp-strip {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition)
}

.btn-whatsapp-strip:hover {
  background: var(--white);
  color: var(--charcoal)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1199px) {

  .header-nav,
  .header-whatsapp,
  .btn-book-now {
    display: none
  }

  .mobile-toggle {
    display: flex
  }

  .header-container {
    padding: 0 16px
  }
}

@media(max-width:1024px) {

  .features-grid,
  .why-grid,
  .blogs-grid,
  .experience-grid,
  .stats-grid,
  .amenities-grid-simple {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-masonry {
    columns: 3
  }

  .packages-grid {
    grid-template-columns: 1fr
  }

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

  .intro-flex,
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .strip-flex {
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:768px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-img img {
    height: 300px
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-masonry {
    columns: 2
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .section {
    padding: 60px 0
  }

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

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

  .package-card {
    flex-direction: column
  }

  .package-img {
    width: 100%;
    min-height: 200px
  }

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

  .contact-form {
    padding: 24px
  }

  .testimonial-slide {
    padding: 24px
  }

  .cta-banner {
    padding: 60px 0
  }

  iframe {
    max-width: 100%
  }

  .inner-hero {
    height: 300px
  }

  .stat-number {
    font-size: 2.5rem
  }

  .collage-sub {
    width: 180px
  }
}

@media(max-width:480px) {

  .features-grid,
  .why-grid,
  .blogs-grid,
  .experience-grid,
  .stats-grid,
  .amenities-grid-simple,
  .why-choose-grid {
    grid-template-columns: 1fr
  }

  .gallery-masonry {
    columns: 2
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: center
  }

  .stat-number {
    font-size: 2.2rem
  }

  .collage-sub {
    display: none
  }

  .story-images {
    padding: 0
  }
}

/* ===== MEAL & MENU SECTION ===== */
.meal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px
}

.meal-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  gap: 20px
}

.meal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold)
}

.meal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold)
}

.meal-header i {
  font-size: 1.8rem
}

.meal-header h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--charcoal)
}

.meal-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.meal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.4
}

.meal-list li i {
  color: var(--gold);
  font-size: .4rem;
  margin-top: 8px
}

.btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  line-height: 1
}

.btn-pdf:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px)
}

/* ===== PACKAGE AMENITIES INLINE ===== */
.amenities-grid-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px
}

.amenity-inline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--beige);
  border-radius: var(--radius);
  transition: var(--transition)
}

.amenity-inline-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px)
}

.amenity-inline-item i {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm)
}

.amenity-inline-item span {
  font-weight: 500;
  font-size: .9rem;
  color: var(--charcoal)
}

/* ============================================================
   PREMIUM REDESIGN SYSTEM
   ============================================================ */

/* --- Base Enhancements --- */
body {
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--depth);
}

.text-accent {
  color: var(--accent);
}

.italic {
  font-style: italic;
}

.light {
  color: var(--white) !important;
}

/* --- Reveal Animations --- */
[data-reveal] {
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="right"] {
  transform: translateX(-40px);
}

[data-reveal="left"] {
  transform: translateX(40px);
}

[data-reveal].active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* --- Buttons --- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition-base);
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.btn-premium:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--depth);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-minimal {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--depth);
  position: relative;
  padding: 10px 0;
  transition: var(--transition-base);
}

.btn-minimal.light {
  color: var(--white);
}

.btn-minimal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out);
}

.btn-minimal:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Section Kickers --- */
.section-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 24px;
}

/* --- Cinematic Hero --- */
.hero-premium {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--depth);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay-refined {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 17, 13, 0.8) 0%, rgba(10, 17, 13, 0.2) 60%, rgba(10, 17, 13, 0) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin-bottom: 40px;
  color: var(--white);
}

.hero-tagline {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 48px;
  color: var(--text-on-dark);
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-scroll-indicator {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {

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

  50% {
    transform: translateY(8px);
  }
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLineMove 2s infinite var(--ease-in-out);
}

@keyframes scrollLineMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-social-links {
  display: flex;
  gap: 24px;
}

.hero-social-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.hero-social-links a:hover {
  color: var(--accent);
}

/* --- Manifesto Section --- */
.manifesto-section {
  padding: 160px 0;
  background: var(--surface);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.manifesto-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 40px;
}

.manifesto-body p {
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.manifesto-body p.lead {
  font-size: 1.4rem;
  color: var(--depth);
  line-height: 1.6;
}

.manifesto-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.manifesto-visual {
  position: relative;
  width: 100%;
}

.manifesto-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  width: 100%;
}

.manifesto-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
}

.img-caption {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(10, 17, 13, 0.45);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.manifesto-floating-card {
  position: absolute;
  bottom: 32px;
  right: -32px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  width: 210px;
  box-shadow: 0 16px 48px rgba(10, 17, 13, 0.22);
  z-index: 3;
}

.manifesto-floating-card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.manifesto-floating-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Collections Section --- */
.collections-section {
  padding: 140px 0;
  background: var(--depth);
  color: var(--white);
}

.collection-header {
  margin-bottom: 80px;
}

.header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.collections-section .section-title,
.collections-section h2,
.collections-section h3 {
  color: var(--white);
}

.header-desc {
  max-width: 400px;
  color: var(--text-on-dark);
  opacity: 0.7;
}

.collections-horizontal-scroll {
  display: flex;
  gap: 32px;
  padding: 0 5% 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
  scroll-behavior: smooth;
}

.collections-horizontal-scroll::-webkit-scrollbar {
  height: 8px;
}

.collections-horizontal-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.collections-horizontal-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* --- Scroll Navigation Header --- */
.scroll-navigation-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.scroll-hint {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-btns {
  display: flex;
  gap: 12px;
}

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

.btn-scroll-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--depth);
  transform: scale(1.05);
}

.collection-card {
  flex: 0 0 450px;
  position: relative;
  aspect-ratio: 1/1.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: var(--transition-slow);
}

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

.collection-card:hover .card-bg {
  transform: scale(1.1);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(10, 17, 13, 0.9) 0%, rgba(10, 17, 13, 0) 100%);
  z-index: 2;
}

.collection-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.collection-card p {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  opacity: 0.8;
  margin-bottom: 24px;
}

.card-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
}

/* --- Habitat Section --- */
.habitat-section {
  padding: 160px 0;
  background: var(--surface);
}

.habitat-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: center;
}

.habitat-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 100%;
}

.habitat-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 17, 13, 0.08);
  width: 90%;
  z-index: 1;
  align-self: stretch;
  min-height: 360px;
}

.habitat-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.habitat-secondary-img {
  position: absolute;
  top: -40px;
  right: 0;
  width: 260px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: 0 16px 48px rgba(10, 17, 13, 0.14);
  z-index: 2;
  transition: var(--transition-base);
}

.habitat-secondary-img:hover {
  transform: translateY(-10px) rotate(2deg);
}

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

.habitat-text {
  padding-top: 20px;
}

.habitat-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 28px 0;
  line-height: 1.8;
}

.amenity-list-refined {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.amenity-list-refined li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--depth);
}

.amenity-list-refined i {
  color: var(--accent);
}

/* --- Kitchen Section --- */
.kitchen-section {
  position: relative;
  height: 55vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.kitchen-section .container {
  width: 100%;
}

.kitchen-bg-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kitchen-bg-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 13, 0.5);
  z-index: 2;
}

.kitchen-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.kitchen-content p {
  margin-bottom: 40px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.kitchen-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

/* General Parallax Image sizing to prevent background gaps during scroll shifting */
.parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
}

/* --- Gallery Preview --- */
.gallery-preview-section {
  padding: 140px 0;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-box.tall {
  aspect-ratio: 1/1.5;
}

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

.box-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 13, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.box-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  transform: translateY(20px);
  transition: var(--transition-base);
}

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

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

.gallery-box:hover .box-overlay span {
  transform: translateY(0);
}

/* --- Inquiry Section --- */
.inquiry-section {
  padding: 140px 0;
  background: var(--surface-alt);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: stretch;
}

.inquiry-form-card {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(10, 17, 13, 0.08);
  border: 1px solid rgba(10, 17, 13, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.premium-form {
  margin-top: 48px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-floating-custom {
  position: relative;
  margin-bottom: 32px;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 17, 13, 0.1);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--depth);
  transition: var(--transition-fast);
}

.form-floating-custom textarea {
  height: 80px;
  resize: none;
}

.form-floating-custom label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.form-floating-custom input:focus~label,
.form-floating-custom input:not(:placeholder-shown)~label,
.form-floating-custom textarea:focus~label,
.form-floating-custom textarea:not(:placeholder-shown)~label {
  top: -12px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.form-floating-custom input.is-invalid,
.form-floating-custom select.is-invalid,
.form-floating-custom textarea.is-invalid {
  border-bottom-color: #dc3545;
}

.error-msg {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 0.75rem;
  color: #dc3545;
  font-weight: 500;
}

.inquiry-info {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.info-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.info-item:hover i {
  color: var(--primary);
  transform: scale(1.15);
}

.info-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-preview {
  margin-top: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.map-preview iframe {
  flex-grow: 1;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 24px;
}

/* --- Navigation & Footer --- */
.site-header {
  padding: 32px 0;
  transition: var(--transition-base);
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.nav-link {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.site-header.scrolled .nav-link {
  color: var(--depth);
}

.btn-book-now {
  background: var(--accent);
  color: var(--depth);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.site-footer {
  background: var(--depth);
  color: var(--white);
  padding: 120px 0 60px;
}

.footer-title {
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
}

/* --- Responsive --- */
@media (max-width: 1200px) {

  .manifesto-grid,
  .habitat-row,
  .inquiry-grid {
    gap: 60px;
  }
}

@media (max-width: 992px) {

  .manifesto-grid,
  .habitat-row,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .habitat-secondary-img {
    position: static;
    width: 100%;
    margin-top: 32px;
  }

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

  .collections-horizontal-scroll {
    padding: 0 20px;
  }

  .collection-card {
    flex: 0 0 350px;
  }

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

@media (max-width: 768px) {
  .manifesto-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .inquiry-form-card {
    padding: 40px;
  }
}

/* --- Inner Hero --- */
.hero-inner-premium {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--depth);
}

.hero-inner-premium .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-inner-premium .hero-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
}

.hero-inner-premium .hero-overlay-refined {
  background: linear-gradient(to bottom,
      rgba(10, 17, 13, 0.6) 0%,
      rgba(10, 17, 13, 0.7) 50%,
      rgba(10, 17, 13, 0.8) 100%);
}

.hero-inner-premium .hero-inner {
  position: relative;
  z-index: 3;
}

.inner-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-top: 24px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(10, 17, 13, 0.45);
}

.inner-title .text-accent {
  color: var(--accent);
  text-shadow: 0 2px 16px rgba(10, 17, 13, 0.45);
}

.breadcrumb-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 8px rgba(10, 17, 13, 0.4);
}

.breadcrumb-premium a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.breadcrumb-premium a:hover {
  color: var(--accent);
}

.breadcrumb-premium .sep {
  color: var(--accent);
}

.breadcrumb-premium .current {
  color: var(--white);
}

/* --- Values Section --- */
.values-section {
  padding: 100px 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 1.5rem 0px;
  /* Overlap with manifesto */
}

.value-card {
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: var(--transition-base);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 32px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

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

/* --- Stats Strip --- */
.stats-strip {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.stats-row {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--accent);
}

.stat-box .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Feature List --- */
.feature-list-premium {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.f-item {
  display: flex;
  gap: 24px;
}

.f-item i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-top: 5px;
}

.f-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.f-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.reversed {
  direction: rtl;
}

.reversed>* {
  direction: ltr;
}

/* --- Responsive Inner --- */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 40px;
  }

  .stat-box {
    flex: 0 0 40%;
  }
}

/* --- Packages Listing --- */
.packages-listing-section {
  padding: 120px 0;
}

.section-header-refined {
  margin-bottom: 80px;
}

.packages-grid-premium {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.package-row-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.package-row-premium.reversed {
  direction: rtl;
}

.package-row-premium.reversed>* {
  direction: ltr;
}

.p-row-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.p-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.package-row-premium:hover .p-row-visual img {
  transform: scale(1.05);
}

.p-badge-premium {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--depth);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  font-weight: 600;
  z-index: 2;
}

.p-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.package-row-premium h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.package-row-premium p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.p-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--depth);
  font-weight: 500;
}

.p-meta i {
  color: var(--accent);
  margin-right: 8px;
}

.p-features-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.p-features-minimal li {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--surface-alt);
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.p-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* --- Responsive Packages --- */
@media (max-width: 992px) {
  .package-row-premium {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .package-row-premium.reversed {
    direction: ltr;
  }
}

/* --- Dining Page Specifics --- */
.dining-usps-refined {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.usp-item i {
  color: var(--accent);
}

/* --- Menu Grid --- */
.menu-grid-section {
  padding: 120px 0;
  background: var(--surface-alt);
}

.menu-cards-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.menu-card-premium {
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.35s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}

.menu-card-premium h3,
.menu-card-premium .menu-time,
.menu-card-premium .menu-icon {
  transition: all 0.35s var(--ease-out);
}

.menu-card-premium.featured {
  background: var(--depth);
  color: var(--white);
  transform: translateY(-20px);
  box-shadow: var(--shadow-premium);
}

.menu-card-premium:hover {
  transform: translateY(-10px);
  background: var(--primary);
  color: var(--white);
}

.menu-card-premium:hover h3 {
  color: var(--white);
}

.menu-card-premium:hover .menu-time {
  color: var(--accent-light);
}

.menu-card-premium:hover .menu-icon {
  color: var(--accent-light);
  opacity: 0.3;
}

.menu-card-premium.featured:hover {
  transform: translateY(-30px);
  background: var(--primary);
}

.menu-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.menu-card-premium h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.menu-card-premium.featured h3 {
  color: var(--white);
}

.menu-icon {
  position: absolute;
  top: 40px;
  right: 32px;
  font-size: 2rem;
  opacity: 0.1;
}

.menu-card-premium.featured .menu-icon {
  opacity: 0.3;
  color: var(--accent);
}

.menu-items-refined {
  list-style: none;
  padding: 0;
}

.menu-items-refined li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 17, 13, 0.05);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-out);
}

.menu-card-premium:hover .menu-items-refined li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.menu-card-premium.featured .menu-items-refined li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
}

.menu-items-refined li:last-child {
  border: none;
}

/* --- Responsive Dining --- */
@media (max-width: 1200px) {
  .menu-cards-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .menu-card-premium.featured {
    transform: none;
  }

  .menu-card-premium.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .menu-cards-premium {
    grid-template-columns: 1fr;
  }
}

/* --- Amenities Grid --- */
.amenities-grid-cinematic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.amenity-card-cinematic {
  position: relative;
  display: flex;
  flex-direction: column;
}

.amenity-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 24px;
}

.amenity-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.amenity-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.amenity-overlay i {
  font-size: 3rem;
  color: var(--accent);
  transform: scale(0.8);
  transition: var(--transition-base);
}

.amenity-card-cinematic:hover .amenity-visual img {
  transform: scale(1.1);
}

.amenity-card-cinematic:hover .amenity-overlay {
  opacity: 1;
}

.amenity-card-cinematic:hover .amenity-overlay i {
  transform: scale(1);
}

.amenity-meta h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--depth);
}

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

/* --- Responsive Amenities --- */
@media (max-width: 1200px) {
  .amenities-grid-cinematic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid-cinematic {
    grid-template-columns: 1fr;
  }
}

/* --- Blog Section Premium --- */
.blog-section-premium {
  padding: 160px 0;
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.blog-section-premium::before {
  content: 'JOURNAL';
  position: absolute;
  top: 100px;
  right: -50px;
  font-size: 15vw;
  font-weight: 900;
  color: rgba(10, 17, 13, 0.03);
  z-index: 0;
  pointer-events: none;
}

.blog-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
  transition: var(--transition-base);
}

.blog-card-premium {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.stretched-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.blog-card-premium:hover .btn-minimal::after {
  transform: scaleX(1);
  transform-origin: left;
}

.blog-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-premium);
}

.blog-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/11;
}

.blog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.blog-card-premium:hover .blog-visual img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.blog-date span {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.blog-date em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.blog-meta {
  padding: 40px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-card-premium h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--depth);
}

.blog-card-premium p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .blog-grid-premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-section-premium {
    padding: 100px 0;
  }
}

/* ===================================================================
   CONCEPT DESIGN SYSTEM — CINEMATIC ADDITIONS
   Inspired by Jazean Coffee editorial aesthetic
   =================================================================== */

/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(197, 160, 89, 0.6);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

@media (max-width: 1023px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* --- HERO GRAIN TEXTURE --- */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
}

/* --- MARQUEE BAND --- */
.marquee-band {
  background: var(--primary);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.marquee-track .sep {
  color: var(--accent);
  font-style: normal;
  font-size: 0.65rem;
  vertical-align: middle;
}

/* --- MANIFESTO SECTION ENHANCEMENT --- */
.manifesto-section {
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: 'SHANTI';
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-size: 18vw;
  font-weight: 900;
  color: rgba(26, 77, 46, 0.04);
  font-family: var(--font-heading);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  user-select: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
}

/* --- COLLECTIONS DRAG STATE --- */
.collections-horizontal-scroll {
  cursor: grab;
  user-select: none;
}

.collections-horizontal-scroll.dragging {
  cursor: grabbing;
}

.collections-horizontal-scroll.dragging .collection-card {
  pointer-events: none;
}

/* --- HERO TEXT BLOCK --- */
.hero-text-block {
  max-width: 660px;
}

/* --- HERO BUTTON ICON --- */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
  flex-shrink: 0;
}

.btn-premium:hover .btn-icon {
  background: var(--accent);
  color: var(--depth);
}


/* --- GALLERY SECTION HEADER --- */
.gallery-section-label {
  text-align: center;
  margin-bottom: 72px;
}

.gallery-section-label span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.gallery-section-label h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--depth);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* --- INQUIRY SECTION TOP ACCENT --- */
.inquiry-section {
  position: relative;
}

.inquiry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

/* --- KITCHEN SECTION TITLE SCALE --- */
.kitchen-content .section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin: 24px 0 40px;
}

/* --- BLOG SECTION WATERMARK --- */
.blog-section-premium {
  position: relative;
  overflow: hidden;
}

/* --- HABITAT AMBIENT --- */
.habitat-section {
  overflow: hidden;
}

/* --- COLLECTION CARD NUMBER --- */
.collection-card::after {
  content: attr(data-index);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  z-index: 3;
}

/* --- STATS ITEM ANIMATION --- */
.stat-num {
  display: block;
  transition: transform 0.3s var(--ease-out);
}

.stat-item:hover .stat-num {
  transform: scale(1.05);
  color: var(--accent);
}

/* --- FORM SELECT ARROW FIX --- */
.form-floating-custom select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5A059' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}


/* ===================================================================
   RESPONSIVE — COMPREHENSIVE MOBILE DESIGN
   =================================================================== */

/* --- 1280px and below --- */
@media (max-width: 1280px) {
  .manifesto-grid {
    gap: 80px;
  }

  .manifesto-floating-card {
    right: -16px;
  }

  .habitat-row {
    gap: 80px;
  }
}

/* --- 1200px and below --- */
@media (max-width: 1200px) {
  .manifesto-section::before {
    font-size: 24vw;
    right: -20px;
  }

  .inquiry-grid {
    gap: 60px;
  }

  .inquiry-form-card {
    padding: 48px;
  }

  .collection-card {
    flex: 0 0 400px;
  }
}

/* --- 1024px tablet landscape --- */
@media (max-width: 1024px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .manifesto-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .manifesto-floating-card {
    right: -20px;
    bottom: 24px;
    width: 190px;
  }

  .habitat-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .habitat-visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .habitat-main-img {
    aspect-ratio: 4/5;
    min-height: auto;
  }

  .habitat-secondary-img {
    position: absolute;
    width: 200px;
    top: -24px;
    right: 0;
  }

  .header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .collection-card {
    flex: 0 0 360px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gallery-column:last-child {
    display: none;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* --- 768px tablet portrait --- */
@media (max-width: 768px) {

  /* Section padding */
  .manifesto-section,
  .habitat-section,
  .collections-section,
  .blog-section-premium,
  .gallery-preview-section,
  .inquiry-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .manifesto-section {
    padding-bottom: 120px;
  }

  /* Hero */
  .hero-premium {
    align-items: flex-end;
    padding-bottom: 120px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 36px;
  }

  .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-footer {
    bottom: 20px;
    padding: 0 20px;
  }

  .hero-social-links {
    display: none;
  }

  /* Inner Hero Mobile Fix */
  .hero-inner-premium {
    min-height: 460px;
    padding-top: 80px;
  }

  .inner-title {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
    line-height: 1.2;
    margin-top: 16px;
    padding-bottom: 20px;
  }

  /* Marquee */
  .marquee-band {
    padding: 14px 0;
  }

  .marquee-track {
    gap: 32px;
  }

  .marquee-track span {
    font-size: 0.8rem;
  }

  /* Manifesto */
  .manifesto-section::before {
    display: none;
  }

  .manifesto-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .manifesto-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 40px;
  }

  .manifesto-floating-card {
    right: -16px;
    bottom: 16px;
    width: 180px;
    padding: 18px 20px;
  }

  /* Collections */
  .collections-section {
    padding: 80px 0;
  }

  .collection-header {
    margin-bottom: 48px;
  }

  .collection-card {
    flex: 0 0 280px;
    aspect-ratio: 1/1.3;
  }

  .collections-horizontal-scroll {
    padding: 0 16px;
    gap: 20px;
  }

  /* Habitat */
  .habitat-secondary-img {
    position: absolute;
    display: block;
    width: 140px;
    top: -20px;
    right: 5%;
    border-width: 4px;
  }

  .habitat-main-img {
    width: 90%;
    aspect-ratio: 4/5;
    min-height: auto;
  }

  .amenity-list-refined {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Kitchen */
  .kitchen-section {
    height: auto;
    min-height: auto;
    padding: 80px 0;
  }

  .kitchen-content .section-title {
    font-size: clamp(2rem, 7vw, 3rem);
    margin: 16px 0 28px;
  }

  /* Gallery */
  .gallery-section-label h2 {
    font-size: 2rem;
  }

  .gallery-section-label {
    margin-bottom: 40px;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-column:last-child {
    display: none;
  }

  /* Blog */
  .blog-section-premium {
    padding: 80px 0;
  }

  /* Inquiry */
  .inquiry-form-card {
    padding: 36px 28px;
  }

  .premium-form {
    margin-top: 32px;
  }

  .inquiry-info {
    padding-top: 0;
  }

  .form-floating-custom textarea {
    height: 60px;
  }

  /* Section title scale */
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
}

@media (max-width: 617px) {
  .manifesto-floating-card {
    right: -11px;
    bottom: 12px;
  }
}

/* --- 576px mobile --- */
@media (max-width: 576px) {

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero-inner {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .btn-premium {
    padding: 14px 28px;
    font-size: 0.8rem;
  }

  /* Manifesto stats — single col on very small */
  .manifesto-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-num {
    font-size: 2rem;
  }

  /* Collections */
  .collection-card {
    flex: 0 0 260px;
  }

  /* Gallery — single col */
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-column:last-child {
    display: flex;
  }

  .gallery-column:nth-child(2) {
    padding-top: 0 !important;
  }

  /* Blog */
  .blog-card-premium {
    flex: 0 0 92%;
  }

  /* Inquiry form row */
  .row .col-md-6 {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Section kicker size */
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 3px;
  }

  .manifesto-floating-card {
    right: -8px;
    bottom: -8px;
  }
}

/* --- 420px very small mobile --- */
@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .collection-card {
    flex: 0 0 240px;
  }

  .manifesto-title {
    font-size: 1.8rem;
  }

  .inquiry-form-card {
    padding: 28px 20px;
  }
}

/* ===================================================================
   PREMIUM GALLERY MASONRY & UTILITIES
   =================================================================== */

/* --- Gallery Filter Premium --- */
.gallery-filter-premium {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 12px 24px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--depth);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-pill:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.filter-pill.active {
  background: transparent;
  border: none;
  color: var(--accent);
  box-shadow: none;
}

/* --- Gallery Masonry Premium --- */
.gallery-masonry-premium {
  columns: 3;
  column-gap: 24px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-masonry-item.tall {
  aspect-ratio: 3/4;
}

.gallery-masonry-item:not(.tall) {
  aspect-ratio: 4/3;
}

.gallery-masonry-item.is-blank {
  pointer-events: none;
  background: transparent;
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 17, 13, 0.85) 0%, rgba(10, 17, 13, 0.15) 60%, rgba(10, 17, 13, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-item-overlay i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  transform: translateY(20px);
  transition: var(--transition-base);
}

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition-base);
  transition-delay: 0.05s;
  text-align: center;
}

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

.gallery-masonry-item:hover .gallery-item-overlay i,
.gallery-masonry-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

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

/* --- Gallery Responsive --- */
@media (max-width: 1200px) {
  .gallery-masonry-premium {
    columns: 2;
    column-gap: 20px;
  }
}

@media (max-width: 768px) {
  .gallery-masonry-premium {
    columns: 2;
    column-gap: 16px;
  }

  .gallery-filter-premium {
    gap: 8px;
    margin-bottom: 40px;
  }

  .filter-pill {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-masonry-premium {
    columns: 1;
  }
}

/* ===================================================================
   PACKAGE DETAIL PAGE — PREMIUM COMPONENTS
   =================================================================== */

/* --- Package Highlights (Timing, Meals, Best For) --- */
.pkg-detail-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding: 32px;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 17, 13, 0.04);
}

.pkg-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.pkg-highlight-item>i {
  font-size: 1.3rem;
  color: var(--accent);
  margin-top: 3px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.pkg-highlight-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--depth);
}

.pkg-highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.pkg-detail-actions {
  margin-top: 40px;
}

/* --- Package Includes Grid (Value Cards) --- */
.pkg-includes-section {
  padding: 120px 0;
}

.pkg-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 1.5rem 0px;
}

/* --- Package Amenity Pills --- */
.pkg-amenities-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.pkg-amenity-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: var(--transition-base);
}

.pkg-amenity-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.pkg-amenity-pill i {
  color: var(--accent);
  font-size: 1.05rem;
}

/* Light theme for package/game amenity pills in light sections */
.values-section .pkg-amenity-pill {
  background: var(--surface-alt);
  border: 1px solid rgba(10, 17, 13, 0.08);
  color: var(--text);
  backdrop-filter: none;
}

.values-section .pkg-amenity-pill i {
  color: var(--primary);
}

.values-section .pkg-amenity-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.values-section .pkg-amenity-pill:hover i {
  color: var(--accent);
}

.pkg-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.6;
}

/* --- 3-Column Menu Grid Override --- */
.pkg-menu-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* --- Responsive Package Detail --- */
@media (max-width: 1200px) {
  .pkg-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pkg-menu-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 992px) {
  .pkg-includes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pkg-detail-highlights {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .pkg-amenities-flow {
    gap: 10px;
  }

  .pkg-amenity-pill {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .pkg-menu-grid-3 {
    grid-template-columns: 1fr !important;
  }

  .pkg-includes-section {
    padding: 80px 0;
  }
}

/* --- Utility Classes --- */
.w-100 {
  width: 100%;
}

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

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2rem;
}

.pt-5 {
  padding-top: 2rem;
}

.p-0 {
  padding: 0;
}

/* --- Row / Column Grid --- */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.col-md-6 {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 576px) {
  .col-md-6 {
    flex: 0 0 100%;
  }
}

/* --- Room Swiper in Package Row --- */
.p-row-visual .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p-row-visual .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-row-visual .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
}

.p-row-visual .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent) !important;
}

/* --- Inquiry Link Styles --- */
.inquiry-info a {
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-decoration: none;
}

.inquiry-info a:hover {
  color: var(--primary) !important;
  text-decoration: underline;
}

.info-item:hover a {
  color: var(--primary);
}

/* --- Contact Page Values Fix --- */
.values-section .value-card a {
  transition: var(--transition-fast);
}

.values-section .value-card a:hover {
  color: var(--accent) !important;
}

/* --- Stat Box Icon Styling --- */
.stat-box .stat-num i {
  font-size: 2.2rem;
  color: var(--accent);
}

/* --- jQuery Validation Styles --- */
.form-floating-custom input.is-invalid,
.form-floating-custom textarea.is-invalid {
  border-color: #dc3545 !important;
}

span.invalid-feedback {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 4px;
  display: block;
  text-align: left;
  font-weight: 500;
}

/* --- Custom Badminton Shuttlecock Icon (Font Awesome Free Fallback) --- */
.fa-shuttlecock {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20466.35%20466.35%22%3E%3Cpath%20d%3D%22M445.99%2C335.173l-33.065-33.065l-15.935%2C15.936L239.902%2C0h-14.307l-38.27%2C38.271l-1.384%2C75.715l-68.43-6.5l-10.026%2C10.027l6.501%2C68.428l-75.717%2C1.384L0%2C225.595V239.9l318.042%2C157.09l-15.935%2C15.934l33.065%2C33.066c27.146%2C27.146%2C71.159%2C27.146%2C98.305%2C0l12.511-12.512C473.137%2C406.332%2C473.137%2C362.32%2C445.99%2C335.173z%20M307.079%2C207.356l-15.627%2C15.627l-40.521-53.653l25.013-25.012L307.079%2C207.356z%20M268.894%2C245.54l-23.352%2C23.353l-53.653-40.521l36.483-36.484L268.894%2C245.54z%20M218.684%2C51.596l7.672-7.672l34.813%2C70.484l-29.465%2C29.464l-14.359-19.012L218.684%2C51.596z%20M194.093%2C146.499l15.053%2C19.932l-42.714%2C42.714L146.5%2C194.092l-4.996-52.589L194.093%2C146.499z%20M114.407%2C261.168l-70.483-34.813l7.673-7.672l73.264-1.338l19.013%2C14.359L114.407%2C261.168z%20M207.358%2C307.076l-63.04-31.135l25.014-25.013l53.652%2C40.522L207.358%2C307.076z%20M237.268%2C321.851l11.174-11.173l63.877%2C48.243L237.268%2C321.851z%20M270.999%2C288.119l17.121-17.121l52.831%2C69.951L270.999%2C288.119z%20M310.679%2C248.439l11.173-11.173l37.07%2C75.05L310.679%2C248.439z%22%2F%3E%3C%2Fsvg%3E');
  mask-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20466.35%20466.35%22%3E%3Cpath%20d%3D%22M445.99%2C335.173l-33.065-33.065l-15.935%2C15.936L239.902%2C0h-14.307l-38.27%2C38.271l-1.384%2C75.715l-68.43-6.5l-10.026%2C10.027l6.501%2C68.428l-75.717%2C1.384L0%2C225.595V239.9l318.042%2C157.09l-15.935%2C15.934l33.065%2C33.066c27.146%2C27.146%2C71.159%2C27.146%2C98.305%2C0l12.511-12.512C473.137%2C406.332%2C473.137%2C362.32%2C445.99%2C335.173z%20M307.079%2C207.356l-15.627%2C15.627l-40.521-53.653l25.013-25.012L307.079%2C207.356z%20M268.894%2C245.54l-23.352%2C23.353l-53.653-40.521l36.483-36.484L268.894%2C245.54z%20M218.684%2C51.596l7.672-7.672l34.813%2C70.484l-29.465%2C29.464l-14.359-19.012L218.684%2C51.596z%20M194.093%2C146.499l15.053%2C19.932l-42.714%2C42.714L146.5%2C194.092l-4.996-52.589L194.093%2C146.499z%20M114.407%2C261.168l-70.483-34.813l7.673-7.672l73.264-1.338l19.013%2C14.359L114.407%2C261.168z%20M207.358%2C307.076l-63.04-31.135l25.014-25.013l53.652%2C40.522L207.358%2C307.076z%20M237.268%2C321.851l11.174-11.173l63.877%2C48.243L237.268%2C321.851z%20M270.999%2C288.119l17.121-17.121l52.831%2C69.951L270.999%2C288.119z%20M310.679%2C248.439l11.173-11.173l37.07%2C75.05L310.679%2C248.439z%22%2F%3E%3C%2Fsvg%3E');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  vertical-align: middle;
}

.fa-shuttlecock::before {
  content: "" !important;
}

/* --- Mobile Fix for Inquiry Form Card and reCAPTCHA (Down to 320px) --- */
@media (max-width: 380px) {
  .g-recaptcha {
    transform: scale(0.86);
    transform-origin: 0 0;
    width: 261px;
    height: 67px;
  }
}

@media (max-width: 360px) {
  .inquiry-form-card {
    padding: 24px 16px !important;
  }
}

@media (max-width: 350px) {
  .g-recaptcha {
    transform: scale(0.78);
    transform-origin: 0 0;
    width: 237px;
    height: 61px;
  }
}

@media (max-width: 330px) {
  .inquiry-form-card {
    padding: 20px 12px !important;
  }
}

/* ===================================================================
   TOP HEADER UTILITY BAR & STICKY STYLING
   =================================================================== */
.header-top-bar {
  background: var(--depth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  font-weight: 500;
  height: 38px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-bar-left a,
.top-bar-right a {
  color: var(--accent);
  transition: color 0.3s ease;
  text-decoration: none;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--accent-light);
}

.top-bar-center {
  color: var(--accent);
}

/* Force padding overrides for header container positioning */
.site-header,
.site-header.scrolled {
  padding: 0 !important;
}

.header-container {
  padding: 24px 24px;
  transition: padding 0.3s ease;
}

.site-header.scrolled .header-container {
  padding: 12px 24px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .top-bar-center {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top-bar {
    display: none !important;
  }

  .header-container {
    padding: 16px 20px;
  }

  .site-header.scrolled .header-container {
    padding: 12px 20px;
  }
}