/* ==========================================================================
   AP GUEST HOUSE - MASTER STYLESHEET
   Pure Vanilla CSS utilizing CSS Grid for all core layouts.
   Strictly zero Tailwind CSS.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette */
  --color-primary: #7ba638;
  --color-primary-dark: #62872a;
  --color-primary-light: #94c34a;
  --lime: #7ba638;
  --leaf: #62872a;
  --color-forest: #143525;
  --color-forest-deep: #0d2319;
  --color-forest-darkest: #07150e;
  --color-forest-light: #1e4b35;

  /* Accent & Status */
  --color-accent-lime: #8ebd3b;
  --color-accent-soft: #f0f6e9;
  --color-accent-border: #dce7d0;
  --color-star: #eab308;

  /* Neutrals */
  --color-text-main: #1f2937;
  --color-text-muted: #596775;
  --color-text-light: #8e9da9;
  --color-white: #ffffff;
  --color-bg-light: #fbfdf9;
  --color-bg-card: #ffffff;
  --color-border: #e6ede0;
  --color-border-subtle: #f0f4ec;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 53, 37, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 53, 37, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 53, 37, 0.12);
  --shadow-booking: 0 20px 48px rgba(7, 21, 14, 0.2);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Max widths */
  --max-width: 1240px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::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-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & DECORATIONS
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-forest);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.leaf-motif {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 14px;
}

.leaf-motif::before,
.leaf-motif::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light));
}

.leaf-motif::after {
  background: linear-gradient(90deg, var(--color-primary-light), transparent);
}

.leaf-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  fill: currentColor;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(123, 166, 56, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(123, 166, 56, 0.45);
}

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

.btn-dark {
  background: var(--color-forest-deep);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(13, 35, 25, 0.25);
}

.btn-dark:hover {
  background: var(--color-forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 35, 25, 0.35);
}

.btn-dark .btn-icon {
  transition: transform var(--transition-fast);
}

.btn-dark:hover .btn-icon {
  transform: translateX(3px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION / HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 26, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(7, 18, 12, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Nav Grid */
.nav-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--color-white);
  transition: transform var(--transition-normal);
}

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

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #b7e366;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

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

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: rgba(8, 22, 14, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 150;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(8, 22, 14, 0.96);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-menu li a:hover {
  background: rgba(169, 214, 92, 0.15);
  color: #b7e366;
  padding-left: 22px;
}

.drawer-header {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-link {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding: 6px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #b7e366;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--color-primary);
  border-radius: 2px;
}

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

.nav-book-btn {
  background: var(--color-forest-deep);
  color: var(--color-white);
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
}

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

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-toggle svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff !important;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (FULL PAGE 100VH SLIDER)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background-color: #0b1f15;
  display: flex;
}

.hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100% !important;
  min-height: 680px;
  display: flex !important;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center center;
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 28, 19, 0.94) 0%,
    rgba(10, 28, 19, 0.82) 42%,
    rgba(10, 28, 19, 0.45) 75%,
    rgba(10, 28, 19, 0.25) 100%
  );
  orginal
} */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(10 28 19 / 59%) 0%, rgb(10 28 19 / 37%) 42%, rgba(10, 28, 19, 0.45) 75%, rgba(10, 28, 19, 0.25) 100%);
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(10 28 19 / 50%) 0%, rgb(10 28 19 / 50%) 42%, rgb(10 28 19 / 0%) 75%, rgb(10 28 19 / 0%) 100%);
}
.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-content {
  color: var(--color-white);
  max-width: 780px;
}

.hero-welcome-badge {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 3.5px;
  font-weight: 800;
  color: #a4d257;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.hero-main-title span {
  display: block;
  color: #a9d65c;
}

.hero-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 20px;
}

.hero-leaf-symbol {
  width: 28px;
  height: 28px;
  fill: #a9d65c;
  flex-shrink: 0;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e5f0d3;
}

.hero-description {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #d8e6d3;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 580px;
  line-height: 1.65;
}

/* Hero Action Buttons (Check Availability & Explore Rooms) */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.hero-btn.btn-primary {
  background: linear-gradient(135deg, #a9d65c 0%, #7ba638 100%);
  color: #0b2216;
  border: none;
  box-shadow: 0 8px 25px rgba(123, 166, 56, 0.45);
}

.hero-btn.btn-primary:hover {
  background: linear-gradient(135deg, #b8e26c 0%, #8cb943 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(123, 166, 56, 0.6);
  color: #05140c;
}

.hero-btn.btn-primary .btn-icon {
  stroke: #0b2216;
  width: 18px;
  height: 18px;
}

.hero-btn.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-btn.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #a9d65c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.hero-btn.btn-outline-white .btn-icon {
  stroke: currentColor;
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-btn.btn-outline-white:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero Controls (Image 1 layout: bottom-left bullets, bottom-right arrows) */
.hero-pagination {
  position: absolute;
  bottom: 40px !important;
  left: clamp(24px, 5vw, 80px) !important;
  transform: none !important;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 50%;
  transition: all var(--transition-normal);
  cursor: pointer;
  margin: 0 !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #a9d65c;
  width: 32px;
  border-radius: 8px;
}

.hero-controls {
  position: absolute;
  bottom: 35px;
  right: clamp(24px, 5vw, 80px);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 26, 17, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.hero-slider-btn:hover {
  background: #a9d65c;
  border-color: #a9d65c;
  color: #0b1f15;
  transform: scale(1.08);
}

.hero-slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --------------------------------------------------------------------------
   5B. FULL-WIDTH BOOKING SECTION BAR (BELOW HERO)
   -------------------------------------------------------------------------- */
.booking-section-bar {
  position: relative;
  width: 100%;
  padding: 30px 0;
  background: #f1f4ed;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.booking-card {
  background: #ffffff;
  border-radius: 60px;
  padding: 12px 22px;
  box-shadow: 0 10px 30px rgba(10, 30, 18, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1.35fr;
  align-items: center;
  gap: 16px;
}

.booking-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border-right: 1px solid #e0e7df;
}

.booking-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e9f2e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #557d24;
}

.booking-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.booking-info {
  display: flex;
  flex-direction: column;
}

.booking-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2b3a32;
  text-transform: capitalize;
  margin-bottom: 2px;
}

.booking-input,
.booking-select {
  font-size: 0.92rem;
  font-weight: 600;
  color: #3b4e43;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.booking-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233b4e43' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  padding-right: 20px;
}

.booking-action {
  display: flex;
  justify-content: flex-end;
}

.booking-btn {
  width: 100%;
  padding: 16px 28px;
  background: #87b238;
  color: #ffffff;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(135, 178, 56, 0.4);
  transition: all var(--transition-normal);
}

.booking-btn:hover {
  background: #769f2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(135, 178, 56, 0.5);
}

.booking-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-fast);
}

