/* ================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ================================================ */


:root {
  /* ==============================================
       TYPOGRAPHY SYSTEM
       ============================================== */


       

  /* Font Families */
  --font-primary: "sofia-pro", sans-serif;
  --font-heading: "adobe-garamond-pro", garamond-fallback, Georgia,
    "Times New Roman", serif;
  --font-accent: "Source Sans 3", sans-serif;
  --font-display: "Seasons", sans-serif;
  --font-display-light: "Seasons-Light", sans-serif;
  --font-ui: DIN, sans-serif;
  --font-number: "avenir-lt-pro", sans-serif;






  /* Font Sizes - Scale */
  --font-size-xs: 10px;
  --font-size-sm: 12px;
  --font-size-base: 16px;
  --font-size-md: 18px;
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.5rem; /* 24px */
  --font-size-2xl: 2.2rem; /* 28px */
  --font-size-3xl: 2.5rem; /* 40px */
  --font-size-4xl: 2.75rem; /* 44px */
  --font-size-5xl: 2.85rem; /* 45.6px */
  --font-size-6xl: 2.9rem; /* 46.4px */

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;

  /* Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.04em;
  --letter-spacing-wider: 1px;
  --letter-spacing-widest: 2px;
  --letter-spacing-hero: 0.2rem;

  /* ==============================================
       COLOR PALETTE
       ============================================== */

  /* Primary Palette */
  --color-primary: #7d5445;
  --color-secondary: #655d56;
  --color-tertiary: #fdfbf7;
  --color-bg-primary: #fff;
  --color-bg-secondary: #f6f5f1;

  /* Text Colors */
  --color-text-dark: #212e2c;
  --color-text-gray: #3F3A36;
  --color-text-light: #ffffff;
  --color-paragraph:#655d56;

  /* Utility Colors */
  --color-border: rgba(173, 169, 146, 0.5);
  --color-overlay: rgba(33, 46, 44, 0.5);
  --color-shadow: rgba(33, 46, 44, 0.052);
}

/* ================================================
   FONT FACE DEFINITIONS
   ================================================ */
@font-face {
  font-family: "garamond-fallback";
  src: local("Times New Roman"), local("Georgia");
  size-adjust: 105%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
  font-display: swap;
}

@font-face {
  font-family: 'seasons-regular';
  src: url('../font/the-seasons-regular.woff2') format('woff2');
      
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'MyCustomFont', sans-serif;
}


/* ================================================
   TYPOGRAPHY UTILITY CLASSES
   ================================================ */

/* Font Family Utilities */
.font-primary {
  font-family: var(--font-primary);
}
.font-heading {
  font-family: var(--font-heading);
}
.font-accent {
  font-family: var(--font-accent);
}
.font-display {
  font-family: var(--font-display);
}
.font-display-light {
  font-family: var(--font-display-light);
}
.font-ui {
  font-family: var(--font-ui);
}

/* Font Size Utilities */
.text-xs {
  font-size: var(--font-size-xs);
}
.text-sm {
  font-size: var(--font-size-sm);
}
.text-base {
  font-size: var(--font-size-base);
}
.text-md {
  font-size: var(--font-size-md);
}
.text-lg {
  font-size: var(--font-size-lg);
}
.text-xl {
  font-size: var(--font-size-xl);
}
.text-2xl {
  font-size: var(--font-size-2xl);
}
.text-3xl {
  font-size: var(--font-size-3xl);
}
.text-4xl {
  font-size: var(--font-size-4xl);
}
.text-5xl {
  font-size: var(--font-size-5xl);
}
.text-6xl {
  font-size: var(--font-size-6xl);
}

/* Font Weight Utilities */
.font-light {
  font-weight: var(--font-weight-light);
}
.font-regular {
  font-weight: var(--font-weight-regular);
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
}
.font-bold {
  font-weight: var(--font-weight-bold);
}

/* Letter Spacing Utilities */
.tracking-tight {
  letter-spacing: var(--letter-spacing-tight);
}
.tracking-normal {
  letter-spacing: var(--letter-spacing-normal);
}
.tracking-wide {
  letter-spacing: var(--letter-spacing-wide);
}
.tracking-wider {
  letter-spacing: var(--letter-spacing-wider);
}
.tracking-widest {
  letter-spacing: var(--letter-spacing-widest);
}

/* Line Height Utilities */
.leading-tight {
  line-height: var(--line-height-tight);
}
.leading-snug {
  line-height: var(--line-height-snug);
}
.leading-normal {
  line-height: var(--line-height-normal);
}
.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--color-text-gray);
  line-height: var(--line-height-relaxed);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
}

/* This class is added via JS when modal opens */
body.no-scroll {
  overflow: hidden;
  height: 100vh; /* Ensures lock on some mobile browsers */
}

html {
  scroll-behavior: smooth;
}

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

picture > img {
  display: block;
}

::selection {
  background-color: rgba(173, 169, 146, 0.4);
  color: var(--color-secondary);
}

