@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter Display';
  src: url('../fonts/InterDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* =========================================
   style.css
   Main stylesheet - layout & component styles
   ========================================= */

:root {
  --color-primary: #000000;
  --color-secondary: #6c757d;
  --color-light: #ffffff;
  --color-dark: #212529;
  --font-primary: 'Poppins', sans-serif;
  --transition-base: all 0.3s ease-in-out;

  /* Theme colors (White Oak Ranch) */
  --color-forest: #0f2b1d;
  --color-gold: #FDF5A2;
  --color-gold-dark: #dcb84f;
  --header-height: 84px;
  --logo-size: 160px;
  --font-inter-tight: 'Inter Tight', sans-serif;
  --font-inter-display: 'Inter Display', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  overflow-x: hidden;
}

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

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

/*==================== Common class Css ================*/
.container-fluid {
  padding: 0 5%;
}


/* .common-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
} */

.common-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-inter-display) !important;
  background-color: var(--color-gold) !important;
  padding: 8px 30px !important;
  border-radius: 80px;
  color: var(--color-primary) !important;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px);
  white-space: nowrap;
}

.common-btn i {
  margin-left: 8px;
}

/* .common-btn>span {
  font-family: var(--font-inter-display);
  background-color: var(--color-gold);
  padding: 8px 30px;
  border-radius: 80px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all ease-in-out 0.5s;
  transform: translateX(0px);
  white-space: nowrap;
}

.common-btn>i {
  position: absolute;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-gold);
  color: var(--color-primary);
  font-size: 18px;
  transform: rotate(0deg);
  transition: 0.5s ease;
  left: 100%;
} */

/* .common-btn:hover>span {
  padding-left: 30px;
  padding-right: 30px;
  transform: translateX(45px);
}

.common-btn:hover>i {
  left: calc(0px);
  transform: rotate(0deg);
} */

/* =========================================
   Reusable section header
   (.common-content / .common-title / .common-heading
   can be reused across other sections)
   ========================================= */
.common-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 50%;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.common-title {
  font-family: var(--font-inter-display);
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #091733;
  margin-bottom: 0.85rem;
}

.common-heading {
  font-family: var(--font-inter-display);
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 400;
  color: #091733;
  /* color: var(--color-dark); */
  line-height: 1;
  margin: 0;
  width: 100%;
}



/* =========================================
   Header / Navigation
   ========================================= */
.site-header {
  background-color: var(--color-light);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 22px rgba(15, 43, 29, 0.14);
}

.site-header .navbar {
  min-height: var(--header-height);
  padding-top: 0;
  padding-bottom: 0;
}

/* Mobile brand logo (shown < 992px only) */
.mobile-logo img {
  max-height: 44px;
}

/* Nav list: single flex row, evenly distributed, no bullets */
.navbar-nav {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* gap: clamp(0.6rem, 1.6vw, 1.9rem); */
  width: 100%;
  margin: 0;
  padding: 0;
}

.navbar-nav .nav-link {
  color: #242424;
  font-weight: 400;
  font-size: 1rem;
  /* white-space: nowrap; */
  padding: 0.4rem 0.2rem;
}

.navbar-nav .nav-link:hover {
  color: var(--color-gold-dark);
}

.navbar-nav .nav-link.active {
  background-color: var(--color-gold);
  color: var(--color-forest);
  border-radius: 50px;
  padding: 0.4rem 1.3rem;
  font-weight: 600;
}

/* Reserve visual breathing room around the middle item so the
   absolutely-positioned logo has room to sit without overlapping text */
/* .navbar-nav li.logo-left-item {
  margin-right: clamp(30px, 4vw, 60px);
}

.navbar-nav li.logo-right-item {
  margin-left: clamp(30px, 4vw, 60px);
} */

/* The <li> that jQuery creates to hold the desktop logo.
   Positioned absolute so it does NOT affect the flex spacing
   of the surrounding menu items. */
.navbar-nav li.nav-logo {
  list-style: none;
  margin-bottom: -75px;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  transition: all ease-in-out 0.5s;
}

.logo-wrap img {
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  display: block;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-banner {
  position: relative;
  height: 850px;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--color-light);
  width: 98%;
  margin: auto;
  border-radius: 20px;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.35) 35%,
      rgba(0, 0, 0, 0) 65%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





.hero-content-row {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 4.5rem;
}