.booking-btn:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. HIGHLIGHTS / VALUE PROPOSITIONS SECTION
   -------------------------------------------------------------------------- */
.highlights-section {
  padding: 70px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.highlights-deco-left,
.highlights-deco-right {
  position: absolute;
  width: 160px;
  height: 240px;
  opacity: 0.12;
  pointer-events: none;
}

.highlights-deco-left {
  top: 10px;
  left: -20px;
  transform: rotate(-15deg);
}

.highlights-deco-right {
  bottom: 10px;
  right: -20px;
  transform: rotate(15deg) scaleX(-1);
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  position: relative;
  transition: transform var(--transition-normal);
}

.highlight-item:hover {
  transform: translateY(-4px);
}

.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--color-border), transparent);
}

.highlight-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-deep);
  margin-bottom: 18px;
  transition: all var(--transition-normal);
  border: 1px solid var(--color-accent-border);
}

.highlight-item:hover .highlight-icon-circle {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.08);
}

.highlight-icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.highlight-icon-circle .fill-icon {
  fill: currentColor;
  stroke: none;
}

.highlight-title {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 8px;
}

.highlight-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  position: relative;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.about-content {
  padding-right: 20px;
}

.about-tag {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-forest);
  text-transform: uppercase;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-forest-deep);
  line-height: 1.15;
  margin-top: 4px;
}

.about-leaf-motif {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 24px;
}

.about-leaf-motif::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.about-paragraph {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.about-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Floating Badge on About Image */
.about-floating-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 14px 20px 14px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(13, 35, 25, 0.15);
  border: 1px solid var(--color-border);
  z-index: 3;
}

.badge-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.badge-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.badge-text-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  line-height: 1.25;
}

.badge-text-sub {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   8. OUR ROOMS SECTION
   -------------------------------------------------------------------------- */
.rooms-section {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 85px;
}

.rooms-deco-left,
.rooms-deco-right {
  position: absolute;
  width: 180px;
  height: 260px;
  opacity: 0.12;
  pointer-events: none;
}

.rooms-deco-left {
  top: 40px;
  left: -30px;
}

.rooms-deco-right {
  bottom: 40px;
  right: -30px;
  transform: scaleX(-1);
}

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.room-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20, 53, 37, 0.06);
  border: 1px solid #e7ede2;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 53, 37, 0.12);
  border-color: #cdddc0;
}

.room-media {
  position: relative;
  width: 100%;
  height: 225px;
  overflow: hidden;
  background-color: #f3f6f0;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-content {
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.room-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111a14;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.room-price-wrapper {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  flex-shrink: 0;
}

.room-price {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: #5d822f;
}

.room-period {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  color: #6b7280;
  margin-left: 1px;
}

.room-description {
  font-size: 0.9rem;
  color: #596775;
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

/* Room Specs Row (Icons + Labels) */
.room-specs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.room-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #556254;
  font-weight: 500;
  white-space: nowrap;
}

.room-spec-icon {
  width: 15px;
  height: 15px;
  color: #62872a;
  flex-shrink: 0;
}

.room-card-divider {
  height: 1px;
  background-color: #edf2e8;
  margin-bottom: 16px;
  width: 100%;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #111a14;
  text-decoration: none;
  margin-top: 0;
  transition: color 0.2s ease;
}

.room-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.room-card:hover .room-link {
  color: #62872a;
}

.room-card:hover .room-link svg {
  transform: translateX(4px);
}

.btn-book-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  background-color: #8bb643;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(139, 182, 67, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-book-card:hover {
  background-color: #7aa536;
  box-shadow: 0 6px 18px rgba(139, 182, 67, 0.45);
  transform: translateY(-1px);
}

.btn-book-card:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 182, 67, 0.3);
}

/* Legacy fallback for room-specs-grid if present */
.room-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #edf2e8;
}

/* --------------------------------------------------------------------------
   9. OUR FACILITIES SECTION
   -------------------------------------------------------------------------- */
.facilities-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 85px;
}

.facilities-deco-left,
.facilities-deco-right {
  position: absolute;
  width: 160px;
  height: 240px;
  opacity: 0.12;
  pointer-events: none;
}

.facilities-deco-left {
  top: 20px;
  left: -20px;
}

.facilities-deco-right {
  bottom: 20px;
  right: -20px;
  transform: scaleX(-1);
}

/* Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.facility-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.facility-card:hover {
  transform: translateY(-6px);
}

.facility-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-deep);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.facility-card:hover .facility-icon-circle {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 10px 20px rgba(123, 166, 56, 0.3);
}

.facility-icon-circle svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.facility-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 6px;
  line-height: 1.3;
}

.facility-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   10. GALLERY SECTION (IMAGE 2 DESIGN SYSTEM)
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 40px 0 100px;
  background-color: var(--color-bg-light);
  position: relative;
}

/* Filter Pill Bar */
.gallery-pills-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a5b51;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-pill-btn:hover {
  color: #1b382b;
}

.gallery-pill-btn.active {
  background: #1b382b;
  color: #ffffff;
}

.gallery-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  font-size: 0.76rem;
  font-weight: 700;
  background: #e8eee9;
  color: #3b4e42;
  transition: all 0.25s ease;
}

.gallery-pill-btn.active .gallery-pill-badge {
  background: #a9d65c;
  color: #10261a;
}

/* Gallery 6-Column CSS Grid (Image 2: 2 large top, 3 mid, 1 panoramic bottom) */
.gallery-grid-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  width: 100%;
}

.gallery-card-v2 {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: #102117;
}

/* ALL gallery cards hidden by default — JS reveals the correct batch */
#gallery-grid-v2 .gallery-trigger-card {
  display: none;
}

#gallery-grid-v2 .gallery-trigger-card.is-visible {
  display: block !important;
}

/* Row 1: 2 large cards (span 3 each) */
.gallery-card-v2.span-3 {
  grid-column: span 3;
  height: 320px;
}

/* Row 2: 3 cards (span 2 each) */
.gallery-card-v2.span-2 {
  grid-column: span 2;
  height: 260px;
}

