@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Color Tokens */
  --color-primary: hsl(155, 45%, 12%);       /* Deep Forest Green */
  --color-primary-light: hsl(155, 30%, 18%);
  --color-accent: hsl(36, 60%, 45%);         /* Warm Timber Gold */
  --color-accent-light: hsl(36, 60%, 85%);
  --color-bg-warm: hsl(45, 25%, 96%);        /* Creamy Warm White */
  --color-bg-white: hsl(0, 0%, 100%);
  --color-text-dark: hsl(155, 30%, 10%);     /* Dark Green-Charcoal */
  --color-text-muted: hsl(155, 10%, 40%);
  --color-border: hsla(155, 20%, 80%, 0.4);
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-dark: rgba(18, 48, 38, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 16px;
  
  /* Fonts */
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  /* Layout */
  --section-padding: 6rem 2rem;
  --max-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 5px;
  border: 2px solid var(--color-bg-warm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* Navigation Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

/* Scroll-Driven Shrinking Header style */
header.site-header.scrolled {
  height: 70px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(18, 48, 38, 0.03);
}

/* Progressive enhancement with CSS scroll-driven animations */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes shrinkHeader {
    to {
      height: 70px;
      background-color: var(--glass-bg);
      backdrop-filter: blur(var(--glass-blur));
      -webkit-backdrop-filter: blur(var(--glass-blur));
      border-bottom: 1px solid var(--color-border);
      box-shadow: 0 4px 30px rgba(18, 48, 38, 0.03);
    }
  }
  header.site-header {
    animation: shrinkHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 120px;
  }
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.logo-leaf {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
  transition: var(--transition-smooth);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  transition: var(--transition-smooth);
}

.logo a:hover .logo-leaf {
  transform: rotate(-15deg) scale(1.1);
}

.logo a:hover .logo-img {
  transform: rotate(360deg) scale(1.08);
}

.desktop-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  position: relative;
  color: var(--color-primary);
}

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

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

.nav-cta {
  background-color: var(--color-primary);
  color: var(--color-bg-warm) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(18, 48, 38, 0.15);
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(212, 143, 56, 0.25);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Mobile Navigation Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: var(--color-primary);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 8rem 3rem 3rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-overlay .nav-link {
  color: var(--color-bg-warm);
  font-size: 1.4rem;
}

.mobile-nav-overlay .nav-cta {
  background-color: var(--color-accent);
  text-align: center;
  margin-top: 1rem;
}

/* Immersive Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-bg-warm);
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.65) contrast(1.05);
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
  z-index: 1;
}

.hero-bg-image.active {
  opacity: 0.45;
  transform: scale(1.12);
  z-index: 2;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(18, 48, 38, 0.4) 0%,
    rgba(18, 48, 38, 0.1) 40%,
    rgba(18, 48, 38, 0.7) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-family: var(--font-serif);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title .accent-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-light);
  display: inline-block;
  white-space: nowrap;
}

.hero-title .accent-text-valley {
  color: #fff;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
  white-space: nowrap;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 1.5rem auto;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-bg-warm);
  margin-bottom: 3.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  opacity: 0.85;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--color-bg-warm);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-warm);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(212, 143, 56, 0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  font-size: 0.8rem;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--color-bg-warm);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

/* Core Layout Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

section.site-section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

/* About / Welcome Section */
.about-section {
  background-color: var(--color-bg-warm);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--color-primary-light);
  line-height: 1.4;
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.about-p {
  font-size: 1.05rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
}

.about-feat-icon {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(18, 48, 38, 0.08);
}

.about-img {
  width: 100%;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

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

.about-img-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  color: var(--color-bg-warm);
}

.about-overlay-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-overlay-desc {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Stays "Choose your vibe" Section */
.stays-section {
  background-color: var(--color-bg-white);
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.stay-card {
  background-color: var(--color-bg-warm);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 48, 38, 0.04);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.stay-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(18, 48, 38, 0.08);
  border-color: rgba(212, 143, 56, 0.3);
}

.stay-image-container {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.stay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.stay-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background-color: var(--color-accent);
  color: var(--color-bg-warm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.stay-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stay-title {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
}

.stay-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.stay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.2rem;
}

.stay-tag {
  background-color: rgba(18, 48, 38, 0.05);
  color: var(--color-primary-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

/* Experiences / Amenities Section */
.experiences-section {
  background-color: var(--color-bg-warm);
}

.amenities-container {
  margin-top: 5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 5rem;
}

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

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenity-icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(18, 48, 38, 0.03);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-box {
  background-color: var(--color-primary);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(18, 48, 38, 0.15);
}

.amenity-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
  fill: var(--color-accent-light);
}

.amenity-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

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

/* Interactive Gallery Section */
.gallery-section {
  background-color: var(--color-bg-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  background-color: var(--color-bg-warm);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 10px rgba(18, 48, 38, 0.02);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
  border-color: var(--color-primary);
  box-shadow: 0 6px 15px rgba(18, 48, 38, 0.15);
  transform: translateY(-2px);
}

.gallery-item.fade-out {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.gallery-item.fade-in {
  opacity: 1;
  transform: scale(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(18, 48, 38, 0.03);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 15px 30px rgba(18, 48, 38, 0.08);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(18, 48, 38, 0.75) 0%,
    rgba(18, 48, 38, 0.1) 100%
  );
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

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

.gallery-zoom-btn {
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-warm);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-btn {
  transform: scale(1);
}

.gallery-zoom-icon {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 48, 38, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-bg-warm);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background-color: var(--color-accent);
  transform: scale(1.05);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-bg-warm);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.lightbox-arrow:hover {
  background-color: var(--color-accent);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-arrow.prev {
  left: -80px;
}

.lightbox-arrow.next {
  right: -80px;
}

/* Enquiry Section (Google Form) */
.enquiry-section {
  background-color: var(--color-bg-warm);
}

.enquiry-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--color-bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(18, 48, 38, 0.06);
  border: 1px solid var(--color-border);
  position: relative;
}

.form-header {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
  padding: 2.5rem 3rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.iframe-container {
  width: 100%;
  position: relative;
  height: 750px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Us Section */
.contact-section {
  background-color: var(--color-bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-warm);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(18, 48, 38, 0.03);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.contact-icon-svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.contact-details h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
}

.contact-details p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-details a {
  color: var(--color-text-dark);
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--color-accent);
}

.contact-actions {
  display: flex;
  gap: 1.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(18, 48, 38, 0.05);
}

.contact-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
}

.contact-btn-primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 143, 56, 0.25);
}

.contact-btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.contact-btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
  transform: translateY(-2px);
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 48, 38, 0.05);
  border: 1px solid var(--color-border);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer styles */
footer.site-footer {
  background-color: var(--color-primary);
  color: var(--color-bg-warm);
  padding: 5rem 2rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 0.75fr);
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand .logo a {
  color: var(--color-bg-warm);
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-brand .logo-leaf {
  fill: var(--color-accent);
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-accent-light);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Keyframes 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 fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollWheel {
  0% { opacity: 0; top: 6px; }
  30% { opacity: 1; }
  80% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 6px; }
}

/* Media Queries (Mobile Responsiveness) */
@media screen and (max-width: 1024px) {
  header.site-header {
    padding: 0 1.5rem;
  }
  
  .desktop-nav ul {
    gap: 1rem;
  }
  
  .desktop-nav .nav-link {
    font-size: 0.88rem;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem !important;
  }
  
  .about-grid, .contact-grid {
    gap: 3rem;
  }
  
  .stays-grid {
    gap: 1.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    order: -1;
  }
  
  .stays-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .lightbox-arrow {
    display: none; /* Hide arrows on mobile, support swipe/tap */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-btn {
    justify-content: center;
  }
  
  .lightbox-close {
    right: 15px;
    top: -45px;
  }
}

/* Nav Social Icon Link */
.nav-social {
  padding: 0.5rem 0.4rem !important;
  color: var(--color-primary);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
}

.nav-social:hover {
  color: var(--color-accent);
  opacity: 1;
}

.nav-social::after {
  display: none !important;
}

/* Instagram Grid Section */
.instagram-section {
  background-color: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
}

.instagram-highlight {
  color: var(--color-accent);
  font-weight: 700;
  transition: var(--transition-fast);
}

.instagram-highlight:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.instagram-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 15px rgba(18, 48, 38, 0.03);
  display: block;
}

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

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

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 48, 38, 0.65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
  transform: scale(0.8);
  transition: var(--transition-smooth);
}

.instagram-card:hover .instagram-icon {
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