.hero-text .hero-title {
  font-family: var(--font-inter-display);
  font-size: clamp(2.4rem, 4vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  width: 80%;
}

.hero-text .hero-subtitle {
  font-family: var(--font-inter-display);
  font-size: 1.125rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

/* Hero floating cards */
.hero-cards {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cards .bnr-bbb-logo {
  position: relative;
  width: 100%;
  text-align: right;
}

.hero-cards .bnr-bbb-logo img {
  position: relative;
  max-height: 100px;
}

.hero-card {
  position: relative;
  width: 220px;
  background-color: var(--color-light);
  color: var(--color-dark);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 6px;
}

.hero-card-badge {
  position: absolute;
  top: 15px;
  right: 10px;
  z-index: 2;
  background-color: var(--color-light);
  color: var(--color-forest);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.hero-card-img {
  width: 100%;
  height: 185px;
  background-color: #d9d9d9;
  border-radius: 14px;
  overflow: hidden;
}

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

.hero-card-body {
  padding: 0.7rem 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}

.hero-card-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #091733;
}

.hero-card-text p {
  font-size: 0.72rem;
  color: var(--color-secondary);
  margin: 0;
}

.hero-card-arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  /* background-color: var(--color-forest); */
  color: #0F345D;
  border: 1px solid #D2D2D2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   ABOUT SECTION
   Append these rules to your existing style.css
   (Not writing rules for .common-content / .common-title /
   .common-heading / .common-btn / bootstrap .row / .col-*
   since those already exist.)
========================================================= */

.about-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  background-color: #ffffff;
  z-index: 1;
}

.about-section .common-content {
  text-align: left;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0px;
}

/* Bird illustration - top right, absolute to section */
.about-bird {
  position: absolute;
  top: 80px;
  right: 0;
  width: 220px;
  pointer-events: none;
  z-index: 0;
}

.about-bird img {
  width: 100%;
  height: auto;
  display: block;
}

/* Deer illustration - bottom left, absolute to section */
.about-deer {
  position: absolute;
  bottom: 100px;
  left: 300px;
  width: 360px;
  pointer-events: none;
  z-index: 0;
}

.about-deer img {
  width: 100%;
  height: auto;
  display: block;
}

.about-col {
  position: relative;
  z-index: 1;
}

/* Lighter colored portion of the heading */
.about-heading-light {
  color: #a9a29a;
  font-weight: inherit;
}

/* LEFT COLUMN */
.about-text {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.4;
  color: #0D0E07;
  max-width: 80%;
}

.about-stats {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.about-stat-number {
  font-family: var(--font-inter-display);
  font-size: 54px;
  font-weight: 400;
  color: #091733;
  margin: 0 0 6px;
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  color: #091733;
  margin: 0;
  white-space: nowrap;
}

/* MIDDLE COLUMN - video/image */
.about-col--video {
  display: flex;
  justify-content: center;
}

.about-video-wrap {
  position: relative;
  width: 100%;
  width: 100%;
  height: 780px;
  border-radius: 12px;
  overflow: hidden;
}

.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-acres-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background-color: transparent;
  border-radius: 10px;
  padding: 0px;
  text-align: center;
  border: 10px solid #fff;
}

.about-acres-badge h4 {
  margin: 0;
  font-size: 54px;
  font-weight: 400;
  color: #FFFBEF;
  background: transparent;
  border-radius: 10px;
  padding: 5px 15px;
}

.about-acres-badge span {
  display: block;
  font-size: 16px;
  color: #091733;
  margin-top: 0px;
  background-color: #fff;
  padding: 15px 10px;
  font-weight: 600;
}

/* RIGHT COLUMN */
.about-col--right {
  padding-left: 20px;
  padding-top: 180px;
}

.about-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 36px;
}

.about-watch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d8b96a;
  color: #d8b96a;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-watch-btn:hover .about-watch-icon {
  background-color: #d8b96a;
  color: #ffffff;
}

.about-watch-text {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}

.about-right-heading {
  font-family: var(--font-inter-display);
  font-size: 40px;
  font-weight: 400;
  color: #091733;
  line-height: 1;
  margin-bottom: 20px;
  width: 80%;
}

.about-right-text {
  font-size: 18px;
  line-height: 1.5;
  color: #0D0E07;
  max-width: 80%;
  margin-bottom: 40px;
}

.about-reservation {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-reservation-label {
  font-size: 18px;
  color: #0D0E07;
  margin-left: 40px;
  margin-bottom: 0;
}

.about-reservation-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
}

.about-reservation-number i {
  color: #CEB27A;
}


.about-reservation-number span {
  color: #091733;
}

/* .about-reservation-number:hover {
  color: #d8b96a;
} */