/* Row 3: 1 full-width panoramic card (span 6) */
.gallery-card-v2.span-6 {
  grid-column: span 6;
  height: 280px;
}

/* 4-column card */
.gallery-card-v2.span-4 {
  grid-column: span 4;
  height: 280px;
}

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

.gallery-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.gallery-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(14, 30, 21, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 14px;
  text-transform: uppercase;
}

.gallery-card-zoom-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.gallery-card-v2:hover .gallery-card-zoom-btn {
  background: #a9d65c;
  color: #0c1e14;
  transform: scale(1.1);
  border-color: #a9d65c;
}

.gallery-card-zoom-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(8, 20, 14, 0.94) 100%
  );
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 24px;
  pointer-events: none;
}

.gallery-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.gallery-card-v2.span-3 .gallery-card-title {
  font-size: 1.3rem;
}

.gallery-card-subtitle {
  font-size: 0.84rem;
  color: #d1dfd6;
  line-height: 1.4;
  max-width: 95%;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.gallery-load-more-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.gallery-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: 30px;
  background: #234232;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(35, 66, 50, 0.3);
  transition: all 0.25s ease;
}

.gallery-load-more-btn:hover {
  background: #1b3527;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(35, 66, 50, 0.4);
}

.gallery-load-more-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.gallery-load-more-badge {
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Hidden gallery cards — revealed by "Load More" button */
.gallery-card-hidden {
  display: none;
  opacity: 0;
}

/* Button done state — after all cards revealed */
.gallery-load-more-btn.done {
  background: var(--color-green-dark, #1b3527);
}

.gallery-load-more-btn.view-gallery {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.4);
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS SECTION ("WHAT OUR GUESTS SAY")
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  padding: 110px 0 100px;
  background-color: #0b1e15;
  overflow: hidden;
  color: var(--color-white);
  scroll-margin-top: 85px;
}

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

.testimonials-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.9);
}

.testimonials-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(11, 30, 21, 0.4) 0%, rgba(11, 30, 21, 0.85) 100%);
}

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

.testimonials-section .section-header {
  position: relative;
  z-index: 3;
}

.testimonials-section .section-title {
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonials-section .section-subtitle {
  color: #c7d8c8;
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 0 54px;
}

.testimonials-swiper {
  overflow: hidden;
  padding: 15px 5px 50px;
}

.testimonials-swiper .swiper-wrapper {
  display: flex;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--color-white);
  color: var(--color-text-main);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.quote-icon-box {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.quote-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-forest-deep);
  font-weight: 500;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-star);
  stroke: var(--color-star);
}

.testimonial-author {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 16px;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 2px;
}

.author-location {
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

/* Custom Swiper Pagination for Testimonials */
.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  margin: 0 !important;
  transition: all var(--transition-fast);
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary-light);
  width: 26px;
  border-radius: 13px;
}

/* Testimonials Navigation Arrows */
.testimonials-nav-btn {
  position: absolute;
  top: calc(50% - 25px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 53, 37, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.testimonials-nav-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(123, 166, 56, 0.4);
}

.testimonials-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.testimonials-prev-btn {
  left: 0;
}

.testimonials-next-btn {
  right: 0;
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    padding: 0 10px;
  }
  .testimonials-nav-btn {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   12. NEARBY ATTRACTIONS SECTION
   -------------------------------------------------------------------------- */
.attractions-section {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
}

/* Attractions Grid */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-border);
}

.attraction-media {
  height: 180px;
  overflow: hidden;
}

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

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

.attraction-content {
  padding: 18px 20px;
  text-align: center;
  background: var(--color-white);
}

.attraction-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}

/* --------------------------------------------------------------------------
   13. CALL TO ACTION (CTA) SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background-color: #173827;
}

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

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 38, 27, 0.85) 0%,
    rgba(14, 38, 27, 0.65) 60%,
    rgba(14, 38, 27, 0.4) 100%
  );
}

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

/* CTA Grid */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-content {
  color: var(--color-white);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: #e5f0d5;
}

.cta-btn {
  background: linear-gradient(135deg, #8ebd3b, #76a632);
  color: var(--color-forest-darkest);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
}

.cta-btn:hover {
  background: linear-gradient(135deg, #9bce41, #84b738);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.cta-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition-fast);
}

.cta-btn:hover svg.arrow-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   14. FOOTER & SUB-FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-forest-darkest);
  color: #b7c7be;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* Footer Main Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.footer-brand-motto {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #a4d257;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #a0b2a7;
  max-width: 360px;
}

/* Links Column */
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 22px;
  position: relative;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  color: #b7c7be;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-nav-link:hover {
  color: #a4d257;
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: #b7c7be;
}

.contact-icon {
  width: 18px;
  height: 18px;
  stroke: #a4d257;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

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

/* Social Icons Grid */
.footer-socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 12px;
  margin-top: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Sub-Footer */
.sub-footer {
  padding: 24px 0;
}

.sub-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: #7e9486;
}

.sub-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-footer-link {
  color: #7e9486;
  transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   15. MODAL & LIGHTBOX SYSTEM
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 14, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.modal-close-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-forest-deep);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}

.form-field input,
.form-field select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  transition: border-color var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

.modal-submit-btn {
  margin-top: 12px;
  width: 100%;
  padding: 15px;
}

/* ==========================================================================
   15B. LIGHTBOX MODAL (IMAGE 3 DESIGN SYSTEM)
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-dialog-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-dialog-container {
  transform: scale(1);
}

.lightbox-card {
  width: 100%;
  background: #112019;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
}

.lightbox-image-wrap {
  width: 100%;
  height: clamp(260px, 45vh, 420px);
  background: #09130e;
  position: relative;
  overflow: hidden;
}

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

.lightbox-info-bar {
  background: #112019;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lightbox-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.lightbox-pill-badge {
  background: #a9d65c;
  color: #0f2216;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 14px;
  margin-bottom: 6px;
  display: inline-block;
}

.lightbox-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.lightbox-desc {
  font-size: 0.82rem;
  color: #9cb2a5;
  line-height: 1.4;
  max-width: 480px;
}

.lightbox-info-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lightbox-counter {
  font-size: 0.82rem;
  color: #9cb2a5;
  font-weight: 600;
  white-space: nowrap;
}

.lightbox-reserve-btn {
  background: #a4d257;
  color: #0b1f15;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 30px;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(164, 210, 87, 0.35);
  white-space: nowrap;
}

.lightbox-reserve-btn:hover {
  background: #94c445;
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(164, 210, 87, 0.45);
}

/* Floating Controls (Image 3 layout) */
.lightbox-floating-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 48, 38, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-floating-close:hover {
  background: #a9d65c;
  color: #0b1e13;
  transform: rotate(90deg);
}

