/* ==========================================================================
   JJ HOLIDAY FARM — PREMIUM LUXURY RESORT STYLESHEET
   Design Tokens & Modern CSS Architecture
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-forest: #063F32;
  --color-forest-dark: #022C24;
  --color-forest-light: #0d5444;
  --color-cream: #F7F3E8;
  --color-warm-white: #FFFDF8;
  --color-pure-white: #FFFFFF;
  --color-gold: #D6B45A;
  --color-gold-light: #E5C875;
  --color-gold-dark: #B89230;
  --color-dark-text: #17231F;
  --color-muted-text: #5D726A;
  --color-light-border: rgba(6, 63, 50, 0.1);
  --color-gold-border: rgba(214, 180, 90, 0.35);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(2, 44, 36, 0.08);
  --shadow-lg: 0 20px 40px rgba(2, 44, 36, 0.14);
  --shadow-gold: 0 8px 25px rgba(214, 180, 90, 0.3);
  --glass-bg: rgba(6, 63, 50, 0.75);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-card: rgba(255, 255, 255, 0.12);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-warm-white);
  color: var(--color-dark-text);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark-text);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

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

ul {
  list-style: none;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

/* Section Common Styling */
.section {
  padding: 95px 0;
  position: relative;
}

.section-cream {
  background-color: var(--color-cream);
}

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

.section-dark h1, 
.section-dark h2, 
.section-dark h3, 
.section-dark h4 {
  color: var(--color-warm-white);
}

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

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted-text);
  font-weight: 400;
}

.section-dark .section-subtitle {
  color: rgba(255, 253, 248, 0.78);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-forest-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 180, 90, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  transform: translateY(-2px);
}

.btn-forest {
  background-color: var(--color-forest);
  color: var(--color-warm-white);
  box-shadow: var(--shadow-md);
}

.btn-forest:hover {
  background-color: var(--color-forest-dark);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-warm-white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--color-warm-white);
  color: var(--color-forest-dark);
  border-color: var(--color-warm-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

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

.site-header.scrolled {
  background-color: rgba(6, 63, 50, 0.95);
  backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(2, 44, 36, 0.25);
  border-bottom: 1px solid rgba(214, 180, 90, 0.2);
}

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.site-header .brand-logo {
  padding-top: 10px;
}

.site-header .brand-logo img,
.site-header .brand-logo svg {
  height: 84px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: var(--transition);
  position: relative;
  z-index: 10;
}

.site-header.scrolled .brand-logo {
  padding-top: 2px;
}

.site-header.scrolled .brand-logo img {
  height: 65px;
}

.mobile-drawer-header .brand-logo img {
  height: 48px;
  width: auto;
}

.footer-brand .brand-logo img {
  height: 60px;
  width: auto;
}

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

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-warm-white);
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-warm-white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--color-forest-dark);
  z-index: 1100;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  border-left: 1px solid var(--color-gold-border);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--color-warm-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-nav-links .nav-link {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: var(--color-warm-white);
  padding-top: 120px;
  padding-bottom: 40px;
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 44, 36, 0.15) 0%, rgba(2, 44, 36, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 10px 0 20px;
}

.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 10px;
  display: block;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-warm-white);
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--color-gold-light);
  margin-bottom: 18px;
}

.hero-subheading {
  font-size: 1.12rem;
  color: rgba(255, 253, 248, 0.9);
  max-width: 700px;
  margin: 0 auto 35px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-watch-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-warm-white);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px 16px;
  transition: var(--transition);
}

.play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.play-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.btn-watch-video:hover .play-circle {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  transform: scale(1.08);
}

/* Hero Floating Glass Highlights Strip */
.hero-highlights-container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 35px;
}

