@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  /* Color Palette */
  --color-bg-base: #FAF6F0;       /* Warm Cream / Ivory */
  --color-bg-alt: #F0EDE6;        /* Slightly darker cream */
  --color-brand-primary: #1C3317;  /* Deep Forest Green */
  --color-brand-hover: #294623;    /* Medium Forest Green */
  --color-brand-light: #5A7E51;    /* Sage Green */
  --color-accent-gold: #A8874E;    /* Warm Gold */
  --color-text-dark: #20271E;      /* Dark Charcoal/Olive */
  --color-text-muted: #596157;     /* Soft Muted Sage/Gray */
  --color-text-light: #FAF6F0;     /* Cream/Off-white for dark backgrounds */
  
  /* Glassmorphism */
  --glass-bg: rgba(250, 246, 240, 0.12);
  --glass-border: rgba(250, 246, 240, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.15);
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

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

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

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--color-brand-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-brand-primary);
}

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

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

button, .btn {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-smooth);
}

/* Common Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

/* Scroll Reveal Initial States */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

/* ==========================================================================
   COMPONENTS - BUTTONS & BADGES
   ========================================================================== */
.btn-primary {
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-brand-primary);
  box-shadow: 0 4px 15px rgba(28, 51, 23, 0.15);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-brand-primary);
  box-shadow: 0 4px 15px rgba(28, 51, 23, 0.0);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-light);
  padding: 12px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(250, 246, 240, 0.4);
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background-color: var(--color-text-light);
  color: var(--color-brand-primary);
  border-color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Dark mode version of secondary button */
.btn-outline-dark {
  border-color: rgba(28, 51, 23, 0.3);
  color: var(--color-brand-primary);
}

.btn-outline-dark:hover {
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  border-color: var(--color-brand-primary);
}

.badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
  display: inline-block;
}

/* ==========================================================================
   LAYOUT - NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Scrolled Header Style */
.site-header.scrolled {
  height: 70px;
  background-color: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(28, 51, 23, 0.05);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.logo-text-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  display: block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  margin-top: -4px;
}

/* Color adaptions on scroll */
.site-header.scrolled .logo {
  color: var(--color-brand-primary);
}

.site-header.scrolled .logo img {
  filter: none;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(250, 246, 240, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

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

.nav-link:hover {
  color: var(--color-text-light);
}

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

.site-header.scrolled .nav-link {
  color: var(--color-text-muted);
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-brand-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 24px;
  justify-content: center;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition-fast);
}

.site-header.scrolled .mobile-nav-toggle span {
  background-color: var(--color-brand-primary);
}

/* Header Reservation Button */
.header-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border: 1px solid var(--color-brand-primary);
}

.header-btn:hover {
  background-color: transparent;
  color: var(--color-text-light);
}

.site-header.scrolled .header-btn {
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-text-light);
}

.site-header.scrolled .header-btn:hover {
  background-color: transparent;
  color: var(--color-brand-primary);
}

/* ==========================================================================
   LAYOUT - HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  background-color: #0b1509; /* Fallback */
  overflow: hidden;
}

/* Hero Background Image Zoom */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25)), url('assets/user_cruiser_clearing.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: bgZoom 20s infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--header-height) - 40px); /* Visual balancing for cards overlay */
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Elegant serif emphasis */
.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--color-bg-base);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  max-width: 500px;
}

/* ==========================================================================
   LAYOUT - ACTIVITY CARDS (OVERLAPPING HERO)
   ========================================================================== */
.activities-overlay {
  position: relative;
  z-index: 5;
  margin-top: -140px; /* Pulls cards upward into Hero bottom */
  padding-bottom: 80px;
}

.activities-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
  background-color: var(--color-bg-alt);
}

.activity-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
  z-index: 1;
}