.lightbox-floating-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.lightbox-floating-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(22, 38, 29, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-floating-arrow:hover {
  background: #a9d65c;
  color: #0b1e13;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-floating-arrow.prev {
  left: -66px;
}

.lightbox-floating-arrow.next {
  right: -66px;
}

.lightbox-floating-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE MEDIA QUERIES (CSS GRID ADAPTATIONS)
   -------------------------------------------------------------------------- */
/* Large Tablets / Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 3.4rem;
  }

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

  .booking-field:nth-child(2) {
    border-right: none;
  }

  .booking-action {
    grid-column: span 2;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .highlight-item:nth-child(2)::after {
    display: none;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

/* Mobile & Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .nav-grid {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
    margin-block-start: 5px;
  }

  /* Mobile Navigation Dropdown */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #08170f;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 24px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    z-index: 200;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-links.open {
    max-height: 85vh;
    padding: 20px 24px 28px;
    overflow-y: auto;
  }

  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }

  .drawer-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
  }

  /* Dedicated White Close Button */
  .drawer-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .drawer-close-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
  }

  .drawer-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff !important;
    stroke-width: 2.5;
    display: block;
  }

  .site-header .nav-links .nav-link {
    font-size: 1.1rem;
    color: #ffffff !important;
    text-shadow: none !important;
    padding: 8px 0;
  }

  .site-header .nav-links .nav-link:hover,
  .site-header .nav-links .nav-link.active {
    color: #b7e366 !important;
  }

  /* Mobile Dropdown Menu — Collapsed by Default */
  .nav-item-dropdown {
    width: 100%;
    position: relative;
  }

  .nav-item-dropdown .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    user-select: none;
  }

  .nav-item-dropdown .nav-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-item-dropdown.active .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }

  /* Prevent hover / focus-within from opening dropdown on mobile screens */
  .nav-item-dropdown:hover .nav-dropdown-menu,
  .nav-item-dropdown:focus-within .nav-dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
  }

  /* Collapsed default state */
  .nav-item-dropdown .nav-dropdown-menu {
    position: static;
    display: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    box-shadow: none;
    border-radius: var(--radius-sm);
    padding: 0;
    margin: 0;
    transform: none !important;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
  }

  .nav-item-dropdown .nav-dropdown-menu::before {
    display: none;
  }

  /* Active expanded state (only when clicked) */
  .nav-item-dropdown.active .nav-dropdown-menu,
  .nav-item-dropdown.active:hover .nav-dropdown-menu,
  .nav-item-dropdown.active:focus-within .nav-dropdown-menu {
    display: block;
    max-height: 380px;
    opacity: 1;
    visibility: visible;
    border-color: rgba(255, 255, 255, 0.12);
    padding: 6px 0;
    margin: 6px 0 10px 12px;
  }

  .nav-item-dropdown .nav-dropdown-menu li a {
    padding: 9px 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82) !important;
    display: block;
    transition: all var(--transition-fast);
  }

  .nav-item-dropdown .nav-dropdown-menu li a:hover {
    color: #b7e366 !important;
    padding-left: 20px;
    background: rgba(183, 227, 102, 0.08);
  }

  .nav-actions .nav-book-btn {
    display: none;
  }

  /* Mobile Open Button (White) */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 100;
  }

  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  .mobile-toggle svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff !important;
    display: block;
  }

  .hero-section {
    height: 100vh;
    min-height: 560px;
  }

  .hero-slide {
    height: 100vh !important;
    min-height: 560px;
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .hero-main-title {
    font-size: 2.8rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 2.5px;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

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

  .booking-field {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
  }

  .booking-action {
    grid-column: span 1;
  }

  .booking-card {
    border-radius: 24px;
    padding: 16px;
  }

  .gallery-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-card-v2.span-3,
  .gallery-card-v2.span-2,
  .gallery-card-v2.span-4 {
    grid-column: span 1;
    height: 220px;
  }

  .gallery-card-v2.span-6 {
    grid-column: span 2;
    height: 230px;
  }

  .gallery-card-overlay {
    padding: 14px 16px;
  }

  .gallery-card-title {
    font-size: 1rem;
  }

  .gallery-card-subtitle {
    font-size: 0.76rem;
  }

  .lightbox-floating-arrow {
    display: none;
  }

  .lightbox-floating-close {
    top: -12px;
    right: 0px;
  }

  .lightbox-info-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
  }

  .lightbox-info-right {
    width: 100%;
    justify-content: space-between;
  }

  .lightbox-reserve-btn {
    flex: 1;
    text-align: center;
    padding: 10px 18px;
  }

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

  .about-floating-badge {
    left: 10px;
    bottom: 10px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .sub-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
    gap: 12px;
  }

  .sub-footer-links {
    justify-content: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero-main-title {
    font-size: 2.3rem;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

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

  .highlight-item:not(:last-child)::after {
    display: none;
  }

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

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

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

/* ==========================================================================
   17. SWIPER HERO SLIDER STYLES
   ========================================================================== */
.hero-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 720px;
  padding-top: 130px;
  padding-bottom: 90px;
  display: flex !important;
  align-items: center;
}

.hero-controls {
  position: absolute;
  bottom: 25px;
  right: 40px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 26, 17, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

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

.hero-slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

.hero-pagination {
  position: absolute;
  bottom: 35px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 25;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  border-radius: 50%;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #a9d65c;
  width: 32px;
  border-radius: 8px;
}

/* ==========================================================================
   18. SECONDARY PAGE HERO BANNER
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 380px;
  padding-top: 140px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  background-color: #0b1f15;
  overflow: hidden;
  text-align: center;
}

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

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 13, 0.85) 0%, rgba(8, 20, 13, 0.65) 100%);
}

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

.page-hero-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #d1dfc9;
  margin-bottom: 12px;
  font-weight: 500;
}

.page-hero-breadcrumbs a {
  color: #a4d257;
  transition: color var(--transition-fast);
}

.page-hero-breadcrumbs a:hover {
  text-decoration: underline;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: #e5f0d3;
  line-height: 1.6;
}

/* ==========================================================================
   19. FILTER TABS
   ========================================================================== */
.filter-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
  border: 1px solid var(--color-accent-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  background: var(--color-accent-border);
  transform: translateY(-2px);
}

.filter-tab-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(123, 166, 56, 0.35);
}

.tab-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(26, 47, 35, 0.08);
  color: var(--color-forest-deep);
  transition: all var(--transition-fast);
}

.filter-tab-btn.active .tab-count-badge {
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
}

/* Gallery Status Counter Bar */
.gallery-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 24px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.gallery-status-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.status-category-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest-darkest);
}