/* ================================================
   TYPOGRAPHY BASE ELEMENTS
   ================================================ */
h1,
h2,
h3,
h4 {
  line-height: var(--line-height-tight);
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-4xl);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-dark);
}

h2 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-6xl);
  line-height: var(--line-height-tight);
  color: #5A534D;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 20px;
  }
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

p {
  font-size: var(--font-size-base) !important;
  margin-bottom: 20px;
  color: var(--color-paragraph);
}

/* ================================================
   CONTAINER & LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapper {
  max-width: 1170px;
  margin: 0 auto;
}

/* Section Label */
.section-label {
  font-size: 11px !important;
  letter-spacing: var(--letter-spacing-widest) !important;
  text-transform: uppercase !important;
  color: #655D56;
  margin-bottom: 10px;
  display: block;
  font-weight: var(--font-weight-bold);
}

/* ================================================
   BUTTONS
   ================================================ */

 .btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.125rem;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.1428571429em;
  transition: all ease-out 300ms;
  cursor: pointer;
  margin-top: 20px;
  border-width: 2px;
  border-style: solid;
  font-weight: 700;
  line-height: 1.45;
  min-width: 20ch;
  position: relative;
  text-align: center;
  background-color: #a56f52;
  border-color: #a56f52;
  color: #fff;
}


.btn-primary {
  background: var(--color-primary);
  color: var(--color-tertiary);
  border: 1px solid var(--color-primary);
  font-family: var(--font-primary);
}

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

.btn-main {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-text-light);
  font-family: var(--font-primary);
}

.btn-main:hover {
  background: var(--color-text-light);
  color: var(--color-secondary);
  border: 1px solid var(--color-text-light);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(33, 46, 44, 0.7) 0%,
    rgba(33, 46, 44, 0.3) 50%,
    rgba(33, 46, 44, 0) 100%
  );
  z-index: 1;
}

.logo-container {
  position: absolute;
  top: 0;
  left: 15%;
  padding: 25px 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5%;
}

.content-wrapper h5 {
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-hero);
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.main-heading-offers {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.13;
  margin-bottom: 15px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
}

.description {
  font-size: 1rem;
  max-width: 500px;
  line-height: var(--line-height-normal);
  margin-bottom: 30px;
  font-weight: var(--font-weight-light);
  color: var(--color-text-light);
}

.cta-group {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .logo-container {
    left: 5%;
    padding: 15px 20px;
  }

  .main-heading-offers {
    font-size: var(--font-size-3xl);
  }

  .content-wrapper {
    padding-left: 0;
  }
}

/* ================================================
   APC SECTION - CLOSER
   ================================================ */
.apc-section {
  display: block;
  width: 100%;
}

.apc-section--closer {
  background-color: var(--color-secondary);
  background-image: url(../img/stripe.png);
  background-repeat: no-repeat;
  background-position: bottom -30px center;
  background-size: auto 376px;
}

.apc-closer {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  padding: 20px 36px;
}

.apc-closer__content {
  flex: 1;
  padding: 14px 0 30px;
  color: var(--color-text-light);
  font-family: var(--font-accent);
  text-align: left;
}

.apc-closer__content .title {
  margin-top: 18px;
  color: #fff;
  font-size: 36px;
  letter-spacing: var(--letter-spacing-tight);
  line-height: 45px;
}

.apc-closer__content .subtitle {
  margin: 31px auto 0;
  color: var(--color-tertiary);
  line-height: 22px;
  text-transform: uppercase;
}

.apc-closer__content .text {
  margin: 31px auto 0;
  font-weight: var(--font-weight-regular);
  line-height: 20px;
}

.apc-closer__image-wrapper {
  position: relative;
}

.apc-closer__image-wrapper .image {
  width: 318px;
  height: 328px;
}