/* Direct background image assignments */
.card-hiking .activity-card-bg { background-image: linear-gradient(to top, rgba(16, 27, 14, 0.9) 10%, rgba(16, 27, 14, 0.1) 60%), url('assets/activity_hiking.png'); }
.card-kayaking .activity-card-bg { background-image: linear-gradient(to top, rgba(16, 27, 14, 0.9) 10%, rgba(16, 27, 14, 0.1) 60%), url('assets/activity_kayaking.png'); }
.card-climbing .activity-card-bg { background-image: linear-gradient(to top, rgba(16, 27, 14, 0.9) 10%, rgba(16, 27, 14, 0.1) 60%), url('assets/activity_climbing.png'); }

.activity-card-content {
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.activity-card-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.activity-card-desc {
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition-smooth);
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* Card Hover States */
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 27, 14, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

.activity-card:hover .activity-card-bg {
  transform: scale(1.08);
}

.activity-card:hover .activity-card-content {
  transform: translateY(0);
}

.activity-card:hover .activity-card-desc {
  opacity: 0.9;
}

/* ==========================================================================
   LAYOUT - COLLAGE & ABOUT SECTION ("Experience Pure Nature")
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background-color: var(--color-bg-base);
  position: relative;
}

.about-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

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

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-brand-primary);
  margin-bottom: 24px;
}

.about-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  font-weight: 300;
}

/* Collage Grid */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.collage-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

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

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

/* Layout Asymmetry */
.item-tent {
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* Double height */
}

.item-explorer {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.item-wildlife {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* ==========================================================================
   LAYOUT - TESTIMONIALS SECTION ("What They Say")
   ========================================================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--color-bg-alt);
  position: relative;
  border-top: 1px solid rgba(28, 51, 23, 0.04);
  border-bottom: 1px solid rgba(28, 51, 23, 0.04);
}

.testimonials-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.testimonials-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-brand-primary);
}

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

/* Textured paper design card */
.testimonial-card {
  background-color: var(--color-bg-base);
  border-radius: var(--border-radius-sm);
  padding: 40px;
  position: relative;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.02),
    inset 0 0 0 1px rgba(168, 135, 78, 0.08); /* Gold accent tint */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(28, 51, 23, 0.06);
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.1;
  color: var(--color-accent-gold);
  opacity: 0.15;
  position: absolute;
  top: 30px;
  left: 24px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-brand-primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-weight: 400;
}

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

.author-chip {
  width: 40px;
  height: 40px;
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(28, 51, 23, 0.15);
  border: 1px solid rgba(250, 246, 240, 0.2);
}

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

.author-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ==========================================================================
   LAYOUT - BOOK NOW BAR
   ========================================================================== */
.cta-banner {
  padding: 60px 0;
  text-align: center;
  background-color: var(--color-bg-base);
}

/* ==========================================================================
   LAYOUT - FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo .logo {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.footer-logo .logo img {
  filter: brightness(0) invert(1);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  font-weight: 300;
  max-width: 250px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--color-text-light);
  padding-left: 4px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
  font-weight: 300;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-gold);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(250, 246, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--color-text-light);
}

.social-icon:hover {
  background-color: var(--color-accent-gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer Scenic Thumbnail */
