/* =====================================================
   GATLINBURG'S BEST CABINS - MAIN STYLESHEET
   Mountain Luxury Theme with Earthy Color Palette
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Primary Colors - Mountain Luxury Palette */
  --forest-green: #2E5D34;
  --forest-green-dark: #1E4024;
  --forest-green-light: #4A7D50;
  
  /* Warm Browns */
  --warm-brown: #5C4033;
  --warm-brown-light: #8B5A2B;
  --warm-brown-dark: #3D2A22;
  
  /* Accent Colors */
  --rustic-accent: #A0522D;
  --rustic-accent-light: #C4704B;
  --gold-accent: #D4A853;
  
  /* Neutrals */
  --soft-gray: #F5F5F5;
  --warm-white: #FAFAF8;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #6B6B6B;
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(46, 93, 52, 0.08);
  --shadow-md: 0 4px 20px rgba(46, 93, 52, 0.12);
  --shadow-lg: 0 8px 40px rgba(46, 93, 52, 0.15);
  --shadow-xl: 0 20px 60px rgba(46, 93, 52, 0.2);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Josefin Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container */
  --container-max: 1400px;
  --container-narrow: 900px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Smooth scroll offset for fixed header */
:target::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--warm-brown-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

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

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

.text-accent {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--forest-green);
  font-weight: 600;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-2xl) 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn--primary {
  background: var(--forest-green);
  color: white;
  border: 2px solid var(--forest-green);
}

.btn--primary:hover {
  background: var(--forest-green-dark);
  border-color: var(--forest-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

.btn--secondary:hover {
  background: var(--forest-green);
  color: white;
}

.btn--accent {
  background: var(--rustic-accent);
  color: white;
  border: 2px solid var(--rustic-accent);
}

.btn--accent:hover {
  background: var(--rustic-accent-light);
  border-color: var(--rustic-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: white;
  color: var(--forest-green);
  border: 2px solid white;
}

.btn--white:hover {
  background: transparent;
  color: white;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46, 93, 52, 0.1);
  transition: all var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header--transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Desktop only: White nav links on transparent header */
@media (min-width: 1025px) {
  .header--transparent:not(.header--scrolled) .nav__link {
    color: white;
  }
}

.header--transparent:not(.header--scrolled) .logo {
  color: white;
}

/* Fix: Ensure hamburger menu bars are visible on transparent header */
.header--transparent:not(.header--scrolled) .nav__toggle span {
  background: white;
}

.header--transparent.header--scrolled {
  background: rgba(250, 250, 248, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-green);
  transition: color var(--transition-fast);
}

.logo__icon {
  width: 40px;
  height: 40px;
  color: var(--forest-green);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--forest-green);
}

.nav__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: var(--soft-gray);
  color: var(--forest-green);
  /* Removed padding-left change to prevent text jumping */
}

.nav__dropdown-divider {
  height: 1px;
  background: var(--soft-gray);
  margin: 0.5rem 0;
}

/* Wide Dropdown for Travel Guide (2-column layout) */
.nav__dropdown--wide {
  min-width: 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}

.nav__dropdown--wide .nav__dropdown-link:first-child {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--soft-gray);
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
}

/* Mobile wide dropdown styles moved to consolidated MOBILE HEADER & NAVIGATION section */

/* Mobile Menu Button */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-fast);
}

.nav__cta {
  margin-left: 1rem;
}

/* Mobile Navigation - Basic toggle display only, main styles in MOBILE HEADER section below */
@media (max-width: 1024px) {
  .nav__toggle {
    display: flex;
    z-index: 1002;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 100px 0 60px;
  background-color: #1e4024;
}

.hero__bg-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-picture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 64, 36, 0.25) 0%,
    rgba(30, 64, 36, 0.4) 50%,
    rgba(30, 64, 36, 0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 20px; /* Desktop: spacing to prevent header overlap */
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease forwards;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero__title--modern {
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
}

/* Mobile hero title handled in mobile sections below */

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  margin-top: var(--space-lg);
  padding-bottom: var(--space-md);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Smaller Hero (for interior pages) */
.hero--sm {
  min-height: 50vh;
}

.hero--sm .hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-header__badge {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__desc {
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* Decorative line */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-green), var(--gold-accent));
  margin: var(--space-lg) auto 0;
  border-radius: 2px;
}

/* ===== FEATURED CABINS ===== */
.cabins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

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

.cabin-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.cabin-card__image {
  display: block;
  position: relative;
  height: 280px;
  width: 100%;
  overflow: hidden;
}

.cabin-card__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}

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

.cabin-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.75rem;
  background: var(--forest-green);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
}

.cabin-card__content {
  padding: var(--space-lg);
}

.cabin-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.cabin-card__title a:hover {
  color: var(--forest-green);
}

.cabin-card__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.cabin-card__location svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green);
}

.cabin-card__desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.cabin-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--soft-gray);
}

.cabin-card__amenity {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.cabin-card__amenity svg {
  width: 18px;
  height: 18px;
  color: var(--forest-green);
}

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

.cabin-card__guests {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.cabin-card__guests svg {
  width: 18px;
  height: 18px;
}

.cabin-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-green);
  transition: gap var(--transition-fast);
}

.cabin-card__link:hover {
  gap: 0.75rem;
}

.cabin-card__link svg {
  width: 18px;
  height: 18px;
}

/* ===== WHY BOOK DIRECT ===== */
.why-direct {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.why-direct::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(255,255,255,0.05)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.why-direct .section-header__title {
  color: white;
}

.why-direct .section-header::after {
  background: linear-gradient(90deg, var(--gold-accent), rgba(255,255,255,0.5));
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.benefit-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.benefit-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold-accent);
}

.benefit-card__title {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
}

.benefit-card__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== AMENITIES SECTION ===== */
.amenities-section {
  background: var(--soft-gray);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

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

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

.amenity-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  border-radius: var(--radius-md);
}

.amenity-card__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.amenity-card__title {
  font-size: 1.1rem;
  font-family: var(--font-accent);
  margin-bottom: 0.25rem;
}

.amenity-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

@media (max-width: 640px) {
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  color: var(--forest-green);
  opacity: 0.15;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  color: var(--gold-accent);
  fill: var(--gold-accent);
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--forest-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.testimonial-card__name {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-card__cabin {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== BLOG PREVIEW ===== */
.blog-section {
  background: var(--soft-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

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

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card__content {
  padding: var(--space-lg);
}

.blog-card__category {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--soft-gray);
  color: var(--forest-green);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card__title a:hover {
  color: var(--forest-green);
}

.blog-card__excerpt {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-card__meta svg {
  width: 16px;
  height: 16px;
}

/* ===== TRAVEL GUIDE SECTION ===== */
.guide-section {
  background: var(--soft-gray);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guide-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: white;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.guide-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.guide-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.guide-card:hover .guide-card__image img {
  transform: scale(1.1);
}

.guide-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
  transition: background 0.3s ease;
}

.guide-card:hover .guide-card__overlay {
  background: linear-gradient(to top, rgba(46, 93, 52, 0.9) 0%, rgba(46, 93, 52, 0.4) 50%, rgba(46, 93, 52, 0.2) 100%);
}

.guide-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}

.guide-card__badge {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--text-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.guide-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  color: white;
}

.guide-card--featured .guide-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.guide-card__desc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

.guide-card--featured .guide-card__desc {
  font-size: 1rem;
}

/* Guide Grid Responsive */
@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .guide-card--featured {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: 21/9;
  }
}

@media (max-width: 768px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .guide-card--featured {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
  
  .guide-card__content {
    padding: 1rem;
  }
  
  .guide-card__title {
    font-size: 1.1rem;
  }
  
  .guide-card--featured .guide-card__title {
    font-size: 1.35rem;
  }
  
  .guide-card__desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-card--featured {
    grid-column: span 1;
  }
  
  .guide-card {
    aspect-ratio: 16/9;
  }
}

/* ===== BOOKING WIDGET SECTION ===== */
.booking-section {
  background: linear-gradient(135deg, var(--warm-brown) 0%, var(--warm-brown-dark) 100%);
  color: white;
  text-align: center;
}

.booking-section .section-header__title {
  color: white;
}

.booking-section .section-header::after {
  background: linear-gradient(90deg, var(--gold-accent), rgba(255,255,255,0.5));
}

.booking-widget {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  overflow: visible;
  position: relative;
  display: flex;
  justify-content: center;
}

.booking-widget iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: var(--space-3xl) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 93, 52, 0.9), rgba(30, 64, 36, 0.95));
}

.cta-banner__content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__title {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-banner__desc {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--warm-brown-dark);
  color: white;
  padding-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer__brand {
  max-width: 350px;
}

@media (max-width: 640px) {
  .footer__brand {
    max-width: none;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--space-md);
}

.footer__logo svg {
  width: 36px;
  height: 36px;
  color: var(--gold-accent);
}

.footer__desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--forest-green);
  transform: translateY(-3px);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.footer__link:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .footer__contact-item {
    justify-content: center;
  }
}

.footer__contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-accent);
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a:hover {
  color: white;
}