.apc-closer__image-wrapper .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.apc-closer__image-wrapper::after {
  content: " ";
  display: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
  height: 100px;
  background: url(https://www.audleytravel.com/images/apc/apc-closer-star.png);
  background-repeat: no-repeat;
  background-size: 100px 100px;
}

@media (min-width: 48em) {
  .apc-section--closer {
    background-image: url(../img/stripe.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 631px;
  }
  .apc-closer {
    flex-direction: row;
    padding: 54px 20px 61px;
  }
  .apc-closer__image-wrapper .image {
    width: 390px;
    height: 404px;
  }
}

@media (min-width: 64em) {
  .apc-closer__content {
    padding: 40px;
  }
  .apc-closer__content .title {
    margin-top: 34px;
    font-size: 40px;
  }
  .apc-closer__content .subtitle {
    margin-top: 23px;
    letter-spacing: 1px;
    line-height: 20px;
  }
  .apc-closer__content .text {
    max-width: 410px;
    margin: 22px auto 0;
    line-height: 22px;
  }
  .apc-closer__image-wrapper .image {
    width: 494px;
    height: 512px;
  }
}

@media (min-width: 48em) {
  .showgraphic .apc-closer__image-wrapper::after {
    display: block;
  }
}

/* ================================================
   APC SECTION - STORY
   ================================================ */
.apc-section--story {
  position: relative;
}

.apc-story__media,
.apc-story__media img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.apc-story__media {
  background-color: var(--color-secondary);
}

.apc-story__media img {
  z-index: 1;
  object-fit: cover;
  object-position: left top;
}

.apc-story__media::after,
.apc-story__media::before {
  content: " ";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.apc-story__media::after {
  z-index: 2;
  background: linear-gradient(to bottom, transparent, var(--color-overlay));
}



.apc-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 40px;
}

.apc-story__image-wrapper {
  position: relative;
  z-index: 3;
}

.apc-story__image-wrapper .image {
  width: 318px;
  height: 364px;
}

.apc-story__image-wrapper .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apc-story__content {
  z-index: 5;
  flex: 1;
  padding: 14px 0 30px;
  color: var(--color-text-light);
  font-family: var(--font-accent);
  text-align: center;
  isolation: isolate;
}

.apc-story__content .title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: var(--letter-spacing-tight);
  line-height: 40px;
}

.apc-story__content .text {
  max-width: 435px;
  margin-top: 21px;

  font-weight: var(--font-weight-regular);
  line-height: 20px;
}

.apc-story__content .register-btn {
  display: inline-block;
  box-sizing: border-box;
  height: 40px;
  margin-top: 34px;
  padding: 0 25px;
  border: solid 1px var(--color-text-light);
  background-color: var(--color-overlay);
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  word-spacing: 0.04em;
}

.apc-story__content .register-btn:hover {
  background-color: var(--color-secondary);
}

@media (min-width: 48em) {
  .apc-story {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 105px 40px 201px;
  }
  .apc-story__content {
    text-align: left;
  }
}

@media (min-width: 64em) {
  .apc-story__image-wrapper .image {
    width: 343px;
    height: 391px;
  }
  .apc-story__content .title {
    font-size: 40px;
    line-height: 45px;
  }
  .apc-story__content .text {
    line-height: 22px;
  }
}

.showgraphic .apc-story__media::after {
  display: block;
}

@media (min-width: 48em) {
  .showgraphic .apc-story__media::after {
    display: none;
  }
  .showgraphic .apc-story__media::before {
    display: block;
  }
}

/* ================================================
   LODGE SECTION
   ================================================ */
.lodge-section {
  padding: 80px 20px;
  background: var(--color-bg-secondary);
}

.lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.lodge-text .section-label {
  margin-bottom: 10px;
}

.lodge-text h2 {
  margin-bottom: 20px;
}

.lodge-text p {
  margin-bottom: 20px;
}

/* FIXED: Lodge Images - Improved responsive grid */
.lodge-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 15px;
}

.lodge-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.lodge-images img:first-child {
  grid-row: span 2;
}

/* Tablet breakpoint */
@media (max-width: 900px) {
  .lodge-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lodge-text {
    margin-bottom: 20px;
  }

  /* Adjust image grid for tablets */
  .lodge-images {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 200px 200px;
  }
}

/* FIXED: Small screen breakpoint - prevent overlap */
@media (max-width: 600px) {
  .lodge-images {
    /* Stack images vertically on small screens */
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }

  .lodge-images img {
    /* Reset all images to natural flow */
    grid-row: auto;
    grid-column: auto;
    height: 220px;
    width: 100%;
  }

  .lodge-images img:first-child {
    /* Remove the row span on mobile */
    grid-row: auto;
    grid-column: auto;
    height: 280px;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .lodge-images img {
    height: 180px;
  }

  .lodge-images img:first-child {
    height: 220px;
  }
}

/* ================================================
   FEATURES LIST
   ================================================ */
.features-list {
  list-style: none;
  margin: 20px 0;
}

.features-list li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-text-gray);
  font-size: 1rem;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ================================================
   OFFERS SECTION
   ================================================ */
.offers-section {
  padding: 40px 20px;
  background: var(--color-bg-primary);
  text-align: center;
}

.offers-header {
  /* margin-bottom: 40px; */
}

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

.offer-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.offer-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.offer-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--color-bg-primary);
  padding: 8px 16px;
  font-size: var(--font-size-sm);
  border-radius: 4px;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

.offer-content {
  padding: 30px;
}

.offer-content .section-label {
  margin-bottom: 8px;
}

.offer-content h3 {
  font-size: var(--font-size-xl);
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.offer-price {
  margin-bottom: 15px;
}

.offer-price .amount {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-dark);
}

.offer-price .per {
  font-size: 14px;
  color: var(--color-text-gray);
}

.offer-features {
  list-style: none;
  margin-bottom: 20px;
}

.offer-features li {
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
  color: var(--color-text-gray);
  font-size: 0.9rem;
}

.offer-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.offer-footer .note {
  font-size: var(--font-size-sm);
  color: var(--color-text-gray);
}

