/* ==========================================================================
   O Nila Resort - Main Stylesheet
   Luxury Boutique Mountain Resort Styling
   ========================================================================== */

:root {
  --primary: #12372a;
  --primary-dark: #0b241b;
  --primary-light: #1f503e;
  --accent-gold: #cfa85e;
  --accent-gold-hover: #b89146;
  --accent-warm: #df7b35;
  --cream-bg: #f9f7f2;
  --surface-white: #ffffff;
  --surface-card: #f4f0e6;
  --text-main: #1c2722;
  --text-muted: #000000;
  --text-light: #8b9991;
  --border-light: rgba(18, 55, 42, 0.1);
  --border-glass: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 4px 12px rgba(18, 55, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(18, 55, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(18, 55, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-serif: 'Italiana', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  background-color: #ffffff;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  /* Enhanced brightness and crispness for vibrant images */
  filter: brightness(1.02) contrast(1.02) saturate(1.04);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

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

.wrap,
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ----------------- Typography & Utilities ----------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background-color: var(--accent-gold);
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.heading.light {
  color: #ffffff;
}

.lede {
  color: #000000;
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.7;
}

.lede.light {
  color: rgba(255, 255, 255, 0.88);
}

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

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(18, 55, 42, 0.15);
}

.btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 55, 42, 0.25);
  color: #ffffff;
}

.btn.gold {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 600;
}

.btn.gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: #ffffff;
}

.btn.outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.btn.outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.btn.light {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  font-weight: 600;
}

.btn.light:hover {
  background-color: var(--cream-bg);
  transform: translateY(-2px);
}

.btn.outline-white {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.btn.outline-white:hover {
  background-color: #ffffff;
  color: var(--primary-dark);
}

/* ----------------- Header & Navigation ----------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 12px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(18, 55, 42, 0.1);
  padding: 6px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover {
  transform: translateY(-1px) scale(1.02);
}

.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(207, 168, 94, 0.35));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .brand-logo-img {
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(18, 55, 42, 0.2));
}

.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

header.scrolled .brand-title {
  color: var(--primary, #0e2f24);
  text-shadow: none;
  font-weight: 700;
}

@keyframes goldShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.brand-sub {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: linear-gradient(110deg,
      #cfa85e 0%,
      #fbf0d9 25%,
      #ffffff 45%,
      #fbf0d9 65%,
      #cfa85e 85%,
      #96722e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3.5s linear infinite;
  margin-top: 4px;
  display: inline-block;
  white-space: nowrap;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.9));
}

header.scrolled .brand-sub {
  background: linear-gradient(110deg,
      #9c7224 0%,
      #d4af37 25%,
      #fff5c0 45%,
      #d4af37 65%,
      #9c7224 85%,
      #6e4e13 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3.5s linear infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

header.scrolled .nav-links a {
  color: var(--text-main);
  text-shadow: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.25s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

header.scrolled .menu-toggle {
  color: var(--primary);
  text-shadow: none;
}

/* ----------------- Hero Section & Slider ----------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding-top: 90px;
  padding-bottom: 70px;
  background: #081a13;
  overflow: hidden;
}

/* Multi-Slide Carousel */
.hero-slider-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s linear;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.06) contrast(1.04) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Balanced gradient preserving brightness while giving high text contrast */
  background: linear-gradient(90deg,
      rgba(6, 18, 13, 0.8) 0%,
      rgba(6, 18, 13, 0.55) 45%,
      rgba(6, 18, 13, 0.2) 100%),
    linear-gradient(180deg,
      rgba(6, 18, 13, 0.45) 0%,
      transparent 35%,
      rgba(6, 18, 13, 0.75) 100%);
  z-index: 2;
}