/* ===== CABIN DETAIL PAGE STYLES ===== */
.cabin-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

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

.cabin-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(30, 64, 36, 0.85) 0%,
    rgba(30, 64, 36, 0.4) 50%,
    rgba(30, 64, 36, 0.2) 100%
  );
}

.cabin-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl) 0;
  color: white;
}

.cabin-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  opacity: 0.8;
}

.cabin-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.cabin-hero__breadcrumb svg {
  width: 16px;
  height: 16px;
}

.cabin-hero__title {
  color: white;
  margin-bottom: var(--space-sm);
}

.cabin-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.cabin-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.cabin-hero__meta-item svg {
  width: 20px;
  height: 20px;
}

/* Cabin Content Layout */
.cabin-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

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

.cabin-main {
  order: 1;
}

.cabin-sidebar {
  order: 2;
}

@media (max-width: 1024px) {
  .cabin-sidebar {
    order: 0;
  }
}

/* Sticky Booking Widget */
.booking-card {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-card__header {
  background: var(--forest-green);
  color: white;
  padding: var(--space-lg);
  text-align: center;
}

.booking-card__header h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.booking-card__header p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.booking-card__widget {
  padding: var(--space-sm);
}

.booking-card__widget iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

/* Image Gallery */
.cabin-gallery {
  margin-bottom: var(--space-2xl);
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  height: 500px;
  background: var(--soft-gray);
}

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

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--forest-green);
}

.gallery-nav:hover {
  background: var(--forest-green);
  color: white;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.gallery-nav--prev {
  left: 1rem;
}

.gallery-nav--next {
  right: 1rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding: var(--space-sm);
  background: var(--soft-gray);
  border-radius: var(--radius-md);
}

.gallery-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  opacity: 1;
  border-color: var(--forest-green);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: cover;
}

/* Cabin Description */
.cabin-description {
  margin-bottom: var(--space-2xl);
}

.cabin-description h2 {
  margin-bottom: var(--space-md);
}

.cabin-description p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

/* Amenities Grid */
.cabin-amenities {
  margin-bottom: var(--space-2xl);
}

.cabin-amenities h2 {
  margin-bottom: var(--space-lg);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

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

.amenities-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--soft-gray);
  border-radius: var(--radius-md);
}

.amenities-list__item svg {
  width: 24px;
  height: 24px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.amenities-list__item span {
  font-size: 0.95rem;
}

/* FAQ Accordion */
.cabin-faq {
  margin-bottom: var(--space-2xl);
}

.cabin-faq h2 {
  margin-bottom: var(--space-lg);
}

.accordion {
  border: 1px solid var(--soft-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--soft-gray);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--space-lg);
  background: white;
  text-align: left;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.accordion__header:hover {
  background: var(--soft-gray);
}

.accordion__header svg {
  width: 20px;
  height: 20px;
  color: var(--forest-green);
  transition: transform var(--transition-fast);
}

.accordion__item.active .accordion__header svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__item.active .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-medium);
  line-height: 1.8;
}

/* Related Cabins */
.related-cabins {
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--soft-gray);
}