@media (max-width: 1024px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .offer-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ================================================
   EXPERIENCES SECTION
   ================================================ */
.experiences-section {
  padding: 80px 20px;
  background: var(--color-secondary);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.experience-card {
  text-align: left;
}

.experience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 15px;
}

.experience-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.experience-card p {
  font-size: 0.875rem;
}

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

@media (max-width: 1024px) {
  .experiences-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   INCLUSIONS SECTION
   ================================================ */
.inclusions-section {
  padding: 80px 20px;
  background: var(--color-bg-primary);
}

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

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

/* ================================================
   SEASONS SECTION
   ================================================ */
.seasons-section {
  padding: 60px 20px;
}

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

.season-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 15px;
}

.season-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: 8px;
  color: #655D56;
}

.season-card p {
  font-size: 0.875rem;
}

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

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

/* ================================================
   FLASHPACK WIZARD CONTAINER
   ================================================ */
.fp-wizard-container {
  margin: 60px auto;
  max-width: 450px;
  min-height: 612px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1176px) {
  .fp-wizard-container {
    align-items: center;
    display: flex;
    height: 535px;
    justify-content: space-between;
    max-width: unset;
  }
}

/* Fade Effects - Desktop Vertical */
@media (min-width: 1176px) {
  .fp-fade-vertical::before {
    background: linear-gradient(
      var(--color-bg-primary) 0%,
      rgba(235, 237, 230, 0) 100%
    );
    content: "";
    height: 60px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
  }

  .fp-fade-vertical::after {
    background: linear-gradient(
      rgba(235, 237, 230, 0) 0%,
      var(--color-bg-primary) 100%
    );
    bottom: 0;
    content: "";
    height: 60px;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
  }
}

/* Fade Effects - Mobile Horizontal */
@media (max-width: 1175px) {
  .fp-fade-horizontal::before {
    background: linear-gradient(
      270deg,
      rgba(235, 237, 230, 0) 0%,
      var(--color-bg-primary) 100%
    );
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 30px;
    z-index: 2;
  }

  .fp-fade-horizontal::after {
    background: linear-gradient(
      90deg,
      rgba(235, 237, 230, 0) 0%,
      var(--color-bg-primary) 100%
    );
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
  }
}

/* Desktop Image Scroll Containers */
.fp-desktop-scroll {
  display: none;
  height: 100%;
  max-width: 458px;
  position: relative;
}

@media (min-width: 1176px) {
  .fp-desktop-scroll {
    display: flex;
  }
}

.fp-desktop-scroll-left {
  animation: fp-scroll-up 20s linear infinite;
}

.fp-desktop-scroll-right {
  animation: fp-scroll-down 20s linear infinite;
}

/* Image Columns */
.fp-image-column {
  display: flex;
  flex-direction: column;
}

.fp-image-column .fp-image-box {
  background: var(--color-bg-secondary);
  border-radius: 8px;
  flex-shrink: 0;
  height: 107px;
  margin-bottom: 107px;
  overflow: hidden;
  width: 107px;
}

.fp-image-column.fp-column-odd .fp-image-box {
  margin-bottom: 0;
  margin-top: 107px;
}

.fp-desktop-scroll-right .fp-image-column .fp-image-box {
  margin-bottom: 0;
  margin-top: 107px;
}

.fp-desktop-scroll-right .fp-image-column.fp-column-odd .fp-image-box {
  margin-bottom: 107px;
  margin-top: 0;
}

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

/* Center Content Column */
.fp-content-column {
  margin: 0 auto;
  max-width: 370px;
  padding: 0 24px;
}

.fp-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: 48px;
  margin-bottom: 14px;
  text-align: center;
  color: #3f3529;
}

@media (max-width: 767px) {
  .fp-heading {
    font-size: 32px;
    line-height: 38.4px;
  }
}

.fp-cta-wrapper {
  width: 100%;
}

/* Mobile Image Scroll Container */
.fp-mobile-scroll {
  animation: fp-scroll-sideways 10s linear infinite;
  height: 285px;
  margin: 80px auto 0;
  max-width: 450px;
  position: relative;
}

@media (min-width: 1176px) {
  .fp-mobile-scroll {
    display: none;
  }
}

.fp-image-track {
  display: flex;
}

.fp-image-track .fp-image-box {
  background: var(--color-bg-secondary);
  border-radius: 8px;
  flex-shrink: 0;
  height: 83px;
  margin-right: 83px;
  overflow: hidden;
  width: 83px;
}

.fp-image-track.fp-track-odd .fp-image-box {
  margin-left: 83px;
  margin-right: 0;
}

/* ================================================
   KEYFRAME ANIMATIONS
   ================================================ */
@keyframes fp-scroll-sideways {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-498px);
  }
}

@keyframes fp-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-642px);
  }
}