/* =========================================
   Gallery Section (Fancybox)
   ========================================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

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

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

/* =========================================================
   GALLERY SECTION
   Append these rules to your existing style.css
   (Not writing rules for .common-content / .common-title /
   .common-heading / .common-btn since those already exist.)
========================================================= */

.gallery-section {
  position: relative;
  padding: 100px 0;
  background-color: #FFFBEF;
  z-index: 1;
  width: 98%;
  margin: auto;
  border-radius: 20px;
}

/* Absolute decorative background image */
.gallery-bg {
  position: absolute;
  top: -60px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gallery-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Gallery grid */
.gallery-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr 1fr 1fr;
  grid-template-areas: "one two feature four five";
  align-items: start;
  column-gap: 24px;
  list-style: none;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.gallery-item {
  list-style: none;
}

.gallery-item--one {
  grid-area: one;
  margin-top: 40px;
}

.gallery-item--two {
  grid-area: two;
}

.gallery-item--feature {
  grid-area: feature;
}

.gallery-item--four {
  grid-area: four;
}

.gallery-item--five {
  grid-area: five;
}

.gallery-item-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

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

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

/* Column 1 - single image */
.gallery-item--one .gallery-item-inner {
  min-height: 350px;
}

/* Column 2 & 4 - stacked images */
.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.gallery-stack .gallery-item-inner {
  min-height: 160px;
  flex: 1 1 0;
}

/* Column 3 - middle feature image */
.gallery-item--feature {
  margin-top: 60px;
}

/* .gallery-item--feature .gallery-item-inner {
  min-height: 650px;
} */

/* Column 5 - single image (taller than column 1) */
.gallery-item--five .gallery-item-inner {
  min-height: 480px;
}

/* Video thumbnail play button */
.gallery-item-inner--video .gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.gallery-item-inner--video:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.gallery-play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #1a1a1a;
}

/* View All button wrapper */
.gallery-btn-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.gallery-btn-wrap .common-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===========================
   WHAT WE OFFER SECTION
   =========================== */

.what-we-offer {
  padding: 80px 0;
  background-color: #FFFBEF;
}

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

/* Header Section */
/* .what-we-offer .text-center {
  text-align: center;
  margin-bottom: 60px;
} */

/* .what-we-offer .common-title {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 15px;
  text-transform: uppercase;
} */

/* .what-we-offer .common-heading {
  font-size: 48px;
  font-weight: 700;
  color: #1a3a52;
  margin: 15px 0;
  line-height: 1.2;
} */

.what-we-offer .section-description {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* Grid Layout */
/* .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
} */

/* .col-4 {
  flex: 0 0 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
} */

/* .offer-cards-wrapper {
  margin-bottom: 50px;
} */

/* Card Styles */
.offer-card {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.offer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease;
}

.offer-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.offer-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-card:hover .offer-card-image img {
  transform: scale(1.2);
}

/* Overlay */
/* .offer-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s ease;
} */

.offer-card:hover .offer-card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Card Content */
.offer-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.card-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-family: var(--font-inter-display);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  transition: transform 0.3s ease;
}

.arrow-icon {
  display: inline-block;
  font-size: 20px;
  color: #000;
  visibility: hidden;
  transition: transform 0.5s ease, visibility 0.5s ease;
  transform: translateX(-15px) rotate(45deg);
  position: absolute;
  left: 60%;
  bottom: 20%;
  background: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.offer-card:hover .arrow-icon {
  visibility: visible;
  transform: translateX(100%);
  left: 80%;
}

.offer-card:hover .card-title {
  transform: translateX(15px);
}

.card-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
  transition: transform 0.3s ease;
  width: 60%;
}

.offer-card:hover .card-description {
  transform: translateX(15px);
}

/* =========================================
   Ads Banner 1
   ========================================= */
.ads-banner1 {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  /* fallback while dynamic image loads */
}

.ads-banner1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.1) 75%);
  z-index: 0;
}

.ads-banner1-content {
  position: relative;
  z-index: 1;
}

.ads-banner1-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.ads-banner1-tag-icon {
  width: 30px;
  height: 30px;
  opacity: 1;
}

.ads-banner1-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--color-light);
  line-height: 1.2;
  margin: 0;
}

.ads-banner1-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

/* =========================================
   Featured Packages Section
   ========================================= */
.featured-packages-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background-color: var(--color-light);
}

/* =========================================
   Reservation Gallery Slider
   ========================================= */
.reservation-gallery-section {
  width: 98%;
  margin: 0 auto 50px;
  padding: 90px 0;
  overflow: hidden;
  background: #FFFBEF;
  border-radius: 20px;
}