.related-cabins h2 {
  margin-bottom: var(--space-lg);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__content h2 {
  margin-bottom: var(--space-md);
}

.about-intro__content p {
  color: var(--text-medium);
  margin-bottom: var(--space-md);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

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

.value-card {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.value-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
  border-radius: var(--radius-lg);
}

.value-card__icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.value-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card__desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

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

.contact-form {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  background: var(--soft-gray);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest-green);
  background: white;
  box-shadow: 0 0 0 4px rgba(46, 93, 52, 0.1);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-green);
  border-radius: var(--radius-md);
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contact-info__title {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-info__text {
  color: var(--text-medium);
  font-size: 1rem;
  margin: 0;
}

.contact-info__text a:hover {
  color: var(--forest-green);
}

/* Map */
.contact-map {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== FAQ PAGE ===== */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.faq-category {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--soft-gray);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-category:hover,
.faq-category.active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: white;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  padding: calc(100px + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--soft-gray);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

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

.blog-post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (max-width: 640px) {
  .blog-post-card {
    grid-template-columns: 1fr;
  }
}

.blog-post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-post-card__image {
  height: 100%;
  min-height: 200px;
}

.blog-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blog Single Post */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.blog-article__category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--forest-green);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.blog-article__title {
  margin-bottom: var(--space-md);
}

.blog-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-article__featured {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-article__featured img {
  width: 100%;
  height: auto;
}

.blog-article__content {
  font-size: 1.1rem;
  line-height: 1.9;
}

.blog-article__content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.blog-article__content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.blog-article__content p {
  margin-bottom: var(--space-md);
  color: var(--text-medium);
}

.blog-article__content ul,
.blog-article__content ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.blog-article__content li {
  margin-bottom: 0.5rem;
  color: var(--text-medium);
  list-style: disc;
}

.blog-article__content blockquote {
  margin: var(--space-xl) 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--soft-gray);
  border-left: 4px solid var(--forest-green);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* ===== LOADING STATES ===== */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--soft-gray) 0%,
    #e8e8e8 50%,
    var(--soft-gray) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ===== LAZY LOAD IMAGES ===== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--forest-green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  background: var(--forest-green);
  color: white;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .btn,
  .booking-card {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  .cabin-content {
    display: block;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}

/* ===== LOGO IMAGE STYLES ===== */
.logo {
  display: flex;
  align-items: center;
  margin-right: -20px;
}

.logo__img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.header--scrolled .logo__img {
  height: 55px;
}

.footer__logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Hide the text span next to logo since logo image has text */
.logo span {
  display: none;
}

.footer__logo span {
  display: none;
}

/* ===== STYLED BOOKING WIDGET ===== */
.booking-widget-styled {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.booking-widget-styled iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* Booking card styling refinements */
/* ===== BOOKING CARD STYLES ===== */
.cabin-sidebar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
  width: 100%;
}

.booking-card__header {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.booking-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.125rem;
}

.booking-card__header p {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gold-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.booking-card__widget {
  padding: 0;
}

/* Clean, minimal iframe container - centered on white background */
.booking-card__widget.booking-widget-styled {
  background: white;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.booking-card__widget.booking-widget-styled iframe {
  width: 100%;
  max-width: 350px;
  border: none;
  display: block;
  margin: 0 auto;
}

/* Responsive adjustments for booking widget */
@media (max-width: 1024px) {
  .cabin-sidebar {
    order: -1;
    margin-bottom: var(--space-xl);
  }
  
  .booking-card {
    position: relative;
    top: 0;
    max-width: 100%;
  }
  
  .booking-widget-styled iframe {
    min-height: 800px;
  }
}

@media (max-width: 640px) {
  .booking-card {
    border-radius: var(--radius-md);
  }
  
  .booking-widget-styled iframe {
    min-height: 900px;
  }
  
  .booking-card__header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .booking-card__header h3 {
    font-size: 1.1rem;
  }
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-modal.active {
  display: flex;
  opacity: 1;
}

.booking-modal__container {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-modal__header {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-modal__header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

.booking-modal__header p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0.25rem 0 0 0;
}

.booking-modal__close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.booking-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.booking-modal__close svg {
  width: 24px;
  height: 24px;
}

.booking-modal__content {
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

.booking-modal__content iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* Mobile modal adjustments */
@media (max-width: 640px) {
  .booking-modal {
    padding: 0;
  }
  
  .booking-modal__container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
  }
  
  .booking-modal__content {
    max-height: calc(100vh - 70px);
  }
  
  .booking-modal__content iframe {
    min-height: calc(100vh - 70px);
  }
}

/* Sticky Book Now Bar - See mobile section for actual implementation */

/* ===== ENHANCED GALLERY STYLES ===== */
.gallery-counter {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ===== CABIN DESCRIPTION ENHANCEMENTS ===== */
.section-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.cabin-description h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--forest-green-dark);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.cabin-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
}

.cabin-features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.cabin-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: bold;
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.amenities-category h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--forest-green-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-accent);
}

.amenities-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-category li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.amenities-category li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--forest-green);
}

/* =====================================================
   MOBILE OPTIMIZATIONS
   Comprehensive mobile-first responsive design
   ===================================================== */

/* ===== GLOBAL MOBILE FIXES ===== */

/* Prevent horizontal overflow on all screens */
html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Better touch targets - minimum 44px */
@media (max-width: 768px) {
  a, button, .btn, input:not([type="hidden"]), select, textarea {
    min-height: 44px;
  }
  
  /* Improve tap highlighting */
  a, button {
    -webkit-tap-highlight-color: rgba(46, 93, 52, 0.2);
  }
}

/* Lock body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ===== MOBILE TYPOGRAPHY ===== */
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.15;
  }
  
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .text-accent {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
}

/* ===== MOBILE CONTAINER ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* ===== MOBILE SECTION SPACING ===== */
@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section--sm {
    padding: var(--space-xl) 0;
  }
  
  :root {
    --space-2xl: 3rem;
    --space-3xl: 4rem;
  }
  
  /* Section header mobile adjustments */
  .section-header {
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-sm);
  }
  
  .section-header__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--space-sm);
  }
  
  .section-header__desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .section-header::after {
    margin-top: var(--space-md);
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }
  
  :root {
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
  }
  
  /* Hero extra small screens */
  .hero {
    padding-top: 0;
  }
  
  .hero__content {
    padding: 75px var(--space-sm) var(--space-sm); /* Top padding for header clearance */
  }
  
  .hero__badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }
  
  .hero__title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  
  .hero__title--modern {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }
  
  .hero__subtitle {
    font-size: 0.8rem;
  }
  
  .hero__cta .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
  
  /* Section header extra small */
  .section-header__title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
  }
  
  .section-header__desc {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE HEADER & NAVIGATION ===== */
/* 
 * CONSOLIDATED MOBILE NAV STYLES
 * Menu Structure:
 * 1. Home -> /
 * 2. Cabins (dropdown) -> 6 cabin pages
 * 3. Search by Size (dropdown) -> 3 size pages  
 * 4. Travel Guide (wide dropdown) -> 13 guide pages
 * 5. About -> about.html
 * 6. FAQ -> faq.html
 * 7. Contact -> contact.html
 */
@media (max-width: 1024px) {
  /* Header adjustments */
  .header {
    padding: 0;
  }
  
  .nav {
    padding: 0.75rem 0;
  }
  
  .logo__img {
    height: 50px;
  }
  
  .header--scrolled .logo__img {
    height: 45px;
  }
  
  /* Hide desktop CTA button on mobile */
  .header .nav__cta {
    display: none !important;
  }

  /* ===== HAMBURGER MENU TOGGLE ===== */
  .nav__toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    z-index: 1002;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
  }
  
  .nav__toggle:hover,
  .nav__toggle:focus {
    background: rgba(46, 93, 52, 0.1);
  }
  
  .nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  /* Hamburger to X animation */
  .nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Dark hamburger on transparent header when menu open */
  .header--transparent .nav__toggle.active span {
    background: var(--text-dark);
  }

  /* ===== MOBILE MENU PANEL ===== */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }
  
  .nav__menu.active {
    right: 0;
  }
  
  /* Dark overlay behind menu */
  .nav__menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  .nav__menu.active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ===== MENU ITEMS ===== */
  .nav__item {
    position: relative;
    border-bottom: 1px solid rgba(46, 93, 52, 0.1);
  }
  
  .nav__item:last-of-type {
    border-bottom: none;
  }

  /* ===== MENU LINKS ===== */
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1A1A1A !important;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .nav__link:hover,
  .nav__link--active {
    color: var(--forest-green) !important;
  }
  
  .nav__link svg {
    width: 18px;
    height: 18px;
    stroke: #1A1A1A !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .nav__item.active .nav__link svg {
    transform: rotate(180deg);
  }

  /* ===== DROPDOWN MENUS ===== */
  .nav__dropdown {
    /* CRITICAL: Override all desktop positioning */
    position: static !important;
    transform: none !important;
    left: unset !important;
    right: unset !important;
    top: unset !important;
    
    /* Reset desktop styles */
    min-width: unset !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    
    /* Mobile dropdown behavior */
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
    
    /* Always visible (controlled by max-height) */
    opacity: 1 !important;
    visibility: visible !important;
    
    /* Smooth expand/collapse */
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  }
  
  /* Expanded dropdown */
  .nav__item.active .nav__dropdown {
    max-height: 500px;
    padding: 0.5rem 0 1rem 0.5rem;
  }
  
  /* Wide dropdown (Travel Guide) - more height */
  .nav__dropdown--wide {
    display: block !important;
    grid-template-columns: unset !important;
  }
  
  .nav__item.active .nav__dropdown--wide {
    max-height: 70vh;
  }

  /* ===== DROPDOWN LINKS ===== */
  .nav__dropdown-link {
    display: block !important;
    width: 100%;
    padding: 0.65rem 0.75rem !important;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A !important;
    text-decoration: none;
    text-align: left;
    border-radius: 4px;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
    /* NO padding transitions - prevents jumping */
  }
  
  .nav__dropdown-link:hover,
  .nav__dropdown-link:focus {
    background: rgba(46, 93, 52, 0.08);
    color: var(--forest-green) !important;
    /* Padding stays the same - no jumping */
  }
  
  /* Wide dropdown first item (Complete Guide) */
  .nav__dropdown--wide .nav__dropdown-link:first-child {
    grid-column: unset !important;
    border-bottom: none;
    margin-bottom: 0;
  }

  /* ===== FORCE DARK TEXT (override transparent header) ===== */
  .header--transparent .nav__menu .nav__link,
  .header--transparent .nav__menu .nav__dropdown-link,
  .header--transparent:not(.header--scrolled) .nav__menu .nav__link,
  .header--transparent:not(.header--scrolled) .nav__menu .nav__dropdown-link {
    color: #1A1A1A !important;
  }
  
  .header--transparent .nav__menu .nav__link svg,
  .header--transparent:not(.header--scrolled) .nav__menu .nav__link svg {
    stroke: #1A1A1A !important;
  }

  /* ===== MOBILE CTA (hidden by default) ===== */
  .nav__cta {
    display: none !important;
  }
}

/* Small mobile navigation adjustments */
@media (max-width: 480px) {
  .nav__menu {
    max-width: 100%;
    padding: 4.5rem 1rem 1.5rem;
  }
  
  .logo__img {
    height: 42px;
  }
}

/* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh; /* Full viewport height on mobile */
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    padding-top: 0; /* Content handles its own spacing */
    padding-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* Overlay covers full hero on mobile */
  .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .hero__content {
    padding: 90px var(--space-sm) var(--space-md); /* 90px top for header clearance */
    max-width: 100%;
    flex: 0 0 auto;
    margin-top: 0;
  }
  
  .hero__badge {
    padding: 0.35rem 0.9rem;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
    margin-top: 15px; /* Extra spacing to prevent header overlap */
  }
  
  .hero__title {
    font-size: clamp(1.3rem, 5.5vw, 1.9rem);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
  }
  
  .hero__title--modern {
    white-space: normal;
    font-size: clamp(1.15rem, 5vw, 1.6rem);
    line-height: 1.25;
  }
  
  .hero__title br {
    display: none;
  }
  
  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }
  
  /* Compact search widget on mobile */
  .hero__search {
    margin: var(--space-xs) auto var(--space-md) !important;
  }
  
  .search-widget {
    padding: var(--space-sm) !important;
    gap: 0.5rem !important;
  }
  
  .search-widget__field label {
    font-size: 0.75rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  .search-widget__date-wrapper,
  .search-widget__select-wrapper {
    padding: 0.6rem 0.85rem !important;
    font-size: 0.9rem !important;
  }
  
  .search-widget__btn {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  /* Hide secondary CTA on mobile - search is primary */
  .hero__cta,
  .mobile-hidden {
    display: none !important;
  }
  
  .hero__scroll {
    display: none;
  }
  
  /* Interior page hero */
  .hero--sm {
    min-height: 40vh;
    padding-top: 80px;
  }
  
  .hero--sm .hero__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 80px 0.75rem var(--space-sm); /* MUST keep top padding for header clearance */
  }
  
  .hero__title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }
  
  .hero__subtitle {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE CABIN HERO ===== */
@media (max-width: 768px) {
  .cabin-hero {
    position: relative !important;
    height: 60vh !important;
    min-height: 400px !important;
    overflow: hidden !important;
    display: block !important;
  }
  
  .cabin-hero__bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
  }
  
  .cabin-hero__overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    background: linear-gradient(
      to top,
      rgba(30, 64, 36, 0.9) 0%,
      rgba(30, 64, 36, 0.5) 40%,
      rgba(30, 64, 36, 0.2) 100%
    ) !important;
  }
  
  .cabin-hero__content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1rem !important;
    z-index: 2 !important;
    color: white !important;
  }
  
  /* Breadcrumb - single line, horizontally scrollable if needed */
  .cabin-hero__breadcrumb {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-size: 0.75rem !important;
    margin-bottom: 0.5rem !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.25rem !important;
  }
  
  .cabin-hero__breadcrumb a,
  .cabin-hero__breadcrumb span {
    color: white !important;
    opacity: 0.9 !important;
    flex-shrink: 0 !important;
  }
  
  .cabin-hero__breadcrumb svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
    opacity: 0.7 !important;
    stroke: white !important;
  }
  
  .cabin-hero__title {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    color: white !important;
  }
  
  .cabin-hero__meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .cabin-hero__meta-item {
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    color: white !important;
  }
  
  .cabin-hero__meta-item svg {
    width: 16px !important;
    height: 16px !important;
    stroke: white !important;
  }
  
  .cabin-hero .btn--lg,
  .cabin-hero .btn--white {
    padding: 0.75rem 1.25rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  .cabin-hero {
    height: 55vh !important;
    min-height: 350px !important;
  }
  
  .cabin-hero__content {
    padding: 0.75rem !important;
  }
  
  .cabin-hero__breadcrumb {
    font-size: 0.7rem !important;
    gap: 0.3rem !important;
  }
  
  .cabin-hero__title {
    font-size: 1.5rem !important;
  }
  
  .cabin-hero__meta-item {
    font-size: 0.75rem !important;
  }
  
  .cabin-hero__meta-item svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* ===== MOBILE SECTION HEADERS ===== */
@media (max-width: 768px) {
  .section-header {
    margin: 0 auto var(--space-xl);
    padding: 0 0.5rem;
  }
  
  .section-header__title {
    margin-bottom: var(--space-sm);
  }
  
  .section-header__desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .section-header::after {
    width: 50px;
    height: 2px;
    margin-top: var(--space-md);
  }
}

/* ===== MOBILE BUTTONS ===== */
@media (max-width: 768px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  
  .btn--lg {
    padding: 1rem 1.75rem;
    font-size: 0.9rem;
  }
  
  .btn--sm {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
  }
  
  /* Full width buttons on very small screens */
  .hero__cta .btn,
  .cta-banner .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ===== MOBILE CABIN CARDS ===== */
@media (max-width: 768px) {
  .cabins-grid {
    gap: var(--space-md);
  }
  
  .cabin-card {
    width: 100%;
  }
  
  .cabin-card__image {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    position: relative;
    overflow: hidden;
  }
  
  .cabin-card__image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }
  
  .cabin-card__content {
    padding: var(--space-md);
  }
  
  .cabin-card__title {
    font-size: 1.25rem;
  }
  
  .cabin-card__amenities {
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  
  .cabin-card__amenity {
    font-size: 0.8rem;
  }
  
  .cabin-card__amenity svg {
    width: 16px;
    height: 16px;
  }
  
  .cabin-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .cabin-card__guests {
    font-size: 0.85rem;
  }
  
  .cabin-card__link {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cabin-card__image {
    padding-bottom: 75%; /* 4:3 aspect ratio for smaller screens */
  }
  
  .cabin-card__title {
    font-size: 1.15rem;
  }
  
  .cabin-card__amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* ===== MOBILE BENEFITS GRID ===== */
@media (max-width: 768px) {
  .benefits-grid {
    gap: var(--space-md);
  }
  
  .benefit-card {
    padding: var(--space-lg);
  }
  
  .benefit-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .benefit-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .benefit-card__title {
    font-size: 1.15rem;
  }
  
  .benefit-card__desc {
    font-size: 0.9rem;
  }
}

/* ===== MOBILE AMENITIES SECTION ===== */
@media (max-width: 768px) {
  .amenities-grid {
    gap: var(--space-sm);
  }
  
  .amenity-card {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .amenity-card__icon {
    width: 44px;
    height: 44px;
  }
  
  .amenity-card__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .amenity-card__title {
    font-size: 1rem;
  }
  
  .amenity-card__desc {
    font-size: 0.85rem;
  }
}

/* ===== MOBILE TESTIMONIALS ===== */
@media (max-width: 768px) {
  .testimonials-slider {
    gap: var(--space-md);
  }
  
  .testimonial-card {
    padding: var(--space-lg);
  }
  
  .testimonial-card__quote {
    width: 32px;
    height: 32px;
    top: 1rem;
    right: 1rem;
  }
  
  .testimonial-card__stars svg {
    width: 18px;
    height: 18px;
  }
  
  .testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  
  .testimonial-card__avatar {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .testimonial-card__name {
    font-size: 0.9rem;
  }
  
  .testimonial-card__cabin {
    font-size: 0.8rem;
  }
}

/* ===== MOBILE BLOG CARDS ===== */
@media (max-width: 768px) {
  .blog-grid {
    gap: var(--space-md);
  }
  
  .blog-card__image {
    height: 180px;
  }
  
  .blog-card__content {
    padding: var(--space-md);
  }
  
  .blog-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-card__excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
  
  .blog-card__meta {
    font-size: 0.8rem;
  }
}

/* ===== MOBILE BOOKING SECTION ===== */
@media (max-width: 768px) {
  .booking-widget {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .booking-widget iframe {
    min-height: 700px;
  }
}

/* ===== MOBILE CTA BANNER ===== */
@media (max-width: 768px) {
  .cta-banner {
    padding: var(--space-2xl) 0;
    background-attachment: scroll; /* Fix parallax issues on mobile */
  }
  
  .cta-banner__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .cta-banner__desc {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 768px) {
  .footer {
    padding-top: var(--space-2xl);
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
    padding-bottom: var(--space-xl);
  }
  
  .footer__brand {
    max-width: 100%;
  }
  
  .footer__logo {
    justify-content: center;
  }
  
  .footer__logo-img {
    height: 50px;
  }
  
  .footer__desc {
    font-size: 0.9rem;
    max-width: 320px;
    margin: 0 auto var(--space-md);
  }
  
  .footer__social {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .footer__social a {
    width: 48px;
    height: 48px;
  }
  
  .footer__title {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
  }
  
  .footer__links {
    gap: 0.5rem;
  }
  
  .footer__link {
    font-size: 0.9rem;
    padding: 0.25rem 0;
  }
  
  .footer__link:hover {
    padding-left: 0;
  }
  
  .footer__contact-item {
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    padding: var(--space-md) 0;
    font-size: 0.8rem;
  }
  
  .footer__legal {
    gap: 1.5rem;
  }
}

/* ===== MOBILE CABIN CONTENT LAYOUT ===== */
@media (max-width: 1024px) {
  .cabin-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
  }
  
  /* FIX: On mobile, booking widget goes AFTER photos/description, not before */
  .cabin-main {
    order: 1;
  }
  
  .cabin-sidebar {
    order: 2;
    margin-bottom: 0;
  }
  
  .booking-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .cabin-content {
    padding: var(--space-md) 0;
  }
}

/* Add bottom padding when sticky bar is present (cabin pages) */
body:has(.sticky-book-bar) main {
  padding-bottom: 70px;
}

/* Fallback for browsers without :has() support */
@supports not selector(:has(*)) {
  .cabin-content ~ .sticky-book-bar ~ * {
    padding-bottom: 70px;
  }
}

/* ===== MOBILE GALLERY ===== */
@media (max-width: 768px) {
  .cabin-gallery {
    margin-bottom: var(--space-lg);
  }
  
  .gallery-main {
    border-radius: var(--radius-md);
    height: 280px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
  
  .gallery-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .gallery-nav--prev {
    left: 0.5rem;
  }
  
  .gallery-nav--next {
    right: 0.5rem;
  }
  
  .gallery-counter {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    bottom: 0.75rem;
    right: 0.75rem;
  }
  
  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.4rem;
    max-height: 280px;
    padding: var(--space-xs);
  }
  
  .gallery-thumb img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .gallery-main {
    height: 240px;
  }
  
  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    max-height: 200px;
  }
  
  .gallery-thumb img {
    height: 45px;
  }
}

/* ===== MOBILE CABIN DESCRIPTION ===== */
@media (max-width: 768px) {
  .cabin-description {
    margin-bottom: var(--space-xl);
  }
  
  .cabin-description h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .cabin-description h3 {
    font-size: 1.15rem;
    margin-top: var(--space-md);
  }
  
  .cabin-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .section-badge {
    font-size: 0.75rem;
  }
  
  .cabin-features-list li {
    padding-left: 1.25rem;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
  }
}

/* ===== MOBILE CABIN AMENITIES ===== */
@media (max-width: 768px) {
  .cabin-amenities {
    margin-bottom: var(--space-xl);
  }
  
  .cabin-amenities h2 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .amenities-category h4 {
    font-size: 1rem;
  }
  
  .amenities-category li {
    font-size: 0.9rem;
    padding: 0.35rem 0 0.35rem 1rem;
  }
  
  .amenities-list {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .amenities-list__item {
    padding: 0.875rem;
  }
  
  .amenities-list__item svg {
    width: 20px;
    height: 20px;
  }
  
  .amenities-list__item span {
    font-size: 0.9rem;
  }
}

/* ===== MOBILE FAQ ACCORDION ===== */
@media (max-width: 768px) {
  .cabin-faq {
    margin-bottom: var(--space-xl);
  }
  
  .cabin-faq h2 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }
  
  .accordion {
    border-radius: var(--radius-md);
  }
  
  .accordion__header {
    padding: 1rem var(--space-md);
    font-size: 0.9rem;
  }
  
  .accordion__header svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .accordion__body {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* ===== MOBILE CONTACT PAGE ===== */
@media (max-width: 768px) {
  .contact-grid {
    gap: var(--space-lg);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .form-group label {
    font-size: 0.8rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.875rem;
    font-size: 16px; /* Prevent iOS zoom */
  }
  
  .contact-info__card {
    padding: var(--space-md);
    gap: var(--space-sm);
  }
  
  .contact-info__icon {
    width: 44px;
    height: 44px;
  }
  
  .contact-info__icon svg {
    width: 22px;
    height: 22px;
  }
  
  .contact-info__title {
    font-size: 0.85rem;
  }
  
  .contact-info__text {
    font-size: 0.9rem;
  }
  
  .contact-map iframe {
    height: 280px;
  }
}

/* ===== MOBILE BOOKING MODAL ===== */
@media (max-width: 640px) {
  .booking-modal {
    padding: 0;
    align-items: flex-end;
  }
  
  .booking-modal__container {
    max-width: 100%;
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    height: auto;
  }
  
  .booking-modal__header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .booking-modal__header h3 {
    font-size: 1.25rem;
  }
  
  .booking-modal__header p {
    font-size: 0.75rem;
  }
  
  .booking-modal__close {
    width: 36px;
    height: 36px;
  }
  
  .booking-modal__close svg {
    width: 20px;
    height: 20px;
  }
  
  .booking-modal__content {
    max-height: calc(95vh - 70px);
  }
  
  .booking-modal__content iframe {
    min-height: calc(95vh - 70px);
  }
}

/* ===== STICKY BOOK NOW BAR ===== */
.sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-book-bar.visible {
  transform: translateY(0);
}

.sticky-book-bar__info {
  display: flex;
  flex-direction: column;
}

.sticky-book-bar__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sticky-book-bar__subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.sticky-book-bar .btn {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .sticky-book-bar {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
}

@media (max-width: 640px) {
  .sticky-book-bar {
    padding: 0.75rem var(--space-sm);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    justify-content: center;
  }
  
  .sticky-book-bar__info {
    display: none;
  }
  
  .sticky-book-bar .btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    text-align: center;
  }
}

/* ===== MOBILE ABOUT PAGE ===== */
@media (max-width: 768px) {
  .about-intro {
    gap: var(--space-lg);
  }
  
  .about-intro__image {
    max-height: 300px;
  }
  
  .about-intro__content h2 {
    font-size: 1.5rem;
  }
  
  .about-intro__content p {
    font-size: 0.95rem;
  }
  
  .values-grid {
    gap: var(--space-md);
  }
  
  .value-card {
    padding: var(--space-lg);
  }
  
  .value-card__icon {
    width: 60px;
    height: 60px;
  }
  
  .value-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .value-card__title {
    font-size: 1.15rem;
  }
  
  .value-card__desc {
    font-size: 0.9rem;
  }
}

/* ===== MOBILE FAQ PAGE ===== */
@media (max-width: 768px) {
  .faq-categories {
    gap: 0.4rem;
    margin-bottom: var(--space-lg);
  }
  
  .faq-category {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

/* ===== MOBILE BLOG PAGE ===== */
@media (max-width: 768px) {
  .blog-hero {
    padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
  }
  
  .blog-list {
    gap: var(--space-md);
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .blog-post-card__image {
    height: 180px;
  }
  
  .blog-post-card__content {
    padding: var(--space-md);
  }
  
  .blog-article {
    padding: 0;
  }
  
  .blog-article__header {
    margin-bottom: var(--space-lg);
  }
  
  .blog-article__category {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
  
  .blog-article__title {
    font-size: 1.5rem;
  }
  
  .blog-article__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-article__featured {
    margin-bottom: var(--space-lg);
  }
  
  .blog-article__content {
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .blog-article__content h2 {
    font-size: 1.35rem;
    margin-top: var(--space-xl);
  }
  
  .blog-article__content h3 {
    font-size: 1.15rem;
  }
  
  .blog-article__content blockquote {
    padding: var(--space-md) var(--space-lg);
    font-size: 1.05rem;
  }
}

/* ===== MOBILE TOUCH ENHANCEMENTS ===== */
@media (max-width: 1024px) {
  /* Disable hover effects on touch devices */
  @media (hover: none) {
    .cabin-card:hover {
      transform: none;
    }
    
    .cabin-card:hover .cabin-card__image img {
      transform: none;
    }
    
    .btn--primary:hover,
    .btn--secondary:hover,
    .btn--accent:hover {
      transform: none;
    }
    
    .benefit-card:hover {
      transform: none;
    }
    
    .amenity-card:hover {
      transform: none;
    }
    
    .blog-card:hover {
      transform: none;
    }
  }
  
  /* Active states for touch */
  .cabin-card:active {
    transform: scale(0.98);
  }
  
  .btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }
}

/* ===== GALLERY TOUCH SWIPE INDICATOR ===== */
@media (max-width: 768px) {
  .gallery-main {
    position: relative;
    cursor: pointer;
  }
  
  .gallery-main::after {
    content: 'Tap to enlarge';
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  
  .gallery-main.swiped::after {
    opacity: 0;
  }
}

/* ===== GALLERY LIGHTBOX / FULLSCREEN ===== */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

.gallery-lightbox__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__image {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.gallery-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox__close svg {
  width: 28px;
  height: 28px;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox__nav svg {
  width: 28px;
  height: 28px;
}

.gallery-lightbox__nav--prev {
  left: 1rem;
}

.gallery-lightbox__nav--next {
  right: 1rem;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.gallery-lightbox__hint {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
  }
  
  .gallery-lightbox__nav--prev {
    left: 0.5rem;
  }
  
  .gallery-lightbox__nav--next {
    right: 0.5rem;
  }
  
  .gallery-lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
  }
  
  .gallery-lightbox__image {
    max-width: 100vw;
    max-height: 80vh;
    border-radius: 0;
  }
  
  .gallery-lightbox__hint {
    display: none;
  }
}

/* ===== iOS SPECIFIC FIXES ===== */
@supports (-webkit-touch-callout: none) {
  /* iOS-specific styles */
  .hero {
    min-height: -webkit-fill-available;
  }
  
  .nav__menu {
    height: -webkit-fill-available;
  }
  
  /* Fix iOS input zoom */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px;
  }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 896px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 100px 0 60px;
  }
  
  .hero__title {
    font-size: 1.75rem;
  }
  
  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
  }
  
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero__cta .btn {
    width: auto;
    min-width: 160px;
  }
  
  .cabin-hero {
    height: 60vh;
    min-height: 280px;
  }
}

/* ===== PRINT MEDIA UPDATES ===== */
@media print {
  .sticky-book-bar,
  .booking-modal,
  .nav__toggle {
    display: none !important;
  }
}

/* =====================================================
   HERO SEARCH WIDGET STYLES
   Hospitable Direct Property Search Integration
   ===================================================== */

/* Hero Search Container */
.hero__search {
  width: 100%;
  max-width: 900px;
  margin: var(--space-lg) auto var(--space-xl);
  padding: 0 var(--space-sm);
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

/* Style the Hospitable widget container */
.hero__search hospitable-direct-mps {
  display: block;
  width: 100%;
}

/* Override default Hospitable widget styles for better integration */
.hero__search ::part(container),
.hero__search [part="container"] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
  padding: var(--space-md);
}

/* Attempt to style shadow DOM elements - these may or may not work depending on widget structure */
.hero__search input,
.hero__search select,
.hero__search button {
  font-family: var(--font-body) !important;
}

/* Fallback styling wrapper if widget doesn't accept ::part styling */
.hero__search {
  position: relative;
}

.hero__search::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__search:hover::before {
  opacity: 1;
}

/* Mobile Hero Search Adjustments */
@media (max-width: 768px) {
  .hero__search {
    max-width: 100%;
    margin: var(--space-sm) auto var(--space-md);
    padding: 0;
  }
}

@media (max-width: 480px) {
  .hero__search {
    margin: var(--space-xs) auto var(--space-sm);
  }
  
  .hero__subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* =====================================================
   SEARCH RESULTS PAGE STYLES
   ===================================================== */

/* Search Results Hero */
.search-hero {
  min-height: 180px;
  padding-top: 80px;
  padding-bottom: 1.5rem;
}

.search-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 50%, var(--warm-brown-dark) 100%);
  z-index: -2;
}

.search-hero .hero__title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-hero .hero__subtitle {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Search Results Section */
.search-results-section {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--soft-gray);
  min-height: 60vh;
}

.search-results-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  min-height: 400px;
}

.search-results-wrapper hospitable-direct-mps {
  display: block;
  width: 100%;
}

.search-results-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.search-results-cta p {
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

/* Why Direct Compact Version */
.why-direct--compact {
  padding: var(--space-xl) 0;
}

.why-direct--compact .benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold-accent);
}

/* Mobile Search Results */
@media (max-width: 768px) {
  .search-hero {
    min-height: 140px;
    padding-top: 70px;
    padding-bottom: 1rem;
  }
  
  .search-hero .hero__title {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 1;
  }
  
  .search-hero .hero__subtitle {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 1;
  }
  
  .search-results-section {
    padding: var(--space-lg) 0 var(--space-2xl);
  }
  
  .search-results-wrapper {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: 0 calc(-1 * var(--space-sm));
  }
  
  .search-results-cta {
    margin-top: var(--space-lg);
  }
  
  .search-results-cta p {
    font-size: 0.9rem;
  }
  
  .why-direct--compact {
    padding: var(--space-lg) 0;
  }
  
  .why-direct--compact .benefits-row {
    gap: var(--space-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--space-md);
  }
  
  .benefit-item {
    font-size: 0.8rem;
    gap: var(--space-xs);
  }
  
  .benefit-item svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .search-results-wrapper {
    padding: var(--space-sm);
  }
  
  .why-direct--compact .benefits-row {
    gap: var(--space-sm);
  }
}

/* =====================================================
   CUSTOM CABIN SEARCH WIDGET
   Glassmorphic design with mountain luxury aesthetic
   ===================================================== */

/* Search Widget Form */
.search-widget {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: visible;
  position: relative;
  max-width: 950px;
  margin: 0 auto;
}

.search-widget__field {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.search-widget__field--guests {
  min-width: 130px;
  flex: 0 0 auto;
}

.search-widget__field label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-green);
}

/* Date Wrapper with icon */
.search-widget__date-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  background: white;
  cursor: pointer;
  transition: border-color 0.2s ease;
  height: 54px;
  box-sizing: border-box;
}

.search-widget__date-wrapper:hover,
.search-widget__date-wrapper:focus-within {
  border-color: var(--forest-green);
}

.search-widget__date-wrapper svg {
  width: 22px;
  height: 22px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.search-widget__date-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  cursor: pointer;
  outline: none;
  min-width: 0;
  width: 100%;
}

.search-widget__date-wrapper input::placeholder {
  color: var(--text-medium) !important;
}

/* Flatpickr altInput styling - ensure dark text on light background */
.search-widget__date-wrapper input.flatpickr-input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

.search-widget__date-wrapper .flatpickr-input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

/* Guest select wrapper */
.search-widget__select-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  background: white;
  transition: all 0.2s ease;
  height: 54px;
  box-sizing: border-box;
}

.search-widget__select-wrapper:hover,
.search-widget__select-wrapper:focus-within {
  border-color: var(--forest-green-light);
}

.search-widget__select-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.search-widget__select-wrapper select {
  flex: 1;
  padding: 0.5rem 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.search-widget__select-wrapper select:focus {
  outline: none;
}

/* Hidden label for button alignment */
.search-widget__label--hidden {
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1;
}

.search-widget__field--btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: flex-end;
}

.search-widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 54px;
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-dark));
  color: white;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
  box-sizing: border-box;
}

.search-widget__btn svg {
  width: 22px;
  height: 22px;
}

.search-widget__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 93, 52, 0.35);
}

.search-widget__btn:active {
  transform: translateY(0);
}

/* Hero Search Container - layout adjustments */
.hero__search {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  width: 100%;
  max-width: 950px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   FLATPICKR CALENDAR CUSTOMIZATION
   Large, user-friendly date picker styling
   ===================================================== */

.flatpickr-calendar {
  font-family: var(--font-body) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
  border: none !important;
  width: 340px !important;
  padding: 0.5rem !important;
  background: white !important;
  z-index: 99999 !important;
}

.flatpickr-calendar.cabin-search-calendar {
  margin-top: 8px;
}

/* Calendar positioning - centered on search widget */
.search-widget__field--date {
  position: relative;
}

/* Make calendar appear centered on search widget */
.flatpickr-calendar.cabin-search-calendar {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 999999 !important;
}

/* Calendar title */
.flatpickr-calendar-title {
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-forest);
  border-bottom: 1px solid var(--soft-gray);
  margin-bottom: 0.5rem;
}

/* Calendar backdrop */
.flatpickr-calendar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999998;
}

/* Dark theme search widget for booking section */
.search-widget--dark {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-widget--dark .search-widget__field label {
  color: var(--forest-green);
}

.search-widget--dark .search-widget__date-wrapper {
  background: white;
  border-color: var(--soft-gray);
}

.search-widget--dark .search-widget__date-wrapper:hover,
.search-widget--dark .search-widget__date-wrapper:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
}

.search-widget--dark .search-widget__date-wrapper svg {
  color: var(--gold-accent);
}

.search-widget--dark .search-widget__date-wrapper input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

.search-widget--dark .search-widget__date-wrapper input.flatpickr-input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

.search-widget--dark .search-widget__date-wrapper input::placeholder {
  color: var(--text-medium) !important;
}

.search-widget--dark .search-widget__select-wrapper {
  background: white;
  border-color: var(--soft-gray);
}

.search-widget--dark .search-widget__select-wrapper:hover,
.search-widget--dark .search-widget__select-wrapper:focus-within {
  border-color: var(--forest-green-light);
}

.search-widget--dark .search-widget__select-wrapper svg {
  color: var(--forest-green);
}

.search-widget--dark .search-widget__select-wrapper select {
  color: var(--text-dark);
}

.search-widget--dark .search-widget__select-wrapper select option {
  color: var(--text-dark);
  background: white;
}

.search-widget--dark .search-widget__btn {
  background: linear-gradient(135deg, var(--gold-accent), #d4a855);
  color: var(--forest-green-dark);
}

/* Month navigation */
.flatpickr-months {
  padding: 0.75rem 0.5rem !important;
  border-bottom: 1px solid var(--soft-gray);
  margin-bottom: 0.5rem;
}

.flatpickr-months .flatpickr-month {
  height: 40px !important;
}

.flatpickr-current-month {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  padding: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

.flatpickr-current-month input.cur-year {
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
}

/* Navigation arrows */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  width: 40px !important;
  height: 40px !important;
  padding: 8px !important;
  border-radius: var(--radius-md) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: var(--soft-gray) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 20px !important;
  height: 20px !important;
  fill: var(--text-dark) !important;
}

/* Weekday headers */
.flatpickr-weekdays {
  padding: 0.5rem 0 !important;
}

.flatpickr-weekday {
  font-family: var(--font-accent) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  text-transform: uppercase !important;
}

/* Day cells */
.flatpickr-days {
  width: 100% !important;
}

.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-day {
  width: 44px !important;
  height: 44px !important;
  line-height: 42px !important;
  margin: 2px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border-radius: var(--radius-md) !important;
  transition: all 0.15s ease !important;
}

.flatpickr-day:hover {
  background: var(--soft-gray) !important;
  border-color: var(--soft-gray) !important;
}

.flatpickr-day.today {
  border-color: var(--forest-green) !important;
  background: transparent !important;
}

.flatpickr-day.today:hover {
  background: var(--forest-green-light) !important;
  color: white !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--forest-green) !important;
  border-color: var(--forest-green) !important;
  color: white !important;
  font-weight: 600 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--text-light) !important;
  opacity: 0.4 !important;
  text-decoration: line-through !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: var(--text-light) !important;
  opacity: 0.5 !important;
}