@keyframes fp-scroll-down {
  0% {
    transform: translateY(-642px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================================================
   TESTIMONIAL SECTION
   ================================================ */

.testimonial-section {
  padding: 80px 20px;
  position: relative;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  z-index: -1;
}

.testimonial-card {
  background: var(--color-bg-primary);
  max-width: 450px;
  padding: 40px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-card img {
  height: 36px;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: 15px;
  color: var(--color-text-dark);
}

.testimonial-card p {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* ================================================
   WHATSAPP FLOAT BUTTON
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 12px 20px 12px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--color-shadow), 0 2px 6px var(--color-shadow);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.whatsapp-button:hover {
  box-shadow: 0 6px 20px var(--color-shadow), 0 3px 8px var(--color-shadow);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-secondary);
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-title {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  color: #5A534D;
  line-height: var(--line-height-tight);
}

.whatsapp-subtitle {
  font-size: 13px;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-gray);
  line-height: var(--line-height-tight);
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 50%;
    transform: translateX(50%);
    width: 60%;
  }
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background-color: var(--color-secondary);
    background-image: linear-gradient(rgba(27, 23, 23, 0.75), rgba(27, 23, 23, 0.75)), url(../img/slate-texture.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    color: var(--color-text-light);
}


.footer img {
  height: 70px;
  margin: 0 auto 20px;
}

.footer p {
  color: rgba(235, 237, 230, 0.7);
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
}

/* ================================================
   GENERAL RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
  .lodge-section,
  .offers-section,
  .experiences-section,
  .inclusions-section,
  .seasons-section,
  .testimonial-section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}

.experiences-section {
  background-image: url(../img/stripe.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 631px;
}

/* ================================================
   UTILITY CLASSES - SPACING
   ================================================ */
.gap-40 {
  width: 100%;
  height: 40px;
}

.gap-30 {
  width: 100%;
  height: 30px;
}

/* --- 2. Modal Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* --- 3. The Modal Box (Fixed Shell) --- */
.modal-container {
  background: white;
  width: 90%;
  max-width: 650px;

  /* HEIGHT CONTROL FOR SCROLLING: */
  min-height: 300px; /* Minimum size */
  max-height: 90vh; /* Never taller than 90% of screen */

  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);

  /* Flex layout to manage scroll area */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Clips corners for scrollbar */
}

.modal-overlay.is-visible .modal-container {
  transform: translateY(0) scale(1);
}

/* --- 4. The Scrollable Content Area --- */
.modal-content-scrollable {
  padding: 40px; /* Padding lives inside the scroll area now */
  overflow-y: auto; /* Activates vertical scroll when needed */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  /* Smooth scrolling behavior */
  scroll-behavior: smooth;
}

/* Optional: Custom Scrollbar Styling (Webkit only) */
.modal-content-scrollable::-webkit-scrollbar {
  width: 8px;
}
.modal-content-scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.modal-content-scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

/* --- 5. Typography --- */
.modal-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #484848;
  margin-bottom: 12px;
  margin-top: 20px; /* Slight top margin so it doesn't hit close btn immediately */
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 16px;
  color: #444;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* form width */
.form {
  width: 80%;
  height: auto;
}

/* --- 6. The Fixed Close Button --- */
.close-btn {
  position: absolute;
  /* Negative values to pull it outside the container */
  top: 22px; /* Half of the 44px height */
  right: 22px; /* Half of the 44px width */

  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  /* A stronger shadow to make it pop off the dark background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 20; /* Must be higher than container */
}

.close-btn:focus {
  outline: none; /* Removes the default blue ring */
}

.close-btn svg {
  width: 14px;
  height: 14px;
  fill: #333;
  stroke: #333;
  stroke-width: 1;
}
.close-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.close-btn:active {
  transform: scale(0.95);
}

.trigger-btn {
  padding: 12px 24px;
  background: #222;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.card-container {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 40px;
}
.card-content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background-color:whitesmoke;
}
@media (min-width: 1024px) {
  .card-content-wrapper {
    flex-direction: row;
  }
  .image-column {
    width: 45%;
    height: auto;
  }
  .info-column {
    width: 55%;
  }
}

/* --- IMAGE COLUMN --- */
.image-column {
  position: relative;
  width: 100%;
  height: 18rem;
  background-color: #e5e7eb;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .image-column {
    height: auto;
    min-height: 100%;
  }
}

.sold-out-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: white;
  color: #3f3a36;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  letter-spacing: 0.05em;
  z-index: 20;
}

/* --- CAROUSEL --- */
.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1.1);
  z-index: 0;
}
.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.prev-btn {
  left: 1rem;
}
.next-btn {
  right: 1rem;
}
.dots-container {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  z-index: 20;
}
.dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
  cursor: pointer;
}
.dot.active {
  background-color: white;
}
.dot.inactive {
  background-color: rgba(255, 255, 255, 0.5);
}

/* --- INFO COLUMN --- */
.info-column {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .info-column {
    padding: 2rem;
  }
}

.room-header h3 {
    font-size: 1.2rem;
    color: #4D4741;
    font-weight: 400;
}