/* Hero Content & Frosted Luxury Card for Clear Text */
.hero-wrap {
  position: relative;
  z-index: 3;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-card {
  display: none;
  max-width: 680px;
  background: rgb(9 28 20 / 41%);
  /* backdrop-filter: blur(16px); */
  -webkit-backdrop-filter: blur(16px);
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(207, 168, 94, 0.25);
}

.hero-card.active {
  display: block;
  animation: heroCardFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes heroCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card .eyebrow {
  color: #fce4b3;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-card .eyebrow::before {
  background-color: #fce4b3;
}

.hero-card h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
}

.hero-card .hero-desc {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls (Prev/Next & Dots) */
.slider-nav {
  position: absolute;
  right: 32px;
  bottom: 100px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 85px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(207, 168, 94, 0.6);
}

/* ----------------- Search / Availability Form ----------------- */
.search-container {
  position: relative;
  z-index: 10;
  margin-top: -55px;
  margin-bottom: 40px;
}

.search-box {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr 1fr auto;
  gap: 16px;
  padding: 20px 28px;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(18, 55, 42, 0.12);
  border: 1px solid rgba(207, 168, 94, 0.25);
  align-items: center;
}

.field-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.field-group:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-light);
}

.field-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.field-group input,
.field-group select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
}

/* ----------------- About Section ----------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.photo-mosaic {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
}

.photo-mosaic .main-photo-card {
  height: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.photo-mosaic .main-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic .accent-photo-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 270px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 8px solid var(--cream-bg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.photo-mosaic .accent-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-mosaic .badge-experience {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.badge-experience span {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--surface-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.feature-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-card);
  color: var(--accent-gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-pill-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
}

.quote-box {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--surface-card);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ----------------- Rooms Section ----------------- */
.rooms-section {
  background-color: var(--surface-card);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.room-card {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(18, 55, 42, 0.06);
}

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

.room-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.04) contrast(1.03) saturate(1.05);
}

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

.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-body h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.room-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.amenity-tag {
  font-size: 0.8rem;
  color: var(--primary-light);
  background: var(--surface-card);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.room-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-price {
  display: flex;
  flex-direction: column;
}

.room-price strong {
  font-size: 1.15rem;
  color: var(--primary);
}

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

/* ----------------- Experiences & Amenities ----------------- */
.experience-section {
  background-color: var(--primary-dark);
  color: #ffffff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.experience-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.experience-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.experience-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.02);
}

.experience-card:hover .experience-img-wrap img {
  transform: scale(1.1);
}

.experience-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.experience-icon {
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.experience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 8px;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ----------------- Dining Section ----------------- */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.dining-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 540px;
}

.dining-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) contrast(1.02);
}

.dining-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(18, 55, 42, 0.92);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  border: 1px solid var(--accent-gold);
}

.dining-badge span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
}

.dining-badge strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.tick-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 34px;
}

.tick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
}

.tick-item::before {
  content: '✦';
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* ----------------- Packages Section ----------------- */
.packages-section {
  background: #f1ebd8;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.package-card {
  padding: 38px 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(86, 67, 42, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.package-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.package-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 20px;
}

.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}

.package-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 26px;
  flex-grow: 1;
}

.package-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* ----------------- Gallery Section ----------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
  margin-top: 45px;
}

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

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.03) contrast(1.02);
}

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

.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 55, 42, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ----------------- Reviews Section ----------------- */
.reviews-section {
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
}

.review-content {
  max-width: 860px;
  margin-inline: auto;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
}

.review-content blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 28px;
}

.review-content cite {
  display: block;
  font-style: normal;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
}