.status-count-detail {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.status-count-detail strong {
  color: var(--color-forest-darkest);
  font-weight: 700;
}

.gallery-remaining-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(123, 166, 56, 0.12);
  border: 1px solid rgba(123, 166, 56, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #4b6a1f;
  transition: all 0.3s ease;
}

.gallery-remaining-pill.all-loaded {
  background: rgba(74, 85, 104, 0.08);
  border-color: rgba(74, 85, 104, 0.18);
  color: #718096;
}

.remaining-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(123, 166, 56, 0.7);
  animation: pulseDot 2s infinite;
}

.gallery-remaining-pill.all-loaded .remaining-pulse-dot {
  background: #a0aec0;
  box-shadow: none;
  animation: none;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 166, 56, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(123, 166, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 166, 56, 0);
  }
}

/* Dedicated Gallery Page Grid & Items */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-item .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 47, 35, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-item .gallery-overlay svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-white);
  stroke-width: 2;
  fill: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  padding: 10px;
  transform: scale(0.85);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Load More Controller Styling */
.gallery-load-more-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  text-align: center;
}

.gallery-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(123, 166, 56, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-load-more-btn:hover:not(:disabled):not(.is-disabled) {
  background: #6b9430;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(123, 166, 56, 0.45);
}

.gallery-load-more-btn:active:not(:disabled):not(.is-disabled) {
  transform: translateY(0);
}

.load-more-remaining-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.26);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Ceased / Disabled State When All Photos Loaded */
.gallery-load-more-btn:disabled,
.gallery-load-more-btn.is-disabled {
  background: #e2e8f0;
  color: #718096;
  border: 1px solid #cbd5e0;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.gallery-load-more-btn:disabled .load-more-remaining-badge,
.gallery-load-more-btn.is-disabled .load-more-remaining-badge {
  background: #cbd5e0;
  color: #4a5568;
}

.gallery-load-more-btn:disabled .load-more-icon,
.gallery-load-more-btn.is-disabled .load-more-icon {
  display: none;
}

.gallery-all-loaded-msg {
  font-size: 0.95rem;
  font-weight: 600;
  color: #718096;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* ==========================================================================
   19B. MEDIA TYPE SWITCHER (Photos vs Cinematic Videos)
   ========================================================================== */
.media-switcher-section {
  padding: 40px 0 15px;
  background-color: var(--color-bg-light);
}

.media-type-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

.media-switcher-section .container {
  display: flex;
  justify-content: center;
}

.media-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-forest-deep);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-switch-btn:hover:not(.active) {
  background: var(--color-accent-soft);
  color: var(--color-forest-darkest);
}

.media-switch-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(123, 166, 56, 0.4);
}

.media-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(26, 47, 35, 0.09);
  color: var(--color-forest-deep);
  transition: all var(--transition-fast);
}

.media-switch-btn.active .media-count-badge {
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
}

/* ==========================================================================
   19C. VIDEO GALLERY GRID & CINEMATIC CARDS
   ========================================================================== */
.video-gallery-section {
  padding: 40px 0 100px;
  background-color: var(--color-bg-light);
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.video-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-accent-border);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000000;
  cursor: pointer;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.08);
  opacity: 1;
}

/* Pulsing Play Button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  transition: transform 0.2s ease;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: videoPulse 2.2s infinite;
  z-index: -1;
}

@keyframes videoPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.9);
    opacity: 0;
  }
}

.video-card:hover .video-play-btn {
  background: var(--color-primary);
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 30px rgba(123, 166, 56, 0.6);
}

.video-card:hover .video-play-btn svg {
  transform: scale(1.1);
}

/* Video Badges */
.video-duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
}

.video-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26, 47, 35, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Video Card Body */
.video-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest-darkest);
  line-height: 1.38;
  margin-bottom: 8px;
}

.video-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-accent-border);
}

.video-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.video-card:hover .video-watch-link {
  color: #61872b;
}

.video-quality-tag {
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
  border-radius: 4px;
  border: 1px solid var(--color-accent-border);
}

/* ==========================================================================
   19D. CINEMATIC VIDEO MODAL PLAYER
   ========================================================================== */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #0f1c14;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.active .video-modal-dialog {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
}

.video-player-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000000;
}

.video-player-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-info {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #14251c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--color-primary-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.video-modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.video-modal-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.video-modal-book-btn {
  padding: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .media-switch-btn {
    padding: 10px 18px;
    font-size: 0.88rem;
  }
  .video-modal-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-modal-info-right {
    width: 100%;
  }
  .video-modal-book-btn {
    width: 100%;
  }
}


/* ==========================================================================
   20. CONTACT PAGE GRID
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background-color: var(--color-bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 12px;
}

.contact-card-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-methods-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

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

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-method-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 4px;
}

.contact-method-info p,
.contact-method-info a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

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

.form-full-width {
  grid-column: span 2;
}

.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--color-bg-light);
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--transition-fast);
}

.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
}

/* ==========================================================================
   21. ABOUT VALUES GRID
   ========================================================================== */
.values-section {
  padding: 80px 0 100px;
  background-color: var(--color-white);
}

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

.value-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all var(--transition-normal);
}

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

.value-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.value-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Responsive adjustments for secondary pages */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.5rem;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .form-full-width {
    grid-column: span 1;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .hero-controls {
    display: none;
  }
}

/* ==========================================================================
   14. ROOM DETAILS PAGE STYLES
   ========================================================================== */
.room-details-section {
  padding: 50px 0 90px;
  background-color: var(--color-bg-light);
}

/* Room Switcher Pills Bar */
.room-switcher-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  scrollbar-width: thin;
}

.room-switcher-bar::-webkit-scrollbar {
  height: 4px;
}

.room-switcher-bar::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

.room-switch-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-forest);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.room-switch-pill:hover {
  border-color: var(--color-primary);
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
}

.room-switch-pill.active {
  background: var(--color-forest-deep);
  color: var(--color-white);
  border-color: var(--color-forest-deep);
  box-shadow: var(--shadow-sm);
}

.room-switch-pill .pill-price {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.85;
}

/* 2-Column Main Layout: Details + Sticky Booking Card */
.room-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: start;
}