.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.highlight-card {
  background: rgba(6, 63, 50, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.highlight-card:hover {
  background: rgba(6, 63, 50, 0.88);
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(214, 180, 90, 0.15);
  color: var(--color-gold);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-warm-white);
  margin-bottom: 2px;
}

.highlight-info p {
  font-size: 0.82rem;
  color: rgba(255, 253, 248, 0.75);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   QUICK HIGHLIGHTS STRIP (Section style)
   ========================================================================== */
.quick-strip {
  background-color: var(--color-forest-dark);
  padding: 36px 0;
  border-top: 1px solid rgba(214, 180, 90, 0.2);
  border-bottom: 1px solid rgba(214, 180, 90, 0.2);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-warm-white);
  transition: var(--transition);
}

.quick-item:hover {
  transform: translateX(5px);
}

.quick-icon {
  font-size: 2rem;
  color: var(--color-gold);
}

.quick-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-warm-white);
  margin-bottom: 2px;
}

.quick-text p {
  font-size: 0.85rem;
  color: rgba(255, 253, 248, 0.7);
  margin: 0;
}

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

.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.collage-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 320px;
  position: relative;
}

.collage-sub {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 180px;
}

.collage-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(6, 63, 50, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-style: italic;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 35px 0 35px;
  padding-top: 25px;
  border-top: 1px solid var(--color-light-border);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--color-muted-text);
  font-weight: 500;
  line-height: 1.25;
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-light-border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214, 180, 90, 0.4);
}

.service-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-forest);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-warm-white);
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover .service-icon-badge {
  background: var(--color-gold);
  color: var(--color-forest-dark);
}

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

.service-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--color-muted-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card:hover .service-link {
  color: var(--color-gold-dark);
  gap: 10px;
}

/* ==========================================================================
   FEATURED FACILITIES (Dark Split Showcase)
   ========================================================================== */
.facility-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.facility-block:last-child {
  margin-bottom: 0;
}

.facility-block.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.facility-block.reverse .facility-media {
  order: 2;
}

.facility-block.reverse .facility-content {
  order: 1;
}

.facility-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 380px;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.facility-media:hover img {
  transform: scale(1.05);
}

.facility-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(214, 180, 90, 0.9);
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(214, 180, 90, 0.6);
  transition: var(--transition);
  border: none;
}

.facility-play-btn:hover {
  background: var(--color-warm-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.facility-badge-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(2, 44, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-script);
  font-size: 1.25rem;
  font-style: italic;
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

.facility-heading {
  font-size: 2.2rem;
  color: var(--color-warm-white);
  margin-bottom: 16px;
}

.facility-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.facility-desc {
  font-size: 1rem;
  color: rgba(255, 253, 248, 0.8);
  margin-bottom: 24px;
}

.facility-checklist {
  margin-bottom: 30px;
}

.facility-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-warm-white);
  margin-bottom: 12px;
}