.room-title {
  font-size: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: #5A534D;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .room-title {
    font-size: 1.875rem;
  }
}
.details-link {
  font-size: 0.875rem;
  color: #655D56;
  text-decoration: underline;
}
.details-link:hover {
  color: #1f2937;
}

.price-area {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.price-container {
  text-align: right;
}
.rate-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-gray);
  margin-bottom: -0.5rem;
}
.price-flex {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.25rem;
}
.price-amount {
  font-size: 1.5rem;
  font-family: var(--font-number);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-gray);
}
.price-unit {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-gray);
  text-transform: uppercase;
}

.promo-banner {
  background-color: #fff7ed;
  border: 1px solid #ffedd5;
  border-radius: 0.375rem;
  padding: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.promo-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fb923c;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.promo-text {
  font-size: 0.875rem;
  color: var(--color-text-gray);
  font-weight: 500;
  margin-bottom: 0;
}

/* --- RATE GRID --- */
.rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: auto;
}
@media (min-width: 640px) {
  .rate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rate-card {
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  border: 1px solid #7d5445;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.ms {
     border: 2.5px solid #7d5445;;
}
.rate-card:hover {
  border-color: #7d5445;
}
.rate-card.selected {
  border: 2px solid #7d5445;
  background-color: #f6f5f1;
}
.rate-card.selected .select-text {
  text-decoration: underline;
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top-right-radius: 0.4rem;
  border-bottom-left-radius: 0.25rem;
}
.rate-card.selected .popular-badge {
  top: -2px;
  right: -2px;
}

.card-title {
  font-weight: 700;
  color: var(--color-text-gray);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  padding-right: 7.5rem;
}
.card-desc {
  font-size: 0.75rem !important;
  color: #655D56;
  /* line-height: 1.625; */
  margin-bottom: .1rem;
}
.rate-details-link {
  font-size: 0.75rem;
  text-decoration: underline;
  color: #A39990;
}

.card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.rate-name {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-text-gray);
}
.info-icon {
  display: inline-block;
  border: 1px solid #9ca3af;
  border-radius: 9999px;
  padding: 0 0.25rem;
  font-size: 0.5rem;
  margin-left: 0.125rem;
  vertical-align: middle;
}
.card-price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-number);
  margin-top: 0.125rem;
}
.card-period {
  font-size: 0.725rem;
  font-weight: 700;
  color: #5A534D;
  text-transform: uppercase;
}

.select-text {
  background: none;
  border: none;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: #655D56;
  cursor: pointer;
  padding: 0;
  min-width: 80px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid var(--color-text-gray);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
           OASSLR MODAL STYLES
           ============================================ */
:root {
  --oasslr-color-sand: #a47052;
  --oasslr-color-sand-light: #a47052;
  --oasslr-color-sand-dark: #a47052;
  --oasslr-color-charcoal: #1a1a1a;
  --oasslr-color-ivory: #fdfbf7;
  --oasslr-color-white: #ffffff;
  --oasslr-font-display: "Cormorant Garamond", Georgia, serif;
  --oasslr-font-body: "Montserrat", sans-serif;
  --oasslr-transition: all 0.3s ease;
  --oasslr-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.4),
    0 10px 30px -10px rgba(0, 0, 0, 0.2);
}

.oasslr-wrapper *,
.oasslr-wrapper *::before,
.oasslr-wrapper *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.oasslr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--oasslr-transition);
  z-index: 1000;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .oasslr-overlay {
    padding: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
  }
}

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

.oasslr-modal {
  background: #fff;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: 100%;
  max-height: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--oasslr-transition);
  position: relative;
}

@media (min-width: 768px) {
  .oasslr-modal {
    max-width: 1100px;
    max-height: 90vh;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--oasslr-shadow);
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .oasslr-modal {
    grid-template-columns: 42% 58%;
  }
}

.oasslr-overlay.oasslr-active .oasslr-modal {
  transform: translateY(0);
}

.oasslr-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--oasslr-transition);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .oasslr-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (hover: hover) {
  .oasslr-close:hover {
    background: #a56f52;
  }
  .oasslr-close:hover svg {
    stroke: var(--oasslr-color-ivory);
  }
}

.oasslr-close:active {
  background: #a56f52;
}

.oasslr-close:active svg {
  stroke: var(--oasslr-color-ivory);
}

.oasslr-close svg {
  width: 18px;
  height: 18px;
  stroke: var(--oasslr-color-charcoal);
  transition: var(--oasslr-transition);
}

.oasslr-image {
  position: relative;
  min-height: 200px;
  max-height: 35vh;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .oasslr-image {
    min-height: 280px;
    max-height: none;
  }
}

@media (min-width: 900px) {
  .oasslr-image {
    min-height: unset;
  }
}

.oasslr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.oasslr-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    transparent 30%,
    transparent 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.oasslr-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: var(--oasslr-color-white);
}

@media (min-width: 768px) {
  .oasslr-image-content {
    padding: 30px;
  }
}

.oasslr-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #a47052;
  color: #fff;
  padding: 6px 12px;
  margin-bottom: 10px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .oasslr-tag {
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 15px;
  }
}