.reservation-gallery-section .common-content {
  margin-bottom: 42px;
}

.reservation-gallery-intro {
  max-width: 580px;
  margin: 15px auto 0;
  color: var(--color-forest);
  opacity: 0.8;
}

.reservation-gallery-slider .item a {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-forest);
}

.reservation-gallery-slider .item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 43, 29, 0.58));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.reservation-gallery-slider .item a:hover::after {
  opacity: 1;
}

.reservation-gallery-slider .item span {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-forest);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.reservation-gallery-slider .item a:hover span {
  opacity: 1;
  transform: translateY(0);
}

.reservation-gallery-slider .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.reservation-gallery-slider .owl-nav button.owl-prev,
.reservation-gallery-slider .owl-nav button.owl-next {
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(15, 43, 29, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--color-forest);
  font-size: 1.1rem;
  transition: var(--transition-base);
}

.reservation-gallery-slider .owl-nav button:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-gold);
}

.reservation-gallery-slider .owl-dots {
  margin-top: 16px;
}

.reservation-gallery-slider .owl-dot span {
  background: rgba(15, 43, 29, 0.22);
}

.reservation-gallery-slider .owl-dot.active span,
.reservation-gallery-slider .owl-dot:hover span {
  background: var(--color-gold-dark);
}

.featured-packages-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.featured-packages-decor-leaf {
  top: 0;
  left: 0;
  width: 180px;
  height: auto;
}

.featured-packages-decor-goat {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 190px;
  height: auto;
}