/* Alt input styling - ensure visibility */
.flatpickr-input.flatpickr-mobile {
  display: none !important;
}

/* Style all Flatpickr inputs to have dark text (light theme) */
input.flatpickr-input,
.flatpickr-input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
}

/* Specifically target Flatpickr altInput in search widget */
.search-widget .flatpickr-input,
.search-widget input.flatpickr-input {
  color: var(--text-dark) !important;
  -webkit-text-fill-color: var(--text-dark) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/* Dark theme Flatpickr inputs - white text */
.search-widget--dark .flatpickr-input,
.search-widget--dark input.flatpickr-input {
  color: white !important;
  -webkit-text-fill-color: white !important;
}

/* =====================================================
   SEARCH RESULTS PAGE STYLES
   ===================================================== */

/* Search Hero */
.search-hero {
  min-height: 180px;
  position: relative;
  padding-top: 80px;
  padding-bottom: 1.5rem;
}

.search-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 50%, var(--forest-green-light) 100%);
  opacity: 1;
}

.search-hero .hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-hero .hero__subtitle {
  font-size: 1.1rem;
  opacity: 1;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Search Summary Bar */
.search-summary-bar {
  background: white;
  border-bottom: 1px solid var(--soft-gray);
  padding: var(--space-sm) 0;
  position: sticky;
  top: 60px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.search-summary-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inline search widget on results page */
.search-widget--inline {
  padding: var(--space-sm) var(--space-md);
  background: var(--soft-gray);
  box-shadow: none;
}

.search-widget--inline .search-widget__field {
  min-width: auto;
}

.search-widget--inline label {
  font-size: 0.7rem;
}

.search-widget--inline .search-widget__date-wrapper,
.search-widget--inline .search-widget__select-wrapper {
  padding: 0.6rem 1rem;
  height: 46px;
}

.search-widget--inline .search-widget__btn {
  padding: 0 1.25rem;
  height: 46px;
  font-size: 0.85rem;
}

.search-summary {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.search-summary__dates {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.search-summary__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.search-summary__value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.search-summary__arrow {
  font-size: 1.25rem;
  color: var(--forest-green);
  font-weight: bold;
}

.search-summary__details {
  display: flex;
  gap: 0.75rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  padding-left: var(--space-md);
  border-left: 1px solid var(--soft-gray);
}

.search-summary__modify {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--soft-gray);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-summary__modify:hover {
  background: var(--forest-green);
  color: white;
}

.search-summary__modify svg {
  width: 18px;
  height: 18px;
}

/* Search Results Section */
.search-results-section {
  padding: var(--space-xl) 0 var(--space-3xl);
  background: var(--warm-white);
  min-height: 60vh;
}

.search-results {
  max-width: 1100px;
  margin: 0 auto;
}

/* Results Section */
.results-section {
  margin-bottom: var(--space-2xl);
}

.results-section__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.results-section__title svg {
  width: 28px;
  height: 28px;
}

.results-section__title--muted {
  color: var(--text-light);
}

.results-section__subtitle {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.results-grid--unavailable {
  opacity: 0.75;
}

/* Result Card */
.result-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.result-card--available:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.result-card--unavailable {
  filter: grayscale(0.4);
}

.result-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}

.result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.result-card--available:hover .result-card__image img {
  transform: scale(1.05);
}

.result-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card__overlay span {
  background: rgba(139, 69, 43, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-card__price-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--forest-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.result-card__price-note {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0;
}

.result-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.result-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* Amenity Icons Grid */
.result-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: var(--soft-gray);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 0.2s ease;
}

.amenity-icon svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.amenity-icon span {
  white-space: nowrap;
}

.result-card--available:hover .amenity-icon {
  background: var(--forest-green-light);
  background: rgba(46, 93, 52, 0.1);
}

.result-card__meta {
  display: flex;
  gap: var(--space-md);
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.result-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.result-card__meta svg {
  width: 16px;
  height: 16px;
  color: var(--forest-green);
}

.result-card__pricing {
  background: var(--soft-gray);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.result-card__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.result-card__total-label {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.result-card__total-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
}

.result-card__avg {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

.result-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: auto;
}

.result-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.result-card__cta:hover svg {
  transform: translateX(5px);
}

/* Loading State */
.search-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.search-loading__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--soft-gray);
  border-top-color: var(--forest-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-md);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.search-loading p {
  font-size: 1.1rem;
  color: var(--text-medium);
}

/* Error State */
.search-error,
.no-results,
.no-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.search-error svg,
.no-results svg,
.no-search svg {
  width: 60px;
  height: 60px;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.search-error h3,
.no-results h3,
.no-search h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.search-error p,
.no-results p,
.no-search p {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  max-width: 400px;
}

/* Modify Search Modal */
.modify-search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modify-search-modal__content {
  background: white;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 450px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modify-search-modal.active .modify-search-modal__content {
  transform: translateY(0);
}

.modify-search-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--soft-gray);
}

.modify-search-modal__header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
}

.modify-search-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-medium);
  transition: color 0.2s ease;
}

.modify-search-modal__close:hover {
  color: var(--text-dark);
}

.modify-search-modal__close svg {
  width: 24px;
  height: 24px;
}

.modify-search-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.modify-search-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.modify-search-form__field label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-green);
}

.modify-search-form__field input,
.modify-search-form__field select {
  padding: 0.85rem 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s ease;
}

.modify-search-form__field input:focus,
.modify-search-form__field select:focus {
  outline: none;
  border-color: var(--forest-green);
}

/* Modify modal date display */
.modify-date-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modify-date-display:hover {
  border-color: var(--forest-green-light);
  background: var(--warm-white);
}

.modify-date-display svg {
  width: 20px;
  height: 20px;
  color: var(--forest-green);
  flex-shrink: 0;
}

.modify-date-display .date-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
}