.oasslr-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .oasslr-title {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
  }
}

.oasslr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .oasslr-meta {
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
  }
}

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

.oasslr-divider {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.oasslr-price {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  opacity: .85;
  color: #fff;
}

@media (min-width: 768px) {
  .oasslr-price {
    font-size: 15px;
    margin-top: 10px;
  }
}

.oasslr-form-container {
  padding: 25px 20px 40px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .oasslr-form-container {
    padding: 40px 35px;
    max-height: 90vh;
  }
}

@media (min-width: 900px) {
  .oasslr-form-container {
    padding: 45px 40px;
  }
}

.oasslr-form-header {
  text-align: center;
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .oasslr-form-header {
    margin-bottom: 35px;
  }
}

.oasslr-form-header h2 {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text-gray);
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .oasslr-form-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 8px;
  }
}

.oasslr-form-header p {
  font-family: var(--font-primary);
  font-size: 12px;
  color: #655D56;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .oasslr-form-header p {
    font-size: 13px;
  }
}

.oasslr-section {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .oasslr-section {
    margin-bottom: 30px;
  }
}

.oasslr-section-title {
  font-family: var(--oasslr-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oasslr-color-sand-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
  .oasslr-section-title {
    letter-spacing: 2.5px;
    margin-bottom: 15px;
  }
}

.oasslr-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .oasslr-row {
    gap: 15px;
    margin-bottom: 15px;
  }
}

.oasslr-row.oasslr-cols-3 {
  grid-template-columns: 1fr;
}

.oasslr-row.oasslr-cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 500px) {
  .oasslr-row.oasslr-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 600px) {
  .oasslr-row.oasslr-cols-3 {
    grid-template-columns: 100px 1fr 1fr;
  }
}

.oasslr-group {
  position: relative;
}

.oasslr-input,
.oasslr-select,
.oasslr-textarea {
  width: 100%;
  font-family: var(--oasslr-font-body);
  font-size: 16px;
  color: var(--oasslr-color-charcoal);
  background: var(--oasslr-color-white);
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 4px;
  transition: var(--oasslr-transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  .oasslr-input,
  .oasslr-select,
  .oasslr-textarea {
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 3px;
  }
}

.oasslr-input::placeholder,
.oasslr-textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.oasslr-input:focus,
.oasslr-select:focus,
.oasslr-textarea:focus {
  border-color: var(--oasslr-color-sand-dark);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.oasslr-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.oasslr-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.oasslr-phone-wrapper {
  display: flex;
  gap: 10px;
}

.oasslr-country-select {
  width: 95px;
  flex-shrink: 0;
  padding-right: 35px;
}

.oasslr-phone-wrapper .oasslr-input {
  flex: 1;
}

.oasslr-radio-group,
.oasslr-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 768px) {
  .oasslr-radio-group,
  .oasslr-checkbox-group {
    gap: 25px;
  }
}

.oasslr-radio-item,
.oasslr-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 4px 0;
  min-height: 44px;
}

.oasslr-radio-item input,
.oasslr-checkbox-item input {
  display: none;
}

.oasslr-radio-custom,
.oasslr-checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  background: var(--oasslr-color-white);
  flex-shrink: 0;
  position: relative;
  transition: var(--oasslr-transition);
}

@media (min-width: 768px) {
  .oasslr-radio-custom,
  .oasslr-checkbox-custom {
    width: 20px;
    height: 20px;
    border-width: 1px;
  }
}

.oasslr-radio-custom {
  border-radius: 50%;
}

.oasslr-checkbox-custom {
  border-radius: 4px;
}

@media (min-width: 768px) {
  .oasslr-checkbox-custom {
    border-radius: 3px;
  }
}

.oasslr-radio-item:active .oasslr-radio-custom,
.oasslr-checkbox-item:active .oasslr-checkbox-custom {
  border-color: var(--oasslr-color-sand-dark);
  background: var(--oasslr-color-sand-light);
}

@media (hover: hover) {
  .oasslr-radio-item:hover .oasslr-radio-custom,
  .oasslr-checkbox-item:hover .oasslr-checkbox-custom {
    border-color: var(--oasslr-color-sand-dark);
  }
}

.oasslr-radio-item input:checked + .oasslr-radio-custom {
  border-color: var(--oasslr-color-charcoal);
}

.oasslr-radio-item input:checked + .oasslr-radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--oasslr-color-charcoal);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .oasslr-radio-item input:checked + .oasslr-radio-custom::after {
    width: 8px;
    height: 8px;
  }
}

.oasslr-checkbox-item input:checked + .oasslr-checkbox-custom {
  background: var(--oasslr-color-charcoal);
  border-color: var(--oasslr-color-charcoal);
}

.oasslr-checkbox-item input:checked + .oasslr-checkbox-custom::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  width: 6px;
  height: 12px;
  border: solid var(--oasslr-color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .oasslr-checkbox-item input:checked + .oasslr-checkbox-custom::after {
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
  }
}