/* Left Column: Gallery & Content */
.room-details-main {
  min-width: 0;
}

/* Interactive Room Photo Gallery */
.room-gallery-wrap {
  margin-bottom: 32px;
}

.room-gallery-main {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--color-forest-deep);
}

.room-gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-gallery-main:hover .room-gallery-main-img {
  transform: scale(1.02);
}

.room-gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(13, 35, 25, 0.85);
  backdrop-filter: blur(8px);
  color: #c9e29a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 226, 154, 0.3);
  z-index: 2;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.room-thumb-btn {
  position: relative;
  height: 96px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #000;
  transition: all var(--transition-fast);
}

.room-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity var(--transition-fast);
}

.room-thumb-btn:hover img {
  opacity: 0.9;
}

.room-thumb-btn.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(123, 166, 56, 0.35);
}

.room-thumb-btn.active img {
  opacity: 1;
}

/* Room Header & Badges */
.room-header-meta {
  margin-bottom: 24px;
}

.room-header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.room-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent-border);
}

.room-header-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.room-details-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  line-height: 1.25;
  margin-bottom: 10px;
}

.room-details-tagline {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Room Specifications Bar */
.room-specs-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.room-spec-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.room-spec-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-deep);
  flex-shrink: 0;
}

.room-spec-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.room-spec-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.room-spec-val {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}

/* Room Content Sections */
.room-section-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.room-section-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.room-desc-text {
  font-size: 0.98rem;
  color: var(--color-text-main);
  line-height: 1.75;
  margin-bottom: 14px;
}

.room-desc-text:last-child {
  margin-bottom: 0;
}

/* Grouped Amenities Checklist */
.amenities-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amenity-subgroup-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.amenity-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.amenity-check-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
}

/* House Rules Grid */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
}

.rule-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-forest);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.rule-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-forest-deep);
  margin-bottom: 2px;
}

.rule-item span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Reviews Snippets */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  padding: 18px;
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
  color: var(--color-star);
}

.review-stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.review-quote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-forest-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.review-author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-forest-deep);
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-left: auto;
}

/* Right Column: Sticky Booking Widget */
.room-booking-sidebar {
  position: sticky;
  top: 100px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  z-index: 10;
}

.booking-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.widget-price-rate {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-forest-deep);
}

.widget-price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: normal;
}

.widget-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-accent-soft);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.booking-widget-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.widget-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.widget-field-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-forest-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.widget-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
  font-size: 0.92rem;
  color: var(--color-text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.widget-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(123, 166, 56, 0.15);
}

.widget-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Price Calculation Breakdown */
.widget-calculation-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-subtle);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.calc-row:last-child {
  margin-bottom: 0;
}

.calc-row.total-row {
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-forest-deep);
}

.calc-total-val {
  color: var(--color-primary-dark);
}

.widget-book-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(20, 53, 37, 0.2);
}

.widget-help-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.widget-help-strip a {
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.widget-trust-list {
  list-style: none;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.widget-trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  stroke-width: 2.2;
  fill: none;
}

/* Related Rooms Section */
.related-rooms-section {
  padding: 60px 0 90px;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.related-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.related-section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-forest-deep);
  margin-bottom: 8px;
}

.related-section-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.related-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ==========================================================================
   15. FAQ PAGE STYLES
   ========================================================================== */
.faq-section {
  padding: 60px 0 90px;
  background: var(--color-bg-light);
}

/* Search Box */
.faq-search-box-wrap {
  max-width: 680px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search-bar {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-search-bar:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(123, 166, 56, 0.15), var(--shadow-md);
}

.faq-search-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-text-light);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-right: 12px;
}

.faq-search-input {
  flex: 1;
  font-size: 1rem;
  color: var(--color-text-main);
  background: transparent;
  padding: 8px 0;
}

.faq-search-input:focus {
  outline: none;
}

.faq-search-input::placeholder {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.faq-clear-btn {
  background: transparent;
  color: var(--color-text-light);
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.faq-clear-btn:hover {
  color: var(--color-forest-deep);
}

.faq-clear-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Category Filter Tabs */
.faq-categories-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.faq-cat-btn {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-forest);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-cat-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-accent-soft);
  color: var(--color-forest-deep);
}

.faq-cat-btn.active {
  background: var(--color-forest-deep);
  color: var(--color-white);
  border-color: var(--color-forest-deep);
  box-shadow: var(--shadow-sm);
}

/* Accordion Layout */
.faq-list-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--color-accent-border);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-header {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-forest-deep);
  line-height: 1.45;
  margin: 0;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question-title {
  color: var(--color-primary-dark);
}

.faq-icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-forest-deep);
  transition: all var(--transition-normal);
}

.faq-icon-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon-toggle {
  background: var(--color-forest-deep);
  color: var(--color-white);
}

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

.faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.active .faq-body {
  max-height: 500px;
  opacity: 1;
  padding: 0 24px 22px 24px;
}

.faq-answer-text {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-answer-text:last-child {
  margin-bottom: 0;
}

.faq-answer-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.faq-answer-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

/* FAQ No Results State */
.faq-no-results {
  text-align: center;
  padding: 50px 20px;
  background: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: none;
}

.faq-no-results h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-forest-deep);
  margin-bottom: 8px;
}

.faq-no-results p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* FAQ Direct Help Banner */
.faq-contact-card {
  max-width: 860px;
  margin: 50px auto 0;
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, var(--color-forest) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.faq-contact-content h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.faq-contact-content p {
  font-size: 0.95rem;
  color: #c5d9c2;
  line-height: 1.5;
  margin: 0;
}

.faq-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.faq-btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.faq-btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.faq-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Responsive tweaks for Room Details and FAQ */
@media (max-width: 1024px) {
  .room-details-grid {
    grid-template-columns: 1fr;
  }
  .room-booking-sidebar {
    position: static;
    margin-top: 30px;
  }
  .related-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .room-gallery-main {
    height: 320px;
  }
  .room-thumb-btn {
    height: 70px;
  }
  .amenities-group-grid,
  .rules-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .related-rooms-grid {
    grid-template-columns: 1fr;
  }
  .faq-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .faq-contact-actions {
    justify-content: center;
    width: 100%;
  }
  .faq-contact-btn {
    width: 100%;
    justify-content: center;
  }
  .room-details-title {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   18. BACK TO TOP BUTTON
   ========================================================================== */
.back-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lime);
	color: #fff;
	z-index: 99;
	box-shadow: 0 8px 24px rgba(5, 45, 51, .18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, box-shadow 0.25s ease;
	cursor: pointer;
	text-decoration: none;
}

.back-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-top:hover {
	background: var(--leaf);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(5, 45, 51, .28);
}

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

.back-top svg {
	display: block;
	transition: transform 0.2s ease;
}

.back-top:hover svg {
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.back-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}
}

/* --------------------------------------------------------------------------
   19. HORIZONTAL GALLERIES (WHITE BACKGROUND AUTO-PLAY & REVERSIBLE DUAL-TRACK)
   - Totally white background
   - Infinite continuous auto-play
   - Smooth direction reversal on mouse button release
   -------------------------------------------------------------------------- */
.horizontal-galleries-section {
  position: relative;
  width: 100%;
  padding: 55px 0 65px;
  background: #ffffff;
  overflow: hidden;
  border: none;
}

.gallery-row-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  z-index: 1;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%); */
  cursor: pointer;
  user-select: none;
}