.modify-date-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.modify-search-form button {
  margin-top: var(--space-sm);
}

/* Responsive Search Widget */
@media (max-width: 900px) {
  .search-widget {
    flex-wrap: wrap;
  }
  
  .search-widget__field--date {
    flex: 1;
    min-width: calc(50% - var(--space-md));
  }
  
  .search-widget__field--guests {
    flex: 0 0 auto;
    min-width: 140px;
  }
  
  .search-widget__btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .search-widget {
    padding: var(--space-md);
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .search-widget__field {
    min-width: 100%;
  }
  
  .search-widget__field--date {
    flex: 1;
    min-width: calc(50% - var(--space-sm));
  }
  
  .search-widget__field--guests {
    min-width: 100%;
  }
  
  .search-widget__btn {
    width: 100%;
    margin-top: var(--space-xs);
  }
  
  /* Flatpickr mobile adjustments */
  .flatpickr-calendar {
    width: 100% !important;
    max-width: 320px !important;
  }
  
  .flatpickr-day {
    width: 40px !important;
    height: 40px !important;
    line-height: 38px !important;
  }
  
  .search-summary-bar {
    position: static;
  }
  
  .search-summary-bar .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-summary {
    justify-content: center;
  }
  
  .search-summary__details {
    border-left: none;
    padding-left: 0;
    justify-content: center;
  }
  
  .search-summary__modify {
    justify-content: center;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .result-card__pricing {
    padding: 0.75rem;
  }
  
  .result-card__amenities {
    gap: 0.4rem;
  }
  
  .amenity-icon {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .amenity-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .search-widget__field--date {
    min-width: 100%;
  }
  
  .search-summary {
    flex-direction: column;
    text-align: center;
  }
  
  .search-summary__arrow {
    transform: rotate(90deg);
  }
}

/* =====================================================
   GOOGLE AI OVERVIEW (SGE) OPTIMIZATION STYLES
   Quick Answer Boxes, Comparison Tables, PAA Sections
   ===================================================== */

/* ===== QUICK ANSWER BOX - Featured Snippet Optimization ===== */
.quick-answer {
  background: linear-gradient(135deg, #f8faf8 0%, #eef4ee 100%);
  border: 2px solid var(--forest-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0 0 3rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(46, 93, 52, 0.1);
}

.quick-answer::before {
  content: "QUICK ANSWER";
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--forest-green);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}

.quick-answer__question {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--forest-green-dark);
  margin: 0 0 1rem;
  padding-right: 2rem;
  line-height: 1.3;
}

.quick-answer__answer {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  font-weight: 500;
}

.quick-answer__answer strong {
  color: var(--forest-green-dark);
}

.quick-answer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  background: var(--forest-green);
  color: white;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.quick-answer__cta:hover {
  background: var(--forest-green-dark);
  transform: translateX(4px);
}

.quick-answer__cta svg {
  width: 16px;
  height: 16px;
}

/* ===== COMPARISON TABLES - SGE Optimized ===== */
.comparison-section {
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
}

.comparison-section__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--forest-green-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.comparison-section__subtitle {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
}

.comparison-table th {
  color: white;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: none;
}

.comparison-table th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--text-medium);
  background: white;
  vertical-align: top;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius-md);
}