.facility-checklist li i {
  color: var(--color-gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   OUR PACKAGES & TARIFFS (LUXURY REDESIGN)
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.package-card {
  background: var(--color-pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 63, 50, 0.08);
  border: 1px solid rgba(6, 63, 50, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(6, 63, 50, 0.15);
  border-color: var(--color-gold);
}

.package-card.featured {
  border: 2px solid var(--color-gold);
  box-shadow: 0 16px 45px rgba(214, 180, 90, 0.25), 0 4px 15px rgba(6, 63, 50, 0.08);
  background: #ffffff;
}

.package-card.featured::before {
  content: '★ MOST RECOMMENDED ★';
  display: block;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-forest-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  padding: 6px 0;
  text-transform: uppercase;
}

.package-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-thumb img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(6, 63, 50, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.package-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.package-subtitle {
  font-size: 0.88rem;
  color: var(--color-muted-text);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Dual Rate Box */
.pkg-rate-box {
  background: linear-gradient(180deg, #F9F7F1 0%, #F4EFE2 100%);
  border: 1px solid rgba(214, 180, 90, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.pkg-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.pkg-rate-row:not(:last-child) {
  border-bottom: 1px dashed rgba(6, 63, 50, 0.15);
}

.pkg-rate-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-forest);
}

.pkg-rate-label .day-pill {
  display: inline-block;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.day-pill.weekday {
  background: rgba(6, 63, 50, 0.1);
  color: var(--color-forest);
}

.day-pill.weekend {
  background: rgba(214, 180, 90, 0.25);
  color: #8c6814;
}

.pkg-rate-val {
  text-align: right;
}

.pkg-rate-val strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest-dark);
}

.pkg-rate-val span {
  font-size: 0.75rem;
  color: var(--color-muted-text);
  font-weight: 500;
  display: block;
}

/* Info Badges & Highlights */
.pkg-info-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.pkg-info-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--color-dark-text);
  background: rgba(6, 63, 50, 0.04);
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

.pkg-info-item i {
  color: var(--color-gold-dark);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pkg-info-item strong {
  color: var(--color-forest-dark);
  font-weight: 600;
}

.package-features {
  text-align: left;
  margin-bottom: 22px;
  font-size: 0.86rem;
  color: var(--color-muted-text);
  flex-grow: 1;
}

.package-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.35;
}

.package-features li i {
  color: #20BA5A;
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Actions Row */
.pkg-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.pkg-btn-book {
  width: 100%;
}

.pkg-btn-whatsapp {
  width: 100%;
  background: #25D366;
  color: #ffffff;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.pkg-btn-whatsapp:hover {
  background: #1eb956;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Tariff Guarantee Banner */
.packages-guarantee-strip {
  margin-top: 45px;
  background: var(--color-forest);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: var(--color-warm-white);
  border: 1px solid var(--color-gold-border);
  box-shadow: var(--shadow-lg);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.guarantee-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 180, 90, 0.18);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-warm-white);
  margin-bottom: 2px;
}

.guarantee-text p {
  font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.72);
  margin: 0;
}

/* ==========================================================================
   WHY CHOOSE US (Dark 6-Item Grid)
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(2, 44, 36, 0.6);
  border: 1px solid rgba(214, 180, 90, 0.2);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  background: rgba(2, 44, 36, 0.9);
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 180, 90, 0.12);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  transform: rotateY(180deg);
}

.why-title {
  font-size: 1.25rem;
  color: var(--color-warm-white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: rgba(255, 253, 248, 0.75);
}

/* ==========================================================================
   OUR WORK / VIDEO GRID
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.work-featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
  cursor: pointer;
  background: #000;
}

.work-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

.work-featured-card:hover img {
  transform: scale(1.05);
}

.work-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.work-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 148px;
  cursor: pointer;
  background: #000;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
  z-index: 2;
}

.work-overlay-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.work-duration {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--color-gold);
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(214, 180, 90, 0.9);
  color: var(--color-forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: var(--transition);
  z-index: 2;
}

.work-featured-card:hover .video-play-badge,
.work-card:hover .video-play-badge {
  background: var(--color-warm-white);
  transform: translate(-50%, -50%) scale(1.15);
}

/* ==========================================================================
   PHOTO GALLERY
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--color-warm-white);
  border: 1px solid var(--color-light-border);
  color: var(--color-dark-text);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--color-forest);
  color: var(--color-gold);
  border-color: var(--color-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 63, 50, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-warm-white);
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

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

.gallery-zoom-icon {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

/* ==========================================================================
   EVENT CELEBRATION CTA (Split Banner)
   ========================================================================== */
.event-cta-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-lg);
  background-color: var(--color-forest-dark);
}

.event-cta-img {
  height: 380px;
  position: relative;
}

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

.event-cta-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-warm-white);
}

.event-cta-title {
  font-size: 2.2rem;
  color: var(--color-warm-white);
  margin-bottom: 16px;
}

.event-cta-desc {
  font-size: 1rem;
  color: rgba(255, 253, 248, 0.85);
  margin-bottom: 30px;
}

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

/* ==========================================================================
   TESTIMONIALS (Carousel)
   ========================================================================== */
.testimonial-carousel-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  background: var(--color-pure-white);
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-light-border);
  text-align: center;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-dark-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}

.author-info h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.82rem;
  color: var(--color-muted-text);
  margin: 0;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-warm-white);
  border: 1px solid var(--color-light-border);
  color: var(--color-forest);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.carousel-nav-btn:hover {
  background: var(--color-forest);
  color: var(--color-gold);
}

.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6, 63, 50, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 8px;
  background: var(--color-forest);
}

/* ==========================================================================
   PLAN YOUR VISIT / BOOKING FORM SECTION
   ========================================================================== */