.package-card {
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: var(--color-light);
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.package-card-img {
  border-radius: 10px;
  overflow: hidden;
}

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

.package-card-body {
  padding: 1.1rem 0.6rem 0.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-card-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #091733;
  margin-bottom: 0.6rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.package-price .price {
  font-family: var(--font-inter-display);
  font-size: 2.125rem;
  font-weight: 700;
  color: #091733;
}

.package-price .price-unit {
  font-size: 1rem;
  color: #091733;
}

.package-card-body>p {
  font-family: var(--font-inter-display);
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.package-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.package-features li {
  font-family: var(--font-inter-display);
  position: relative;
  font-size: 1rem;
  color: #000000;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.package-features li i {
  color: var(--color-gold);
}

.package-features li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: var(--color-gold-dark);
}

.package-card-btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1rem;
  background: var(--color-gold);
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

.package-card-btn:hover {
  background-color: var(--color-gold-dark);
}

.featured-packages-action {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 2.5rem;
}

/* ===========================
   GUEST STORIES / TESTIMONIALS SECTION
   =========================== */

.guest-stories {
  padding: 50px 0;
  background-color: #ffffff;
}

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

/* Wrapper Classes */
.testimonial-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.m-auto {
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-6 {
  flex: 0 0 50%;
  padding: 0 15px;
}

.col-8 {
  flex: 0 0 66.666%;
}

/* ===== LEFT SECTION - STATIC IMAGE ===== */
.testimonial-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guest-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.play-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-video-badge:hover {
  background: rgba(0, 0, 0, 0.8);
}

.play-icon {
  font-size: 16px;
  color: #ffd966;
}

.play-text {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
}

/* ===== RIGHT SECTION - TESTIMONIALS ===== */
.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

/* Header Section */
.testimonial-header {
  margin-bottom: 30px;
}

.testimonial-header .common-title {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.testimonial-header .common-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a3a52;
  line-height: 1.3;
  margin: 0;
}

/* Guest Info Section */
.guest-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 35px;
}

.guest-avatars {
  display: flex;
  align-items: center;
  gap: -8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.guest-count-text {
  margin: 0;
}

.guest-count {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a52;
  margin: 0;
}

.satisfaction-label {
  font-size: 12px;
  color: #666;
  margin: 4px 0 0 0;
}

/* Testimonials Carousel */
/* .testimonials-carousel {
  min-height: 220px;
  margin-bottom: 40px;
} */

.guest-stories .common-content {
  text-align: left;
  width: 100%;
  margin-bottom: 3rem;
}

.testimonial-card {
  padding: 30px;
  transition: all 0.3s ease;
  background: #FFFBF0;
  border-radius: 16px;
  min-height: 250px;
}

.testimonial-quote {
  margin-bottom: 15px;
}

.quote-text {
  font-size: 24px;
  font-weight: 700;
  color: #1a3a52;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.testimonial-body {
  margin-bottom: 15px;
}

.testimonial-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.testimonial-rating {
  margin-top: 15px;
}

/* Owl Carousel Customization */
.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* Fixed Bottom Section */
.testimonial-bottom-fixed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}

/* Satisfaction Rate */
.satisfaction-rate {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rate-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a3a52;
  line-height: 1;
}

.rate-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Owl Carousel Animation Classes */
.owl-carousel .fadeOut {
  animation: fadeOut 0.5s ease-out;
}

.owl-carousel .fadeIn {
  animation: fadeIn 0.5s ease-in;
}

/* Video Play Badge Hover Animation */
.guest-image-container:hover .play-video-badge {
  transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   Hay Sales & Delivery Section
   ========================================= */
.hay-sales-section {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.hay-sales-inner {
  width: 98%;
  background-color: #fffbef;
  border-radius: 24px;
  padding: 70px 2rem 60px;
}

.hay-sales-desc {
  font-size: 1.125rem;
  color: #0D0E07;
  line-height: 1.6;
  max-width: 100%;
  margin: 20px auto 0px;
}

.hay-sales-slider .item a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.hay-sales-slider .item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hay-sales-slider.owl-carousel .owl-dots {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.hay-sales-slider.owl-carousel .owl-dots .owl-dot span {
  background-color: rgba(15, 43, 29, 0.2);
}

.hay-sales-slider.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color-gold-dark);
}

.hay-sales-action {
  text-align: center;
  margin-top: 2rem;
}

/* =========================================
   Events Section
   ========================================= */
.events-section {
  padding: 90px 0;
  background-color: var(--color-light);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.event-box {
  background-color: #fdf3dc;
  border-radius: 20px;
  padding: 2rem;
}

/* Alternate media/content sides purely via CSS - no extra
   markup classes needed. Box markup order is always
   [media column] then [content column]; even boxes flip it. */
.event-box:nth-child(even) .row {
  flex-direction: row-reverse;
}

.event-box-media {
  border-radius: 14px;
  overflow: hidden;
}

.event-box-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.event-box-content h3 {
  font-family: var(--font-inter-display);
  font-size: 38px;
  font-weight: 400;
  color: #091733;
  margin-bottom: 0.9rem;
}

.event-box-content p {
  font-size: 1rem;
  color: #0D0E07;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}

/* Event Schedule mini-cards (box 3) */
.event-schedule-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.event-schedule-card {
  background-color: var(--color-light);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.event-schedule-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #091733;
  margin-bottom: 0.45rem;
}

.event-schedule-card p {
  font-size: 0.875rem;
  color: #434343;
  line-height: 1.55;
  margin: 0;
}

/* Owl Carousel look & feel */
.event-box-media.owl-carousel .owl-nav button.owl-prev,
.event-box-media.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85) !important;
  color: var(--color-forest) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.event-box-media.owl-carousel .owl-nav button.owl-prev {
  left: 12px;
}

.event-box-media.owl-carousel .owl-nav button.owl-next {
  right: 12px;
}

.event-box-media.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.event-box-media.owl-carousel .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.event-box-media.owl-carousel .owl-dots .owl-dot.active {
  width: 14px;
  height: 14px;
  background-color: var(--color-gold);
}

.event-box-media.owl-carousel {
  position: relative;
}

/* =========================================
   Ads Banner 2
   ========================================= */
.ads-banner2 {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  /* fallback while dynamic image loads */
}

.ads-banner2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* .ads-banner2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
} */

.ads-banner2-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-light);
}

.ads-banner2-content h2 {
  font-size: clamp(1.7rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.ads-banner2-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

/* =========================================
   Ranch Map Section
   ========================================= */
.ranch-map-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-light);
  padding: 90px 0 70px;
}

.ranch-map-section .section-bg-decor {
  position: absolute;
  top: -380px;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.ranch-map-horse {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.ranch-map-image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.ranch-map-image img {
  width: 100%;
  display: block;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  padding: 0px 0 30px;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 98%;
  background-color: #102028;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 2.5rem 1.5rem;
}

.footer-row {
  align-items: flex-start;
}

/* Vertical divider lines between columns (desktop only) */
/* .footer-row>[class*="col-"] {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 2rem;
  height: 100%;
} */

.footer-row {
  align-items: stretch;
}

.footer-row>[class*="col-"] {
  position: relative;
  padding-left: 2rem;
}

.footer-row>[class*="col-"]:first-child {
  padding-left: 0.75rem;
}

.footer-row>[class*="col-"]:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-row>[class*="col-"]:first-child {
  border-left: none;
  padding-left: 0.75rem;
}

/* Brand column */
.footer-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #C4CBCF;
  max-width: 80%;
  margin-bottom: 1.25rem;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  background-color: var(--color-gold);
  border-radius: 50%;
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transform: translateY(0px);
  transition: all ease-in-out 0.3s;
}

.footer-socials a i {
  line-height: 0;
  display: inline-block;
}

.footer-socials a:hover {
  background-color: var(--color-forest);
  color: var(--color-gold);
  transform: translateY(-5px);
}

/* Column headings */
.footer-heading {
  color: var(--color-light);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

/* Quick Links - two column grid */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.9rem;
}

.footer-links a {
  color: #C4CBCF;
  font-size: 0.88rem;
}

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

/* Contact info */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.15rem;
}

/* Subscribe */
.footer-subscribe {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-subscribe-input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.footer-subscribe-input::placeholder {
  color: #9a9a9a;
}

.footer-subscribe-btn {
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 0px;
}

/* Divider + bottom bar */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2.5rem 0 1.25rem;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: #D2D2D2;
  margin: 0;
}

/* =========================================
   Inner Hero Section (about.html)
   ========================================= */
.inner-hero {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  width: 98%;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 29, 0.4) 0%, rgba(15, 43, 29, 0.8) 100%);
  z-index: 1;
}

