/*
Theme Name: Bardia Forest Camp
Theme URI: https://bardiaforestcamp.com
Author: Webmandu Nepal
Author URI: https://bardiaforestcamp.com
Description: A premium eco-luxury WordPress theme designed specifically for safari resorts, campgrounds, and nature hotels. Fully responsive with glassmorphism styling and custom booking redirection integrations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bardia-forest-camp
Tags: custom-menu, featured-images, full-width-template, theme-options, translation-ready, accessibility-ready
*/

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

:root {
  /* Colors */
  --color-jungle-dark: #1E352F;
  --color-jungle-dark-rgb: 30, 53, 47;
  --color-jungle-deep: #0D1917;
  --color-gold: #D4AF37;
  --color-gold-hover: #F3C63F;
  --color-teak: #C28E5A;
  --color-sand: #F7F5EE;
  --color-sand-dark: #EAE6D9;
  --color-charcoal: #1C2321;
  --color-text-dark: #2F3E46;
  --color-text-muted: #627264;
  --color-text-light: #F7F5EE;
  --color-white: #FFFFFF;
  --color-glass-bg: rgba(255, 255, 255, 0.15);
  --color-glass-border: rgba(255, 255, 255, 0.25);
  --color-dark-glass-bg: rgba(18, 28, 26, 0.75);
  --color-dark-glass-border: rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Alignments & WP Core Classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5em 1.5em 0; }
.alignright { float: right; margin: 0 0 1.5em 1.5em; }
.wp-caption { background: var(--color-white); border: 1px solid var(--color-sand-dark); padding: 0.5rem; text-align: center; border-radius: var(--radius-sm); }
.wp-caption-text { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.25rem; }

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

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-gold);
  margin-top: 0.5rem;
  border-radius: var(--radius-full);
}

.text-center h2::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: var(--color-jungle-dark);
  color: var(--color-sand);
  box-shadow: 0 4px 15px rgba(30, 53, 47, 0.2);
}

.btn-secondary:hover {
  background-color: var(--color-jungle-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 53, 47, 0.3);
}

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

.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

/* Header & Navigation */
header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition-normal);
}

header.site-header.scrolled {
  position: fixed;
  background: var(--color-dark-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-dark-glass-border);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

header.site-header.scrolled .logo h1,
header.site-header.scrolled nav a {
  color: var(--color-text-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-charcoal);
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: -0.5px;
}

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

/* Remove bullets from header list items globally */
.main-nav, 
.main-nav-list,
.main-nav ul,
.main-nav li,
.main-nav-list li,
.main-nav ul li {
  list-style: none !important;
  list-style-type: none !important;
}

/* Desktop Horizontal Layout */
@media (min-width: 769px) {
  .main-nav, 
  .main-nav-list,
  .main-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 2rem !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .main-nav li,
  .main-nav-list li,
  .main-nav ul li {
    margin: 0 !important;
    padding: 0 !important;
  }
}

.main-nav a,
.main-nav-list a,
.main-nav ul a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav-list a:hover,
.main-nav ul a:hover,
.main-nav a.active,
.main-nav-list .active,
.main-nav-list .current-menu-item > a,
.main-nav-list .current_page_item > a,
.main-nav ul .current-menu-item a {
  color: var(--color-gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
  border-radius: 99px;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 28, 26, 0.7) 0%, rgba(18, 28, 26, 0.4) 60%, rgba(18, 28, 26, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
  margin-top: 4rem;
}

.hero-tagline {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 4rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(247, 245, 238, 0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Live Booking Widget */
.booking-widget-container {
  position: relative;
  z-index: 10;
  margin-top: -5rem;
  padding: 0 1.5rem;
}

.booking-widget {
  background: var(--color-dark-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-dark-glass-border);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.12);
}

/* Sections Base */
.section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.section-bg-sand {
  background-color: var(--color-sand);
}

.section-bg-white {
  background-color: var(--color-white);
}

.section-bg-dark {
  background-color: var(--color-jungle-dark);
  color: var(--color-text-light);
}

.section-bg-dark h2,
.section-bg-dark h3 {
  color: var(--color-text-light);
}

.section-header {
  margin-bottom: var(--spacing-lg);
}

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

.section-tagline {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(234, 230, 217, 0.5);
}

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

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

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

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

.card-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-jungle-dark);
  color: var(--color-sand);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

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

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-sand-dark);
  padding-top: 1.25rem;
}