.booking-split-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-pure-white);
}

.booking-info-pane {
  background: var(--color-forest-dark);
  color: var(--color-warm-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.booking-info-pane h3 {
  color: var(--color-warm-white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.booking-info-pane p {
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-meta-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.9);
}

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

.booking-farm-mini-img {
  margin-top: 25px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-form-pane {
  padding: 50px 45px;
}

.booking-form-pane h3 {
  font-size: 2rem;
  margin-bottom: 25px;
}

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

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

.form-group {
  margin-bottom: 18px;
}

.form-group.col-span-2 {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-dark-text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid rgba(6, 63, 50, 0.2);
  border-radius: var(--radius-sm);
  background-color: var(--color-warm-white);
  color: var(--color-dark-text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(6, 63, 50, 0.12);
}

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

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: none;
}

.form-alert.success {
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
  display: block;
}

.form-alert.error {
  background: #fce8e6;
  color: #c5221f;
  border: 1px solid #fad2cf;
  display: block;
}

/* ==========================================================================
   GOOGLE MAPS SECTION
   ========================================================================== */
.map-section {
  position: relative;
  height: 420px;
  width: 100%;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-floating-card {
  position: absolute;
  top: 30px;
  left: 50px;
  background: var(--color-pure-white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-border);
  z-index: 5;
  max-width: 320px;
}

.map-floating-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.map-floating-card p {
  font-size: 0.85rem;
  color: var(--color-muted-text);
  margin-bottom: 14px;
}

/* ==========================================================================
   FINAL CTA PANORAMIC BANNER
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--color-warm-white);
  overflow: hidden;
}

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

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

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 44, 36, 0.75) 0%, rgba(2, 44, 36, 0.9) 100%);
  z-index: 2;
}

.final-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3rem;
  color: var(--color-warm-white);
  margin-bottom: 14px;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--color-gold-light);
  margin-bottom: 35px;
  font-weight: 300;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-forest-dark);
  color: var(--color-warm-white);
  padding: 80px 0 30px;
  border-top: 1px solid var(--color-gold-border);
}

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

.footer-brand p {
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.92rem;
  margin: 18px 0 20px;
  line-height: 1.6;
}

.footer-tagline {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.15rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-warm-white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

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

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

.footer-links a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 253, 248, 0.78);
  margin-bottom: 14px;
}

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

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 253, 248, 0.6);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

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

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

.whatsapp-tooltip {
  background: var(--color-forest-dark);
  color: var(--color-warm-white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gold);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   LIGHTBOX & VIDEO MODALS
   ========================================================================== */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 30px;
}

.custom-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content-wrap {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--color-gold);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightbox-img-wrap {
  text-align: center;
}

.lightbox-img-wrap img {
  max-height: 80vh;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: var(--color-warm-white);
  padding: 14px 0 0;
  font-size: 1rem;
}

/* ==========================================================================
   PAGE HERO (For Inner Pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  background-color: var(--color-forest-dark);
  text-align: center;
  color: var(--color-warm-white);
  overflow: hidden;
}

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

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

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 3.2rem;
  margin-bottom: 12px;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 253, 248, 0.7);
}

.page-breadcrumbs a {
  color: var(--color-gold);
}

/* ==========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.1rem;
  }
  .nav-menu, .header-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-grid, 
  .facility-block, 
  .facility-block.reverse,
  .event-cta-wrap,
  .booking-split-card,
  .work-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .facility-block.reverse .facility-media {
    order: 1;
  }
  .facility-block.reverse .facility-content {
    order: 2;
  }
  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 65px 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-highlights-grid,
  .quick-strip-grid,
  .services-grid,
  .why-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-collage {
    grid-template-columns: 1fr;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.col-span-2 {
    grid-column: span 1;
  }
  .carousel-prev { left: -10px; }
  .carousel-next { right: -10px; }
  .final-cta-title {
    font-size: 2.2rem;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .booking-info-pane,
  .booking-form-pane {
    padding: 30px 20px;
  }
  .packages-guarantee-strip {
    padding: 22px 18px;
  }
}