/* .inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 43, 29, 0.4) 0%, rgba(15, 43, 29, 0.8) 100%);
  z-index: 1;
} */

.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.inner-hero-title {
  font-family: var(--font-inter-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.inner-hero .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}

.inner-hero .breadcrumb-item {
  font-family: var(--font-inter-display);
  font-size: 1rem;
}

.inner-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-base);
}

.inner-hero .breadcrumb-item a:hover {
  color: var(--color-gold);
}

.inner-hero .breadcrumb-item.active {
  color: var(--color-gold);
}

.inner-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/* =========================================
   Core Values Section (about.html)
   ========================================= */
.core-values {
  padding: 100px 0;
  background-color: #FFFBEF;
  width: 98%;
  margin: 0 auto 50px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

/* .core-values .common-content {
  margin-bottom: 50px;
} */

.core-values .section-description {
  color: var(--color-forest);
  opacity: 0.85;
  font-size: 1.1rem;
  margin-top: 15px;
}

.value-card {
  background: var(--color-light);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 43, 29, 0.05);
  height: 100%;
  transition: var(--transition-base);
  border: 1px solid rgba(15, 43, 29, 0.03);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(15, 43, 29, 0.12);
  border-color: rgba(233, 200, 107, 0.3);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(15, 43, 29, 0.05);
  color: var(--color-forest);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: var(--transition-base);
}

.value-card:hover .value-icon {
  background-color: var(--color-forest);
  color: var(--color-gold);
  transform: rotateY(360deg);
}