.gallery-row-wrapper:first-of-type {
  margin-bottom: 22px;
}

.gallery-row-wrapper:active {
  cursor: grabbing;
}

.gallery-row-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  user-select: none;
}

.gallery-card {
  position: relative;
  width: 380px;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.07); */
  background: #f4f6f2;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16), 0 0 20px rgba(123, 166, 56, 0.25);
  border-color: rgba(164, 210, 87, 0.6); */
  z-index: 5;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 14, 0.05) 0%, rgba(7, 21, 14, 0.3) 45%, rgba(7, 21, 14, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  pointer-events: none;
  transition: background 0.3s ease;
/* add extra */
  display: none;
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(180deg, rgba(7, 21, 14, 0) 0%, rgba(7, 21, 14, 0.25) 40%, rgba(7, 21, 14, 0.94) 100%);
}

.gallery-card-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(123, 166, 56, 0.9);
  color: #07150e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gallery-card-title {
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
  .horizontal-galleries-section {
    padding: 45px 0 55px;
  }
  .gallery-card {
    width: 320px;
    height: 220px;
  }
  .gallery-row-track {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .horizontal-galleries-section {
    padding: 35px 0 45px;
  }
  .gallery-card {
    width: 270px;
    height: 190px;
    border-radius: 14px;
  }
  .gallery-card-title {
    font-size: 1.05rem;
  }
  .gallery-row-track {
    gap: 14px;
  }
  .gallery-row-wrapper:first-of-type {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .horizontal-galleries-section {
    padding: 30px 0 35px;
  }
  .gallery-card {
    width: 230px;
    height: 165px;
    border-radius: 12px;
  }
  .gallery-card-overlay {
    padding: 14px;
  }
  .gallery-card-title {
    font-size: 0.95rem;
  }
  .gallery-row-track {
    gap: 12px;
  }
}

/* ==========================================================================
   20. BLOG & STORY SYSTEM (LISTING & SINGLE POST)
   ========================================================================== */

/* Blog Main Section */
.blog-section {
  padding: 70px 0 100px;
  background-color: var(--color-bg-light);
  position: relative;
}

/* Featured Blog Post Showcase */
.featured-blog-card {
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid #e5ede0;
  box-shadow: 0 6px 24px rgba(20, 53, 37, 0.06);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-bottom: 50px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(20, 53, 37, 0.12);
  border-color: #c7dbc0;
}

.featured-blog-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background-color: #eef2eb;
}

.featured-blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.featured-blog-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f7e8;
  color: #62872a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 16px;
  width: fit-content;
}

.featured-blog-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  line-height: 1.25;
  color: #111a14;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.featured-blog-card:hover .featured-blog-title {
  color: #62872a;
}

.featured-blog-excerpt {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blog-author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef3ec;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #62872a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
}

.author-name {
  font-weight: 700;
  color: #111a14;
}

.author-sub {
  color: #7b887a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-read-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background-color: #8bb643;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(139, 182, 67, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.featured-read-btn:hover {
  background-color: #7aa536;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(139, 182, 67, 0.45);
}

/* Category Filter Bar */
.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7ede2;
}

.blog-filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-tab-btn {
  background: var(--color-white);
  border: 1px solid #dde5d7;
  color: #4b5849;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-tab-btn:hover {
  border-color: #7ba638;
  color: #62872a;
  background: #fbfdf9;
}

.blog-tab-btn.active {
  background: #62872a;
  color: #ffffff;
  border-color: #62872a;
  box-shadow: 0 3px 10px rgba(98, 135, 42, 0.25);
}

.category-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 7px;
  margin-left: 6px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(98, 135, 42, 0.12);
  color: #557d24;
  transition: all 0.2s ease;
  line-height: 1;
}

.blog-tab-btn:hover .category-count-badge {
  background: rgba(98, 135, 42, 0.22);
  color: #3b5d16;
}

.blog-tab-btn.active .category-count-badge {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.blog-search-box {
  position: relative;
  min-width: 250px;
}

.blog-search-input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  border-radius: 9999px;
  border: 1px solid #dde5d7;
  background-color: var(--color-white);
  font-family: inherit;
  font-size: 0.88rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-input:focus {
  border-color: #62872a;
  box-shadow: 0 0 0 3px rgba(98, 135, 42, 0.15);
}

.blog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #7e8c7c;
  pointer-events: none;
}

/* Blog Cards Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid #e7ede2;
  box-shadow: 0 4px 18px rgba(20, 53, 37, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 53, 37, 0.11);
  border-color: #cdddc0;
}

.blog-card-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #eef2eb;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(14, 34, 23, 0.82);
  color: #ffffff;
  backdrop-filter: blur(6px);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-card-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.83rem;
  color: #5c6b5b;
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-calendar-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
  filter: drop-shadow(0 1px 2px rgba(82, 124, 36, 0.18));
}

.blog-time-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-calendar-icon {
  transform: translateY(-1px) scale(1.15);
  filter: drop-shadow(0 2px 5px rgba(82, 124, 36, 0.3));
}

.blog-card:hover .blog-time-icon {
  transform: translateY(-1px) scale(1.08);
}

.blog-card-title {
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 700;
  color: #111a14;
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: #62872a;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #edf2e8;
  margin-top: auto;
}

.blog-author-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5849;
}

.author-avatar-mini {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #62872a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #111a14;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-read-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read-link {
  color: #62872a;
}

.blog-card:hover .blog-read-link svg {
  transform: translateX(4px);
}

/* Blog Load More Section */
.blog-load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px auto 55px;
  text-align: center;
}