.oasslr-radio-label,
.oasslr-checkbox-label {
  font-family: var(--oasslr-font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--oasslr-color-charcoal);
  line-height: 1.5;
  padding-top: 2px;
}

@media (min-width: 768px) {
  .oasslr-radio-label,
  .oasslr-checkbox-label {
    font-size: 13px;
  }
}

.oasslr-checkbox-label a {
  color: var(--oasslr-color-charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.oasslr-submit {
  width: 100%;
  font-family: var(--oasslr-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oasslr-color-ivory);
  background: var(--oasslr-color-charcoal);
  border: none;
  padding: 18px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--oasslr-transition);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  min-height: 56px;
}

@media (min-width: 768px) {
  .oasslr-submit {
    font-size: 12px;
    letter-spacing: 2.5px;
    padding: 20px 35px;
    border-radius: 3px;
    margin-top: 25px;
    min-height: auto;
  }
}

.oasslr-submit:active {
  background: var(--oasslr-color-sand);
  color: var(--oasslr-color-charcoal);
}

@media (hover: hover) {
  .oasslr-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--oasslr-color-sand);
    transition: var(--oasslr-transition);
    z-index: 0;
  }
  .oasslr-submit span {
    position: relative;
    z-index: 1;
  }
  .oasslr-submit:hover {
    color: var(--oasslr-color-charcoal);
  }
  .oasslr-submit:hover::before {
    left: 0;
  }
}

.oasslr-disclaimer {
  font-family: var(--oasslr-font-body);
  font-size: 11px;
  font-weight: 300;
  color: #999;
  line-height: 1.7;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .oasslr-disclaimer {
    margin-top: 25px;
  }
}

.oasslr-disclaimer a {
  color: #777;
  text-decoration: underline;
}

.oasslr-form-container::-webkit-scrollbar {
  width: 4px;
}

@media (min-width: 768px) {
  .oasslr-form-container::-webkit-scrollbar {
    width: 6px;
  }
}

.oasslr-form-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.oasslr-form-container::-webkit-scrollbar-thumb {
  background: var(--oasslr-color-sand);
  border-radius: 3px;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .oasslr-form-container {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}


        .tz-faq-wrapper {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fff;
            color: #1a1a1a;
            line-height: 1.6;

            padding-bottom: 3rem;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            box-sizing: border-box;
        }

        .tz-faq-wrapper *,
        .tz-faq-wrapper *::before,
        .tz-faq-wrapper *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .tz-faq-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .tz-faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .tz-faq-item {
            background: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            overflow: hidden;
        }

        .tz-faq-item summary {
            list-style: none;
            cursor: pointer;
        }

        .tz-faq-item summary::-webkit-details-marker {
            display: none;
        }

        .tz-faq-question {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--color-text-gray);
            font-family: var(--font-primary);
        }

        .tz-faq-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: #999;
            transition: transform 0.2s ease;
        }

        .tz-faq-item[open] .tz-faq-icon {
            transform: rotate(180deg);
        }

        .tz-faq-answer {
            padding: 0 1.5rem 1.5rem 3.25rem;
            color: var(--color-paragraph);
            font-size: 1rem;
            line-height: 1.75;
        }

        .tz-faq-answer p {
            margin-bottom: 1rem;
            font-family: var(--font-primary);
            padding-right: 1rem;

        }

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

        @media (max-width: 600px) {
            .tz-faq-wrapper {
                padding: 2rem 1rem;
            }

            .tz-faq-question {
                padding: 1rem 1.25rem;
                font-size: 1rem;
            }

            .tz-faq-answer {
                padding: 0 1.25rem 1.25rem 2.75rem;
            }
        }

.faq {
    margin-bottom: 0;
}













/* Mobile styles */
@media (max-width: 767px) {
 .card-container {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 40px;
}

.section-label {
  font-size: 9px !important;
  letter-spacing: var(--letter-spacing-widest) !important;
  text-transform: uppercase !important;
  color: #655D56;
  margin-bottom: 10px;
  display: block;
  font-weight: var(--font-weight-bold);
}

.content-wrapper {
    text-align: center;
}

.btn {
   display: block;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.125rem;
  font-size: 0.775rem;
  text-transform: uppercase;
  letter-spacing: 0.1428571429em;
  transition: all ease-out 300ms;
  cursor: pointer;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
  line-height: 1.45;
  width: 70%;
  position: relative;
  text-align: center;
}

.info-column
 {
    padding-top: 1.5rem;
padding-bottom: 1.5rem;
padding-right: 2rem;
padding-left: 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq-section {
   padding: 20px 20px;
}

}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
 .card-container {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 40px;
}
}

/* Modal Overlay - HIDDEN by default */
.oasslr-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* HIDDEN BY DEFAULT */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ACTIVE STATE - Shows the modal */
.oasslr-overlay.oasslr-active {
    opacity: 1;
    visibility: visible;
}