.card-price {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-jungle-dark);
}

.card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.card-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Feature Highlights */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-img-box {
  flex: 1.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

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

.feature-content-box {
  flex: 1;
}

.feature-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.highlight-item {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-sand-dark);
  text-align: center;
  transition: var(--transition-fast);
}

.highlight-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  line-height: 1;
}

.highlight-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-jungle-dark);
}

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

/* Host Profile / Testimonials */
.reviews-section {
  position: relative;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 40%), var(--color-white);
}

.reviews-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.host-card {
  background-color: var(--color-sand);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--color-sand-dark);
  box-shadow: var(--shadow-sm);
}

.host-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.host-title {
  color: var(--color-gold);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

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

.review-slider-wrapper {
  position: relative;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-sand-dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.score-badge {
  background-color: var(--color-jungle-dark);
  color: var(--color-sand);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
}

.score-text {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-jungle-dark);
}

.review-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-jungle-dark);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Page Headers (About, Experience, Contact) */
.page-hero {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 28, 26, 0.8) 0%, rgba(18, 28, 26, 0.8) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  color: var(--color-text-light);
}

/* Contact Grid & Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.contact-form-box {
  background-color: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-sand-dark);
  box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
  margin-bottom: 1.5rem;
}

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

.form-group-full {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  background: var(--color-sand);
  border: 1px solid var(--color-sand-dark);
  color: var(--color-text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-jungle-dark);
  background: var(--color-white);
}

.map-section {
  height: 450px;
  background-color: var(--color-sand-dark);
  position: relative;
  overflow: hidden;
}

/* Rules Section */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.rule-box {
  background-color: var(--color-sand);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-sand-dark);
}

.rule-box h3 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.rule-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.75rem;
}

.rule-list li span:first-child {
  font-weight: 600;
  color: var(--color-jungle-dark);
}

.rule-list li span:last-child {
  color: var(--color-text-muted);
}

/* Footer */
footer.site-footer {
  background-color: var(--color-jungle-deep);
  color: rgba(247, 245, 238, 0.7);
  padding: 6rem 0 3rem;
  border-top: 4px solid var(--color-gold);
}

footer.site-footer h3 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

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

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

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

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

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive design */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
  .booking-widget {
    margin-top: -3rem;
  }
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .site-header {
    background-color: var(--color-dark-glass-bg);
    border-bottom: 1px solid var(--color-dark-glass-border);
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-jungle-dark);
    box-shadow: var(--shadow-md);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-nav,
  .main-nav-list,
  .main-nav ul {
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    align-items: center;
  }
  .feature-row, .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }
  .grid-3, .highlights-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* --------------------------------------------------
   FAQ, Tables, Accordion, and Packages Expansion
   -------------------------------------------------- */

/* FAQ Accordion Styling */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-sand-dark);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--color-gold);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-jungle-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}
.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-sand-dark);
}

/* Table Styling */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.styled-table th {
  background-color: var(--color-jungle-dark);
  color: var(--color-white);
  text-align: left;
  font-weight: bold;
  padding: 1rem 1.25rem;
}
.styled-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-sand-dark);
  background-color: var(--color-white);
}
.styled-table tr:nth-of-type(even) td {
  background-color: var(--color-sand);
}
.styled-table tr:last-of-type td {
  border-bottom: 2px solid var(--color-gold);
}

/* Package Timeline/Detail Styles */
.package-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}
.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: -40px;
  width: 2px;
  background-color: var(--color-sand-dark);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
}
.timeline-content {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-sand-dark);
  flex-grow: 1;
}
.timeline-title {
  color: var(--color-jungle-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.package-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-sand-dark);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.package-card-header {
  background-color: var(--color-jungle-dark);
  color: var(--color-white);
  padding: 1.5rem;
  text-align: center;
}
.package-card-header h3 {
  color: var(--color-white);
  font-size: 1.25rem;
}
.package-card-price {
  font-size: 2rem;
  color: var(--color-gold);
  font-family: var(--font-headings);
  font-weight: 800;
  margin-top: 0.5rem;
}
.package-card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.package-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.package-features-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}
.package-features-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(234, 230, 217, 0.5);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.package-features-list li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
}