.blog-load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 30px;
  border-radius: 9999px;
  background-color: var(--color-white);
  border: 1.5px solid #8bb643;
  color: #436618;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(98, 135, 42, 0.08);
}

.blog-load-more-btn:hover:not(:disabled) {
  background-color: #62872a;
  border-color: #62872a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 135, 42, 0.25);
}

.blog-load-more-btn:hover:not(:disabled) .load-more-icon {
  transform: translateY(2px);
}

.blog-load-more-btn:hover:not(:disabled) .load-more-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.load-more-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eef5e6;
  color: #527c24;
  transition: all 0.2s ease;
}

.load-more-icon {
  transition: transform 0.25s ease;
}

/* Disabled state when all posts are loaded (count drops to zero) */
.blog-load-more-btn:disabled,
.blog-load-more-btn.is-completed {
  background-color: #f3f6f1 !important;
  border-color: #dbe2d6 !important;
  color: #8c9b8a !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.85;
}

.blog-load-more-btn:disabled .load-more-badge,
.blog-load-more-btn.is-completed .load-more-badge {
  background: #e3e8de !important;
  color: #798777 !important;
}

.blog-load-status {
  font-size: 0.86rem;
  color: #6d7d6b;
  font-weight: 500;
  margin: 0;
}

.blog-load-status strong {
  color: #1e331c;
}

/* Card entrance animation */
@keyframes blogCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card.anim-fade-in {
  animation: blogCardFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Newsletter Subscription Box */
.blog-newsletter-card {
  background: linear-gradient(135deg, #11281c 0%, #1e4b35 100%);
  border-radius: 20px;
  padding: 44px 40px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 16px 36px rgba(17, 40, 28, 0.2);
  margin-top: 20px;
}

.newsletter-text h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.newsletter-text p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 520px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-input {
  padding: 12px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  width: 260px;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: #b7e366;
}

.newsletter-btn {
  padding: 12px 22px;
  background-color: #8bb643;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(139, 182, 67, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background-color: #7aa536;
  transform: translateY(-1px);
}

/* ==========================================================================
   BLOG SINGLE POST STYLES
   ========================================================================== */
.blog-single-section {
  padding: 50px 0 90px;
  background-color: #ffffff;
}

.blog-single-container {
  max-width: 860px;
  margin: 0 auto;
}

.blog-single-header {
  margin-bottom: 30px;
}

.blog-single-badge {
  display: inline-block;
  background: #f0f7e8;
  color: #62872a;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 14px;
}

.blog-single-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 1.22;
  color: #111a14;
  margin-bottom: 18px;
}

.blog-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2ec;
}

.blog-author-full {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-share-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #7b887a;
}

.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #dce5d6;
  background: #ffffff;
  color: #4b5849;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-btn:hover {
  background: #62872a;
  color: #ffffff;
  border-color: #62872a;
  transform: translateY(-2px);
}

.share-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.blog-single-hero-media {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-single-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.blog-image-caption {
  font-size: 0.82rem;
  color: #7b887a;
  font-style: italic;
  padding: 8px 12px;
  background: #fbfdf9;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border: 1px solid #edf2e8;
  border-top: none;
}

/* Article Body Content */
.blog-content-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2d3748;
}

.blog-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #1a2920;
  font-weight: 500;
  margin-bottom: 24px;
}

.blog-content-body p {
  margin-bottom: 22px;
}

.blog-content-body h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: #111a14;
  margin: 36px 0 16px;
  line-height: 1.3;
}

.blog-content-body h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  color: #1e4b35;
  margin: 28px 0 12px;
  font-weight: 700;
}

.blog-quote-box {
  background: #f7faf4;
  border-left: 4px solid #7ba638;
  border-radius: 0 12px 12px 0;
  padding: 22px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 1.08rem;
  color: #183324;
  line-height: 1.65;
}

.blog-tips-card {
  background: #fdfefc;
  border: 1px solid #dce7d3;
  border-radius: 16px;
  padding: 26px 28px;
  margin: 34px 0;
  box-shadow: 0 4px 16px rgba(30, 75, 53, 0.05);
}

.blog-tips-card h4 {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 700;
  color: #1b3e2a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-tips-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-tips-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #3b4b3f;
}

.blog-tips-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7ba638;
  font-weight: 800;
}

.blog-inline-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.blog-inline-gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}

/* Author Bio Card */
.blog-author-bio {
  background: #fbfdfa;
  border: 1px solid #e3ebd9;
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 45px 0 35px;
}

.bio-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #62872a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bio-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111a14;
  margin-bottom: 4px;
}

.bio-role {
  font-size: 0.82rem;
  color: #62872a;
  font-weight: 600;
  margin-bottom: 8px;
}

.bio-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Post Navigation (Prev / Next) */
.blog-post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid #edf2e8;
  border-bottom: 1px solid #edf2e8;
  margin-bottom: 60px;
}

.post-nav-card {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fbfdf9;
  border: 1px solid #e7ede2;
  text-decoration: none;
  transition: all 0.2s ease;
}

.post-nav-card:hover {
  background: #ffffff;
  border-color: #62872a;
  box-shadow: 0 4px 14px rgba(98, 135, 42, 0.1);
  transform: translateY(-2px);
}

.post-nav-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  color: #7b887a;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.post-nav-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #111a14;
  line-height: 1.35;
}

.post-nav-next {
  text-align: right;
}

/* Related Posts Section */
.related-blog-section {
  padding: 60px 0 90px;
  background: var(--color-bg-light);
  border-top: 1px solid #e7ede2;
}

/* Responsive Styles for Blog */
@media (max-width: 1024px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
  }
  .featured-blog-media {
    min-height: 280px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-newsletter-card {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .blog-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-filter-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
  .blog-search-box {
    width: 100%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .featured-blog-title {
    font-size: 1.45rem;
  }
  .blog-single-title {
    font-size: 1.75rem;
  }
  .blog-post-navigation {
    grid-template-columns: 1fr;
  }
  .post-nav-next {
    text-align: left;
  }
  .blog-inline-gallery {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    width: 100%;
  }
  .newsletter-btn {
    width: 100%;
  }
}

















.booking-section-bar {
    display: none;
}

.site-header {
    padding: 5px 0;
}
.site-header.scrolled {
    padding: 5px 0;
}
.brand-logo-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: unset; 
    box-shadow: unset;
    border: unset; 
    transition: transform var(--transition-normal);
}