.comparison-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--radius-md) 0;
}

.comparison-table tbody tr:hover td {
  background: #f9faf9;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  background: #f5f7f5;
}

.comparison-table .check {
  color: var(--forest-green);
  font-weight: 700;
}

.comparison-table .highlight {
  background: rgba(46, 93, 52, 0.08);
  font-weight: 600;
  color: var(--forest-green-dark);
}

.comparison-table .winner {
  position: relative;
}

.comparison-table .winner::after {
  content: "★";
  margin-left: 0.5rem;
  color: var(--gold-accent);
}

/* Responsive comparison table */
@media (max-width: 768px) {
  .comparison-section {
    padding: 1.5rem 1rem;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.75rem;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
  }
}

/* ===== PEOPLE ALSO ASK SECTION ===== */
.paa-section {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(180deg, #fafbfa 0%, #f5f7f5 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 93, 52, 0.1);
}

.paa-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.paa-section__badge {
  display: inline-block;
  background: var(--gold-accent);
  color: var(--forest-green-dark);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.paa-section__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--forest-green-dark);
  margin: 0;
}

.paa-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.paa-item {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.paa-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.paa-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: white;
  cursor: pointer;
  transition: background 0.2s ease;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.paa-item__question:hover {
  background: #f9faf9;
}

.paa-item__question-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: 1rem;
  line-height: 1.4;
}