/* ----------------- Contact & Enquiry Section ----------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-card {
  background: var(--surface-card);
  padding: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 400;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-detail {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 55, 42, 0.2);
  border-radius: var(--radius-sm);
  background: var(--surface-white);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 55, 42, 0.1);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  font-weight: 500;
  color: var(--primary);
}

/* ----------------- Footer ----------------- */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .brand-title {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

/* ----------------- Floating Action Button (WhatsApp) ----------------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* ----------------- Responsive Media Queries ----------------- */
@media (max-width: 1080px) {
  .search-box {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .field-group:not(:last-child)::after {
    display: none;
  }

  .search-box .btn {
    grid-column: 1 / -1;
  }

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

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

  .about-grid,
  .dining-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .photo-mosaic {
    padding-right: 0;
    padding-bottom: 0;
  }

  .photo-mosaic .main-photo-card {
    height: 440px;
  }

  .photo-mosaic .accent-photo-card {
    position: static;
    width: 100%;
    height: 240px;
    margin-top: 16px;
    border: none;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    background: var(--surface-white);
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    gap: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--text-main);
    font-size: 1.05rem;
    text-shadow: none;
  }

  .header-cta-btn {
    display: none;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-card {
    padding: 28px 24px;
    margin: 40px 0 60px;
  }

  .hero-card h1 {
    font-size: 2.5rem;
  }

  .hero-card .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .slider-nav {
    display: none;
  }

  .slider-dots {
    bottom: 50px;
  }

  .search-container {
    margin-top: -30px;
  }

  .search-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

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

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   Page Banner & Breadcrumbs (Standardized across all subpages)
   ========================================================================== */
.page-banner {
  background: linear-gradient(180deg, #06150f 0%, #0c2b20 100%);
  padding: 96px 24px 28px;
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid rgba(207, 168, 94, 0.2);
}

.page-banner .sub-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.page-banner .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.page-banner .breadcrumb-item a {
  color: var(--accent-gold, #cfa85e);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-banner .breadcrumb-item a:hover {
  text-decoration: underline;
}

.page-banner .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  color: rgba(255, 255, 255, 0.35);
  margin-right: 10px;
  padding-right: 0;
  float: none;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 85px 16px 22px;
  }

  .page-banner .sub-page-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .page-banner .breadcrumb {
    font-size: 0.85rem;
    gap: 8px;
  }
}

/* -------------------------------------------------------------
 * Magnific Popup Lightbox - Modern & Premium Overlay Styling
 * ------------------------------------------------------------- */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999 !important;
  overflow: hidden;
  position: fixed;
  background: rgba(6, 20, 15, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  opacity: 0.96 !important;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000 !important;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 20px 40px;
  box-sizing: border-box;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1000001;
  max-width: 92vw;
}

.mfp-figure {
  line-height: 0;
  margin: 0;
  position: relative;
}

.mfp-figure figure {
  margin: 0;
}

img.mfp-img {
  width: auto;
  max-width: 90vw !important;
  height: auto;
  max-height: 84vh !important;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto;
  border-radius: 14px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(207, 168, 94, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  object-fit: contain;
}

.mfp-bottom-bar {
  margin-top: 12px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mfp-title {
  color: #ffffff !important;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.mfp-counter {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  color: #dfb762 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(223, 183, 98, 0.3);
}

.mfp-close {
  width: 44px !important;
  height: 44px !important;
  line-height: 40px !important;
  position: fixed !important;
  right: 24px !important;
  top: 24px !important;
  text-decoration: none !important;
  text-align: center !important;
  opacity: 0.9 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-style: normal !important;
  font-size: 28px !important;
  font-family: Arial, sans-serif !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  z-index: 1000005 !important;
}

.mfp-close:hover {
  opacity: 1 !important;
  background: rgba(207, 168, 94, 0.9) !important;
  color: #081a13 !important;
  transform: scale(1.1);
  border-color: #dfb762 !important;
}

.mfp-arrow {
  position: fixed !important;
  opacity: 0.85 !important;
  margin: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
  width: 50px !important;
  height: 50px !important;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  z-index: 1000004 !important;
}

.mfp-arrow:hover {
  opacity: 1 !important;
  background: rgba(207, 168, 94, 0.9) !important;
  color: #081a13 !important;
  border-color: #dfb762 !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.mfp-arrow-left {
  left: 24px !important;
}

.mfp-arrow-right {
  right: 24px !important;
}

.bsoft {
  font-weight: 700;
  color: #fff;
}

.bsoft:hover {
  color: #ffd586;
}

.contact-detail a {
  text-decoration: none !important;
}