.footer-scenic-box {
  width: 100%;
  height: 160px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(250, 246, 240, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer-scenic-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Bottom */
.footer-bottom {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(250, 246, 240, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.5);
  font-weight: 300;
}

/* ==========================================================================
   INTERACTIVE - BOOKING MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 42, 22, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background-color: var(--color-bg-base);
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(168, 135, 78, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

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

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-brand-primary);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 2.2rem;
  color: var(--color-brand-primary);
  margin-bottom: 8px;
}

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

/* Booking Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(28, 51, 23, 0.15);
  background-color: var(--color-bg-base);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 3px rgba(28, 51, 23, 0.08);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

/* Custom Alert Message */
.form-alert {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-alert.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.1);
  color: #155724;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* ==========================================================================
   RESPONSIVE DESIGN Breakpoints
   ========================================================================== */

/* Large Desktop and Up */
@media (min-width: 1440px) {
  .hero-container {
    padding-left: 0;
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-container {
    margin-top: 0;
  }
  
  .activities-overlay {
    margin-top: -60px;
  }
  
  .cards-grid {
    gap: 16px;
  }
  
  .activity-card {
    height: 220px;
    padding: 20px;
  }
  
  .activity-card-title {
    font-size: 1.4rem;
  }
  
  .about-container {
    gap: 40px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--color-bg-base);
    flex-direction: column;
    padding: 40px;
    gap: 24px;
    border-bottom: 1px solid rgba(28, 51, 23, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-link {
    color: var(--color-text-dark) !important;
    font-size: 1.1rem;
  }
  
  .mobile-nav-toggle {
    display: flex;
    order: 3;
  }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .header-actions {
    margin-right: 20px;
  }
  
  /* Layout Structures */
  .activities-overlay {
    margin-top: 20px; /* Don't overlap hero anymore */
    padding-bottom: 40px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .activity-card {
    height: 250px;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    padding-right: 0;
    text-align: center;
  }
  
  .collage-grid {
    grid-template-rows: repeat(2, 180px);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .footer-scenic-box {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .header-actions {
    display: none; /* Hide header btn on small screens to save space */
  }
  
  .modal-container {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   PREMIUM REDESIGN - NEW COMPONENT STYLES
   ========================================================================== */

/* 1. Floating Glass Pill Header Scroll Transition */
@media (min-width: 769px) {
  .site-header.scrolled {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--max-width);
    height: 65px;
    border-radius: 50px;
    background-color: rgba(250, 246, 240, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(28, 51, 23, 0.08);
    border: 1px solid rgba(250, 246, 240, 0.45);
    padding: 0 24px;
  }
  .site-header.scrolled .header-container {
    width: 100%;
    padding: 0;
  }
}

/* 2. Hero Section Enhancements: Proof Badge & Stats Card */
.hero-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  background: rgba(250, 246, 240, 0.1);
  border: 1px solid rgba(250, 246, 240, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 100px;
}

.avatar-group {
  display: flex;
  margin-right: 4px;
}

.avatar-sig {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  border: 2px solid #101b0e;
  margin-left: -6px;
}

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

.rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rating-stars {
  color: #f1c40f;
  font-size: 0.75rem;
}

.rating-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(250, 246, 240, 0.9);
  letter-spacing: 0.5px;
}

/* Floating Glass Stats Metrics Card */
.hero-stats-card {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(250, 246, 240, 0.12);
  border: 1px solid rgba(250, 246, 240, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 16px 28px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-bg-base);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(250, 246, 240, 0.75);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(250, 246, 240, 0.25);
}

/* 3. Partner Logo Rail */
.logo-rail-section {
  background-color: var(--color-bg-alt);
  padding: 30px 0;
  border-bottom: 1px solid rgba(28, 51, 23, 0.05);
  overflow: hidden;
}

.logo-rail-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logo-rail-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: logoMarquee 30s linear infinite;
}

.partner-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-muted);
  opacity: 0.6;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  opacity: 0.95;
  color: var(--color-brand-primary);
  transform: translateY(-1px);
}

@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 4. Accommodations Section */
.accommodations-section {
  padding: 100px 0;
  background-color: var(--color-bg-base);
  position: relative;
}

.accommodations-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--color-brand-primary);
  margin-top: 4px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-top: 8px;
}

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

.accommodation-card {
  background-color: var(--color-bg-alt);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(28, 51, 23, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(28, 51, 23, 0.1);
  border-color: rgba(28, 51, 23, 0.15);
}

.card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.card-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-brand-primary);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(250, 246, 240, 0.15);
}

.price-unit {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.8;
}

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

.card-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-gold);
  margin-bottom: 8px;
}

.card-body .card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-brand-primary);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
}

.card-features {
  display: flex;
  gap: 15px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  border-top: 1px solid rgba(28, 51, 23, 0.08);
  padding-top: 15px;
}

.card-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  margin-top: auto;
}

/* 5. Responsive Styles overrides */
@media (max-width: 1024px) {
  .accommodations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .accommodations-section {
    padding: 60px 0;
  }
  
  .accommodations-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-stats-card {
    display: none;
  }
}