.paa-item__icon {
  width: 24px;
  height: 24px;
  color: var(--forest-green);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.paa-item.is-open .paa-item__icon {
  transform: rotate(180deg);
}

.paa-item__answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.paa-item.is-open .paa-item__answer {
  display: block;
}

.paa-item__answer p {
  margin: 1rem 0 0;
}

.paa-item__answer p:first-child {
  margin-top: 1rem;
}

.paa-item__answer strong {
  color: var(--text-dark);
}

.paa-item__answer ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.paa-item__answer li {
  margin-bottom: 0.5rem;
}

/* ===== KEY TAKEAWAYS BOX ===== */
.key-takeaways {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-left: 4px solid var(--gold-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin: 2.5rem 0;
}

.key-takeaways__title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.key-takeaways__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.key-takeaways__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.key-takeaways__list li:last-child {
  margin-bottom: 0;
}

.key-takeaways__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
}

/* ===== AT A GLANCE BOX - For quick stats ===== */
.at-a-glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: var(--forest-green);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.at-a-glance__item {
  text-align: center;
  padding: 1rem;
}

.at-a-glance__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.at-a-glance__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 0.25rem;
}

/* ===== FEATURED QUESTION - Inline style ===== */
.featured-question {
  background: #fffdf5;
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.featured-question__q {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--forest-green-dark);
  margin: 0 0 0.75rem;
}

.featured-question__a {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* ===== VERDICT BOX - For comparison conclusions ===== */
.verdict-box {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: center;
}

.verdict-box__title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.verdict-box__headline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white !important;
}

.verdict-box__text {
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.95) !important;
}

/* ===== PROS/CONS TABLE ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-cons__col {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.pros-cons__header {
  padding: 1rem 1.25rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pros-cons__col--pros .pros-cons__header {
  background: var(--forest-green);
  color: white;
}

.pros-cons__col--cons .pros-cons__header {
  background: #e8e4d9;
  color: var(--warm-brown-dark);
}

.pros-cons__list {
  padding: 1.25rem;
  margin: 0;
  list-style: none;
}

.pros-cons__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pros-cons__list li:last-child {
  margin-bottom: 0;
}

.pros-cons__col--pros .pros-cons__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.pros-cons__col--cons .pros-cons__list li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--rustic-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.result-card__amenities {
  justify-content: center;
}


/* =====================================================
   INQUIRY FORM STYLES
   ===================================================== */

.inquiry-form-container {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.inquiry-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.inquiry-form-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.inquiry-form-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.6;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .inquiry-form-container {
    padding: 2rem 1.5rem;
  }
}

.inquiry-form .form-group {
  margin-bottom: 1.25rem;
}

.inquiry-form label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--soft-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.2s ease;
  background: white;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(73, 112, 89, 0.15);
}

.inquiry-form textarea {
  min-height: 140px;
  resize: vertical;
}

.inquiry-form-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.inquiry-form-note a {
  color: var(--forest-green);
  font-weight: 600;
}

/* Cabin Page Inquiry Section */
.cabin-inquiry-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, #3d5c49 100%);
  padding: 4rem 0;
  margin-top: 3rem;
}

.cabin-inquiry-section .container {
  max-width: 800px;
}

.cabin-inquiry-section .inquiry-form-container {
  background: white;
}

.cabin-inquiry-section .inquiry-form-header h2 {
  color: var(--text-dark);
}

.cabin-inquiry-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
}

.cabin-inquiry-section .section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.cabin-inquiry-section .section-intro h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: white;
  margin-bottom: 0.75rem;
}

.cabin-inquiry-section .section-intro p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Sticky Contact Button for Cabin Pages */
.sticky-contact-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--forest-green);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--forest-green);
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(150px);
  opacity: 0;
}

.sticky-contact-btn.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-contact-btn:hover {
  background: var(--forest-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.sticky-contact-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .sticky-contact-btn {
    bottom: 80px;
    right: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .sticky-contact-btn span {
    display: none;
  }
  
  .sticky-contact-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* Adjust sticky book bar when contact button is also showing */
.sticky-book-bar {
  z-index: 100;
}

/* =====================================================
   SEO LANDING PAGES - Long-Tail Keyword Pages
   Styles for algorithmically-generated landing pages
   ===================================================== */

/* ===== LANDING PAGE HERO ===== */
.landing-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
}

.landing-hero--short {
  min-height: 40vh;
  padding: 100px 0 60px;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.landing-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.landing-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.landing-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.landing-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ===== CONTENT STYLES ===== */
.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-narrow h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--forest-green-dark);
  margin-bottom: 1rem;
}

.content-narrow h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--forest-green-dark);
  margin: 2rem 0 0.75rem;
}

.content-narrow h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}

.content-narrow p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.content-narrow ul,
.content-narrow ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-medium);
}

.content-narrow li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f0e8 100%);
  border: 2px solid var(--forest-green-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--forest-green-dark);
  margin: 0 0 1rem;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-medium);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== CABIN FEATURE GRID ===== */
.cabin-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2rem 0;
}

.cabin-feature-gallery img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.cabin-feature-details h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--forest-green-dark);
  margin-bottom: 1rem;
}

.cabin-feature-details h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 1.5rem 0 0.75rem;
}

.cabin-feature-details p {
  color: var(--text-medium);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .cabin-feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== SECTION VARIATIONS ===== */
.section--gray {
  background: var(--soft-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .landing-hero {
    min-height: 50vh;
    padding: 100px 0 60px;
  }
  
  .landing-hero__title {
    font-size: 2rem;
  }
  
  .landing-hero__subtitle {
    font-size: 1.1rem;
  }
  
  .landing-hero__badges {
    gap: 0.5rem;
  }
  
  .landing-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }
  
  .content-narrow h2 {
    font-size: 1.75rem;
  }
  
  .highlight-box {
    padding: 1.5rem;
  }
}

/* =====================================================
   GUEST REVIEWS SECTION - SEO Optimized
   With proper Schema.org structured data support
   ===================================================== */

/* ===== REVIEWS SECTION ===== */
.cabin-reviews {
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid rgba(46, 93, 52, 0.1);
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(46, 93, 52, 0.15);
}

.reviews-header__left h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--forest-green-dark);
  margin-bottom: 0.5rem;
}

.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.reviews-stars {
  display: flex;
  gap: 2px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: #D4A853;
}

.reviews-count {
  font-size: 1rem;
  color: var(--text-medium);
}

.reviews-count strong {
  color: var(--forest-green-dark);
  font-weight: 700;
}

.reviews-platforms {
  display: flex;
  align-items: center;
}

.reviews-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(46, 93, 52, 0.25);
}

.reviews-platform-badge svg {
  stroke: white;
}

/* ===== REVIEWS GRID ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

/* ===== INDIVIDUAL REVIEW CARD ===== */
.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.review-card__location {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.3;
}

.review-card__rating {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.review-card__rating svg {
  width: 16px;
  height: 16px;
  fill: #D4A853;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.review-card__text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
}

.review-card__date {
  color: var(--text-light);
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--forest-green);
  font-weight: 500;
}

.review-card__source::before {
  content: '✓';
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== REVIEWS SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
  .cabin-reviews {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-header__left h2 {
    font-size: 1.5rem;
  }

  .reviews-rating-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card__avatar {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .review-card__text {
    font-size: 0.9rem;
  }
}