.value-card h3 {
  font-family: var(--font-inter-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--color-secondary);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   Team Section (about.html)
   ========================================= */
.ranch-team {
  padding: 100px 0;
  width: 98%;
  margin: 0 auto 50px;
  background: var(--color-forest);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.ranch-team::before,
.ranch-team::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(233, 200, 107, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ranch-team::before {
  top: -180px;
  left: -110px;
}

.ranch-team::after {
  right: -130px;
  bottom: -220px;
}

.ranch-team .container-fluid {
  position: relative;
  z-index: 1;
}

.ranch-team .common-content {
  margin-bottom: 50px;
}

.ranch-team .common-title,
.ranch-team .common-heading {
  color: var(--color-light);
}

.ranch-team .section-description {
  max-width: 600px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.team-card {
  height: 100%;
  background: var(--color-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.team-card-image {
  height: 450px;
  overflow: hidden;
  background: #d9d5c4;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

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

.team-card-content {
  padding: 20px 15px 15px;
  border-bottom: 4px solid var(--color-gold);
}

.team-card-role {
  display: block;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 1.4rem;
  font-weight: 600;
}

/* =========================================
   About Gallery Section (about.html)
   ========================================= */
.about-gallery {
  width: 98%;
  margin: 0 auto 50px;
  padding: 40px 0;
  /* background: #FFFBEF; */
  border-radius: 20px;
}

.about-gallery .common-content {
  margin-bottom: 50px;
}

.about-gallery .section-description {
  max-width: 610px;
  margin-top: 15px;
  color: var(--color-forest);
  opacity: 0.82;
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
}

.about-gallery-grid .about-gallery-item {
  width: auto;
  max-width: none;
  padding: 0;
}

.about-gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-gallery-item.is-gallery-hidden {
  display: none;
}

.about-gallery-item>a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.82;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-forest);
  box-shadow: 0 8px 20px rgba(15, 43, 29, 0.1);
}

.about-gallery-item>a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 43, 29, 0.55));
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

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

.about-gallery-item:hover>a::after {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-forest);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}

.about-gallery-action {
  margin-top: 45px;
}

.about-gallery-load-more {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.about-gallery-load-more>span {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-gallery-load-more>i {
  transition: transform 0.35s ease;
}

.about-gallery-load-more:hover>i {
  transform: rotate(90deg);
}

/* =========================================
   Ranch Videos (gallery.html)
   ========================================= */
.ranch-video-section {
  width: 98%;
  margin: 0 auto 50px;
  padding: 100px 0;
  background: var(--color-forest);
  border-radius: 20px;
}

.ranch-video-section .common-content {
  margin-bottom: 48px;
}

.ranch-video-section .common-title,
.ranch-video-section .common-heading {
  color: var(--color-light);
}

.ranch-video-intro {
  max-width: 620px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.ranch-video-card {
  height: 100%;
  overflow: hidden;
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.ranch-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07170e;
}

.ranch-video-card-content {
  padding: 22px 24px 25px;
  border-bottom: 4px solid var(--color-gold);
}

.ranch-video-card-content span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ranch-video-card-content h3 {
  margin: 0;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 1.35rem;
  font-weight: 600;
}

/* =========================================
   Event Calendar (annual-events.html)
   ========================================= */
.event-calendar-section {
  width: 98%;
  margin: 0 auto 50px;
  padding: 100px 0;
  /* background: #FFFBEF; */
  border-radius: 20px;
}

.event-calendar-section .common-content {
  margin-bottom: 48px;
}

.event-calendar-intro {
  margin: 15px auto 0;
  color: var(--color-forest);
  opacity: 0.82;
}

.event-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.5fr);
  gap: 28px;
  align-items: start;
}

.event-calendar-card,
.event-calendar-agenda {
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 43, 29, 0.08);
}

.event-calendar-card {
  overflow: hidden;
}

.event-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 30px;
  background: var(--color-forest);
  color: var(--color-light);
}

.event-calendar-label {
  display: block;
  color: var(--color-secondary);
  font-family: var(--font-inter-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-calendar-header h3,
.event-calendar-agenda h3 {
  margin: 5px 0 0;
  font-family: var(--font-inter-display);
  font-size: 1.65rem;
  font-weight: 600;
}

.event-calendar-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.event-calendar-legend span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
}

.event-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  padding: 16px;
}

.calendar-weekday {
  padding: 8px 4px 12px;
  color: var(--color-secondary);
  font-family: var(--font-inter-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 86px;
  padding: 9px;
  border: 1px solid #eee9dc;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 0.9rem;
}

.calendar-day time {
  font-weight: 600;
}

.calendar-day-empty {
  background: rgba(15, 43, 29, 0.025);
}

.calendar-day.has-event {
  background: #fff7d9;
}

.calendar-day.has-event span {
  display: block;
  margin-top: 7px;
  padding: 4px 5px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-forest);
  color: var(--color-gold);
  font-size: 0.67rem;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-calendar-agenda {
  padding: 30px;
}

.event-calendar-agenda h3 {
  color: var(--color-forest);
  margin-bottom: 25px;
}

.event-agenda-list {
  display: grid;
  gap: 18px;
}

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

.event-agenda-item time {
  display: flex;
  width: 50px;
  height: 54px;
  flex: 0 0 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--color-forest);
  color: var(--color-light);
  line-height: 1;
}

.event-agenda-item time strong {
  font-family: var(--font-inter-display);
  font-size: 1.3rem;
}

.event-agenda-item time span {
  margin-top: 3px;
  color: var(--color-gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.event-agenda-item h4 {
  margin: 0 0 4px;
  color: var(--color-forest);
  font-family: var(--font-inter-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.event-agenda-item p {
  margin: 0;
  color: var(--color-secondary);
  font-size: 0.82rem;
}

/* =========================================
   Contact Us Section (contact.html)
   ========================================= */
.contact-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.contact-section .common-content {
  text-align: left;
  margin: 0 0 2rem;
  width: 70%;
  padding: 0px;
}

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

.form-group label {
  font-family: var(--font-inter-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-forest);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-group p {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.contact-form .form-group p .wpcf7-not-valid-tip {
  position: relative;
  width: 100%;
  margin-top: 5px;
}

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.95rem;
  background-color: #fcfcfc;
  transition: var(--transition-base);
  color: var(--color-dark);
}

.contact-form .form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(233, 200, 107, 0.25);
  background-color: #ffffff;
  outline: none;
}

.contact-card {
  background-color: var(--color-forest);
  color: var(--color-light);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(15, 43, 29, 0.15);
  height: 100%;
}

.contact-card-header {
  margin-bottom: 35px;
}

.contact-card-header .card-subtitle {
  font-family: var(--font-inter-display);
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.contact-card-header h3 {
  font-family: var(--font-inter-display);
  font-size: 2rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--color-light);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.info-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.info-item:hover .info-icon {
  background-color: var(--color-gold);
  color: var(--color-forest);
}

.info-text h4 {
  font-family: var(--font-inter-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 0;
  color: var(--color-light);
}

.info-text p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.6;
}

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

.info-text a:hover {
  color: var(--color-gold);
}

.contact-social-wrap h4 {
  font-family: var(--font-inter-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
  color: var(--color-light);
}

.contact-socials {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.contact-socials a:hover {
  background-color: var(--color-gold);
  color: var(--color-forest);
  transform: translateY(-3px);
}


/*#### Testimonials page css start ###*/
.testimonials-section {
  position: relative;
  width: 100%;
  padding: 60px 0px;
}

.testimonials-list {
  border: 1px solid #eee9dc;
  border-radius: 15px;
  padding: 25px 25px;
  box-shadow: 0 15px 40px rgba(15, 43, 29, 0.15);
}

.testimonials-list h4 {
  color: #1a3a52;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonials-list p {
  font-family: var(--font-inter-display);
  color: #555;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}

/*#### Testimonials page css end ###*/

/*  */
.default-page-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0px;
}

/* annual-events page css start */
.annual-events-details-wrapper {
  position: relative;
  width: 100%;
}

.my-calendar.mc-main,
.event-calendar-layout-wrap .mc-main {
  position: relative;
  width: 100%;
  background-color: #fdf3dc;
  padding: 15px 15px;
  border-radius: 10px;
}


/* popup css start */
.uses-modal.single-details .mc-image {
  position: relative;
  width: 100%;
  max-width: 100% !important;
  border-radius: 10px;
}

.uses-modal.single-details .description {
  position: relative;
  width: 100%;
  margin-top: 12px;
}

.uses-modal.single-details .description p {
  font-size: 15px;
  color: #555;
}

.uses-modal.single-details .mc-location {
  position: relative;
  width: 100%;
  padding: 5px 15px;
  background-color: #fffbef;
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.uses-modal.single-details .sharing .mc-details a {
  font-family: var(--font-inter-display);
  background-color: var(--color-gold);
  padding: 8px 30px;
  border-radius: 80px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
}

/* popup css end */

/* single page css */
.single-event .details .description {
  position: relative;
  width: 100%;
}

.single-event .details .description p {
  position: relative;
  width: 100%;
  font-size: 15px;
  color: #555;
}

.single-event .details .mc-location {
  position: relative;
  width: 100%;
  padding: 5px 15px;
  background-color: #fffbef;
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.single-event .details .sharing {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-event .details .sharing p {
  position: relative;
  margin-bottom: 0;
}

.single-event .details .sharing p a {
  font-family: var(--font-inter-display);
  background-color: var(--color-gold);
  padding: 6px 20px;
  border-radius: 80px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.single-event .details .view-full a {
  font-family: var(--font-inter-display);
  background-color: var(--color-gold);
  padding: 6px 20px;
  border-radius: 80px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;

}

/*  */
.single-mc-event .navigation {
  position: relative;
  width: 100%;
}

.single-mc-event .navigation .nav-previous {
  position: relative;
  border-right: 1px solid #ddd;
}

.single-mc-event .navigation .nav-links a {
  color: #0b0b0b;
}

/* annual-events page css end */

/* event booking css start */
.wpbc_container_booking_form .bk_calendar_frame {
  width: 100% !important;
  min-width: 100% !important;
}

/* event booking css end */

/* page-template-reach-map_tpl page css start */
.page-template-reach-map_tpl .inner-hero {
  height: 400px;
}

@media(max-width:1199px) {
  .page-template-reach-map_tpl .inner-hero {
    height: 300px;
  }
}

@media(max-width:767px) {
  .page-template-reach-map_tpl .inner-hero {
    height: 270px;
  }
}

@media(max-width:575px) {
  .page-template-reach-map_tpl .inner-hero {
    height: 240px;
  }
}

/* page-template-reach-map_tpl page css end */