:root {
  /* Colors */
  --forest-green: #1B5E20;
  --nature-green: #43A047;
  --light-green: #E8F5E9;
  --cream: #FDFBF7;
  --dark: #1F2937;
  --gray: #4B5563;
  --light-gray: #F3F4F6;
  --gold-accent: #C8A96A;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(27, 94, 32, 0.1);

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Layout & Spacing */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  margin: 0;
}

/* Typography utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-nature {
  color: var(--nature-green);
}

.text-forest {
  color: var(--forest-green);
}

.text-gold {
  color: var(--gold-accent);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--forest-green);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: var(--gold-accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Layout utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 80px 0;
}

@media(max-width:768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--forest-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-primary:hover {
  background-color: var(--nature-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4);
}

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

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

.btn-gold {
  background-color: var(--gold-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.btn-gold:hover {
  background-color: #B59555;
  transform: translateY(-2px);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  background: #fff;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.navbar.scrolled .logo-text {
  color: var(--forest-green);
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.logo-text span {
  color: var(--gold-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

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

.mobile-menu-btn {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--forest-green);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* same as navbar height */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  /* slightly scaled for entering animation */
  animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: auto;
  padding: 3rem 2rem;
  animation: slideUp 1s ease-out;
  transform: translateY(-20px);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(-20px);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: 'Playfair Display', serif;
}

.hero .hero-sub {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #E8F5E9;
}

.hero .hero-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-perks {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-perk-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}

.hero-perk-item i {
  color: var(--gold-accent);
}

/* Base Styles Continued... (Activities, Food, timeline etc) */

/* Specific Sections Base */
.bg-light {
  background-color: var(--light-green);
}

/* Animations on Scroll */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease-out forwards;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Luxury Highlights Section */
.highlights {
  background: #ffffff;
  padding: 30px 0;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: transparent;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
  padding: 10px 0;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 60px;
  color: var(--forest-green);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
}

.ticker-item i {
  color: var(--gold-accent);
  font-size: 1.6rem;
}

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

.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

.safety-banner {
  margin-top: 30px;
}

/* Luxury Story Experience Section */
.experience-grid {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.experience-grid > div {
  flex: 1;
  min-width: 300px;
}

.experience-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-content h2 {
  font-size: 2.5rem;
  color: var(--forest-green);
  margin-bottom: 1.5rem;
}

.experience-content p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Trust Stats Section */
.stats-section {
  background: var(--forest-green);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* Activity Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.activity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.activity-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--white);
  transition: var(--transition);
}

.activity-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--forest-green);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(27, 94, 32, 0.03);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold-accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--light-green);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    padding-top: 8rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .hero-sub {
    font-size: 1.25rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--forest-green);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: 0.3s ease-in-out;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-contact {
    display: block !important;
    margin-right: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .nav-contact {
    display: none !important;
  }

  .hero {
    padding-top: 70px;
    height: auto;
    min-height: 100vh;
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .hero-sub {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .highlight-grid {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 5px 10px 15px 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
  }

  .highlight-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .highlight-item {
    flex: 0 0 150px;
    scroll-snap-align: center;
    padding: 15px 10px;
  }

  .highlight-item i {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .highlight-item h4 {
    font-size: 13px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Under Development Overlay */
.dev-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.dev-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.dev-card {
    max-width: 600px;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(27, 94, 32, 0.1);
}

.dev-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.dev-badge {
    display: inline-block;
    background: var(--nature-green);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.dev-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.dev-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dev-close-link {
    display: block;
    margin-top: 2rem;
    color: var(--gray);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0.6;
    background: none;
    border: none;
}

.dev-close-link:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .dev-card { padding: 2rem 1.5rem; }
    .dev-title { font-size: 1.8rem; }
}

/* Popup Modals */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: flex-start; /* Changed from center to allow scrolling from top */
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition);
    overflow-y: auto; /* Allow vertical scrolling */
    padding: 2rem 1rem; /* Space for mobile */
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: rgba(255, 255, 255, 0.98);
    position: relative;
    max-width: 500px;
    width: 100%; /* Better for mobile */
    margin: 0 auto; /* Removed top/bottom margin as padding handles it */
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border-radius: 16px;
    transform: translateY(20px);
    transition: var(--transition);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(27, 94, 32, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--forest-green);
    font-size: 1.1rem;
    z-index: 10;
    transition: var(--transition);
}

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

.popup-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 500px) {
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-form-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Floating Actions & Sticky CTA (Hidden as requested) */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none; /* Keep hidden as requested */
    flex-direction: column;
    gap: 1rem;
    z-index: 2000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.floating-whatsapp { background: #25D366; }
.floating-call { background: var(--forest-green); }

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* Keep hidden as requested */
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    /* To show them on mobile if needed, you'd change display to flex/block here */
}