/* ==========================================================================
   ELEFANJOY - COMPLETE MASTER STYLESHEET (FINAL VERIFIED)
   ========================================================================== */

   :root {
      --color-primary: #1a3c34;     /* Deep Jungle Green */
      --color-primary-light: #2c554a;
      --color-accent: #c5a47e;      /* Muted Gold */
      --color-gold-bright: #eec07b; /* Bright Gold */
      --color-text-main: #2b2b2b;
      --color-text-light: #555;
      --color-bg-body: #fdfcf8;     /* Warm Paper White */
      --color-white: #ffffff;
      --container-width: 1200px;
      --font-heading: 'Cormorant Garamond', serif;
      --font-body: 'Montserrat', sans-serif;
      --font-script: 'Dancing Script', cursive;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { 
      font-family: var(--font-body); 
      background-color: var(--color-bg-body); 
      color: var(--color-text-main); 
      line-height: 1.8; 
      -webkit-font-smoothing: antialiased; 
  }
  
  /* ===================================
     1. GLOBAL UTILITIES
     =================================== */
  h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--color-primary); }
  p { margin-bottom: 1.5rem; }
  a { text-decoration: none; color: inherit; transition: 0.3s; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  .container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
  .text-center { text-align: center; }
  
  .section-tag { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--color-accent); margin-bottom: 1rem; font-weight: 700; }
  .section-heading { font-size: 3rem; margin-bottom: 1rem; }
  .lead-text { font-size: 1.25rem; font-weight: 500; color: #444; line-height: 1.6; }
  .divider { height: 2px; width: 80px; background: var(--color-accent); margin: 2rem auto; }
  
  /* ===================================
     2. BUTTONS
     =================================== */
  .btn { display: inline-block; padding: 14px 32px; font-size: 0.85rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; cursor: pointer; border: 1px solid transparent; transition: all 0.4s ease; border-radius: 4px; text-align: center; line-height: 1; }
  .btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
  .btn-primary:hover { background: #fff; color: var(--color-primary); transform: translateY(-3px); }
  .btn-white { background: #fff; color: var(--color-primary); border-color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
  .btn-white:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); transform: translateY(-3px); }
  .btn-outline { background: transparent; border: 1px solid #fff; color: #fff; }
  .btn-outline:hover { background: #fff; color: var(--color-primary); }
  .btn-outline-dark { background: transparent; border: 1px solid var(--color-primary); color: var(--color-primary); }
  .btn-outline-dark:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px); }
  .btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.6); color: #fff; }
  .btn-outline-white:hover { background: #fff; color: var(--color-primary); border-color: #fff; transform: translateY(-3px); }
  .btn-block { display: block; width: 100%; }
  
  /* ===================================
     3. NAVIGATION (FIXED VISIBILITY)
     =================================== */
  .navbar { position: fixed; top: 0; width: 100%; z-index: 9999; padding: 20px 0; transition: 0.4s; background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent); }
  
  /* SCROLLED STATE - Solid Dark Green */
  .navbar.scrolled { background-color: var(--color-primary) !important; padding: 12px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.15); }
  .nav-container { display: flex; justify-content: space-between; align-items: center; }
  .nav-logo { height: 70px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); transition: 0.3s; }
  .navbar.scrolled .nav-logo { height: 60px; } /* Logo becomes white */
  .nav-links { display: flex; gap: 35px; align-items: center; }
  .nav-item { color: rgba(255,255,255,0.95); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
  .navbar.scrolled .nav-item { text-shadow: none; color: #ffffff !important; } 
  .nav-item:hover { color: var(--color-gold-bright); }
  .btn-nav { border: 1px solid rgba(255,255,255,0.8); padding: 10px 24px; }
  .navbar.scrolled .btn-nav { border-color: #fff; color: #fff !important; }
  .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; }
  .hamburger span { display: block; width: 100%; height: 2px; background: #fff; transition: 0.3s; }
  
  /* ===================================
     4. PAGE HEADERS (INNER PAGES)
     =================================== */
  .page-header { height: 60vh; min-height: 450px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; background-color: #1a3c34; }
  .page-header::after { content: ''; position: absolute; inset: 0; background: rgba(26, 60, 52, 0.65); }
  .header-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 20px; }
  .header-content h1.header-title { color: #ffffff !important; font-size: 4.5rem; margin-bottom: 15px; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }
  .header-content .header-subtitle { color: rgba(255, 255, 255, 0.95); font-size: 1.2rem; font-weight: 300; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
  .breadcrumb { display: flex; justify-content: center; gap: 15px; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; color: rgba(255, 255, 255, 0.9); }
  .breadcrumb a { color: #ffffff; border-bottom: 1px solid transparent; }
  .breadcrumb a:hover { color: var(--color-gold-bright); border-color: var(--color-gold-bright); }
  .breadcrumb span { color: var(--color-gold-bright); }
  
  /* ===================================
     5. HOMEPAGE SPECIFIC
     =================================== */
  /* Hero */
  .hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
  .hero-slider, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; }
  .hero-slide { background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
  .hero-slide.active { opacity: 1; }
  .hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%); background-color: rgba(0,0,0,0.35); z-index: 1; }
  .hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 1000px; padding: 0 20px; margin-top: 60px; }
  .hero-script { font-family: var(--font-script); font-size: 3.2rem; color: var(--color-gold-bright); display: block; margin-bottom: 10px; transform: rotate(-3deg); text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
  .hero-title { font-size: 5.5rem; line-height: 0.95; margin-bottom: 30px; text-transform: uppercase; letter-spacing: -2px; color: #ffffff !important; text-shadow: 0 5px 25px rgba(0,0,0,0.6); }
  .hero-subtitle { font-size: 1.3rem; font-weight: 400; margin-bottom: 50px; opacity: 1; max-width: 700px; margin-left: auto; margin-right: auto; color: #fdfcf8 !important; text-shadow: 0 2px 15px rgba(0,0,0,0.8); }
  .hero-eyebrow { text-transform: uppercase; letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 20px; display: block; opacity: 1; color: var(--color-gold-bright) !important; text-shadow: 0 2px 10px rgba(0,0,0,0.8); font-weight: 700; }
  .hero-actions { display: flex; gap: 20px; justify-content: center; }
  .trust-badge { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.9rem; opacity: 1; color: #ffffff !important; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
  .trust-badge i { color: var(--color-gold-bright); }
  
  /* Intro (White) */
  .intro { padding: 100px 0; background: #fff; }
  .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .feature-list i { color: var(--color-accent); width: 25px; text-align: center; }
  .intro-image-wrapper { position: relative; }
  .intro-img-main { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0 var(--color-bg-body), 20px 20px 0 2px var(--color-accent); }
  
  /* FIXED: 20+ Stat Card */
  .intro-stat-card { 
      position: absolute; bottom: -30px; left: -30px; 
      background: #fff; padding: 30px; 
      box-shadow: 0 10px 40px rgba(0,0,0,0.15); 
      text-align: center; border-radius: 4px;
      z-index: 2; border: 1px solid #eee;
  }
  .stat-number { display: block; font-size: 2.5rem; font-family: var(--font-heading); color: var(--color-primary); font-weight: 700; line-height: 1; }
  .stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #555; font-weight: 600; }
  
  /* Icons Strip (White) */
  .icons-section { padding: 80px 0; background: #fff; border-top: 1px solid rgba(0,0,0,0.05); }
  .icons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; max-width: 1200px; margin: 0 auto; }
  .icon-box i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 15px; }
  .icon-box h4 { font-size: 1rem; text-transform: uppercase; margin: 0; letter-spacing: 1px; color: var(--color-text-main); font-weight: 700; }
  
  /* Elephant Family (Off-White) */
  .elephants-section { padding: 100px 0; background: var(--color-bg-body); }
  .elephant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
  .ele-card { text-align: center; padding: 30px 20px; transition: 0.3s; background: #fff; border-radius: 8px; border: 1px solid rgba(0,0,0,0.05); }
  .ele-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
  .ele-img { width: 180px; height: 180px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 4px solid var(--color-bg-body); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
  .ele-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
  .ele-card:hover .ele-img img { transform: scale(1.1); }
  .ele-card h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--color-primary); }
  .ele-trait { color: var(--color-accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 15px; }
  .ele-desc { font-size: 0.95rem; color: var(--color-text-light); line-height: 1.6; }
  
  /* Experiences Grid (White) */
  .experiences { padding: 100px 0; background: #fff; }
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .exp-card { background: var(--color-bg-body); border-radius: 8px; overflow: hidden; transition: 0.4s; }
  .exp-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
  .card-img { height: 250px; overflow: hidden; }
  .card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
  .exp-card:hover .card-img img { transform: scale(1.1); }
  .card-body { padding: 30px; }
  .card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
  .card-body p { font-size: 0.95rem; color: #555; }
  
  /* 6. TOURS LIST (HORIZONTAL - HOMEPAGE) */
  .tours { padding: 100px 0; background: var(--color-bg-body); }
  .tour-list { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
  .tour-row { display: grid; grid-template-columns: 200px 1fr 180px; gap: 30px; align-items: center; padding: 25px; background: #fff; border-radius: 12px; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.02); transition: all 0.4s; }
  .tour-row:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: rgba(197, 164, 126, 0.2); }
  .tour-ribbon { position: absolute; top: 15px; left: -10px; background: var(--color-accent); color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 15px; box-shadow: 2px 2px 5px rgba(0,0,0,0.2); z-index: 2; }
  .tour-ribbon::after { content: ''; position: absolute; bottom: -5px; left: 0; border-top: 5px solid #a38560; border-left: 10px solid transparent; }
  .tour-img-thumb { width: 100%; height: 160px; overflow: hidden; border-radius: 8px; position: relative; }
  .tour-img-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
  .tour-row:hover .tour-img-thumb img { transform: scale(1.1); }
  .tour-info { padding-right: 15px; }
  .tour-info h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--color-primary); font-weight: 700; }
  .tour-info p { font-size: 0.95rem; color: #666; margin-bottom: 20px; line-height: 1.5; }
  .tour-highlights { display: flex; flex-wrap: wrap; gap: 10px; }
  .tour-highlights li { font-size: 0.75rem; font-weight: 600; color: #555; background: #f4f4f4; padding: 6px 14px; border-radius: 50px; display: flex; align-items: center; gap: 6px; text-transform: uppercase; }
  .tour-highlights li i { color: var(--color-accent); }
  .tour-price-action { text-align: center; display: flex; flex-direction: column; justify-content: center; height: 100%; border-left: 1px solid #eee; padding-left: 30px; }
  .tour-price-action span { display: block; font-size: 2.2rem; font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); line-height: 1; }
  .tour-price-action small { font-size: 0.7rem; color: #999; text-transform: uppercase; margin-bottom: 20px; display: block; letter-spacing: 1px; }
  
  /* 7. REVIEWS & FAQ */
  .reviews-faq { padding: 100px 0; background: #fff; }
  .split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .review-card { background: var(--color-bg-body); padding: 30px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid var(--color-accent); }
  .stars { color: #f1c40f; margin-bottom: 10px; font-size: 1.2rem; }
  .review-card p { font-style: italic; font-size: 1rem; margin-bottom: 15px; line-height: 1.6; }
  .review-card span { font-weight: 600; font-size: 0.9rem; color: var(--color-primary); }
  .faq-item { margin-bottom: 20px; }
  .faq-item h4 { font-size: 1.1rem; color: var(--color-primary); margin-bottom: 8px; cursor: pointer; display: flex; align-items: center; gap: 10px; }
  .faq-item h4 i { color: var(--color-accent); }
  .faq-item p { font-size: 0.95rem; color: #666; padding-left: 30px; }
  
  /* 8. FORMS (FIXED & DISTINCT) */
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { margin-bottom: 25px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-primary); margin-bottom: 8px; }
  
  /* Base Input Style */
  .form-control { width: 100%; padding: 15px; border: 1px solid #ddd; background: #fff; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; border-radius: 4px; }
  .form-control:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1); }
  
  /* HOMEPAGE FORM (Dark Background Fix) */
  .booking { padding: 100px 0; background: var(--color-primary); color: #fff; }
  .booking-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
  .booking-info h3 { color: #fff; font-size: 2.5rem; margin-bottom: 20px; }
  .contact-details .cd-item { display: flex; gap: 20px; margin-bottom: 25px; }
  .cd-item i { font-size: 1.5rem; color: var(--color-accent); margin-top: 5px; }
  .cd-item label { display: block; font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }
  .cd-item span, .cd-item a { font-size: 1.1rem; color: #fff; font-weight: 600; }
  .booking-form-wrapper { background: #fff; padding: 40px; border-radius: 8px; color: #333; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
  
  /* Explicit Input Styling for Homepage */
  .booking-form-wrapper input, 
  .booking-form-wrapper select, 
  .booking-form-wrapper textarea { 
      background: #f8f8f8; 
      border: 1px solid #ccc; 
      width: 100%; padding: 12px; border-radius: 4px; font-family: inherit; font-size: 1rem;
  }
  .booking-form-wrapper input:focus,
  .booking-form-wrapper select:focus, 
  .booking-form-wrapper textarea:focus {
      background: #fff; border-color: var(--color-primary);
  }
  
  /* CONTACT PAGE FORM (Light Background) */
  .contact-section { padding: 100px 0; background: #fff; }
  .contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
  .contact-sidebar { background: var(--color-primary); color: #fff; padding: 50px; border-radius: 4px; position: relative; overflow: hidden; }
  .contact-sidebar::before { content: ''; position: absolute; inset: 0; background-image: url('../images/hero-texture.jpg'); opacity: 0.1; mix-blend-mode: overlay; }
  .contact-info-item { margin-bottom: 40px; position: relative; z-index: 2; }
  .contact-info-item i { font-size: 1.5rem; color: var(--color-accent); margin-bottom: 15px; display: block; }
  .contact-info-item h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
  .contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.6; }
  .form-container { padding: 20px 0; }
  
  /* 9. INNER PAGE GRIDS (Vertical Cards) */
  .tours-section { padding: 100px 0; background: #fff; }
  .tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin-top: 30px; }
  .tour-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: 0.4s; position: relative; display: flex; flex-direction: column; height: 100%; }
  .tour-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--color-accent); }
  .tour-card .tour-img { height: 260px; position: relative; overflow: hidden; width: 100%; }
  .tour-card .tour-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
  .tour-card:hover .tour-img img { transform: scale(1.1); }
  .tour-card .tour-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
  .tour-card .tour-badge { position: absolute; top: 20px; right: 20px; background: var(--color-accent); color: #fff; padding: 5px 15px; font-size: 0.75rem; text-transform: uppercase; font-weight: 700; border-radius: 50px; z-index: 2; }
  .tour-card .tour-title { font-size: 1.5rem; margin-bottom: 10px; color: var(--color-primary); }
  .tour-card .tour-title a { color: inherit; }
  .tour-card p { font-size: 0.95rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
  .tour-card .tour-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
  .tour-card .price-amount { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-primary); font-weight: 700; }
  
  /* 10. INNER ELEMENTS (Restored) */
  .immersive-intro { padding: 120px 0; background: url('../images/hero-texture.jpg'); background-size: cover; text-align: center; color: #fff; position: relative; border-bottom: 5px solid var(--color-accent); }
  .immersive-intro::before { content: ''; position: absolute; inset: 0; background: rgba(26, 60, 52, 0.9); }
  .intro-container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
  .intro-quote { font-family: var(--font-heading); font-size: 2.5rem; font-style: italic; margin-bottom: 20px; line-height: 1.4; }
  .intro-sub { font-size: 1.1rem; opacity: 0.9; font-weight: 300; }
  .manifesto-section { padding: 80px 0; background: #fff; }
  .manifesto-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .manifesto-item i { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 20px; display: inline-block; padding: 20px; border-radius: 50%; background: #f9f8f4; }
  .immersive-activity { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; background: var(--color-bg-body); }
  .immersive-activity.alt { background: #fff; } 
  .immersive-img { position: relative; height: 100%; min-height: 500px; }
  .immersive-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .immersive-content { padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; }
  .immersive-activity.alt .immersive-img { order: 2; } 
  .immersive-activity.alt .immersive-content { order: 1; }
  .act-number { font-family: var(--font-heading); font-size: 4rem; color: rgba(0,0,0,0.1); line-height: 1; display: block; margin-bottom: 20px; }
  .act-title { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; color: var(--color-primary); }
  .act-specs { display: flex; gap: 20px; margin-top: 30px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; color: var(--color-primary); }
  .act-specs i { color: var(--color-accent); margin-right: 5px; }
  .mahout-section { padding: 100px 0; background: var(--color-primary); color: #fff; }
  .mahout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
  .mahout-img { border-radius: 4px; box-shadow: 20px 20px 0 var(--color-accent); }
  .itinerary-track { border-left: 2px solid #eee; margin: 60px auto; max-width: 800px; padding-left: 40px; }
  .itinerary-item { margin-bottom: 50px; position: relative; }
  .itinerary-time { font-family: var(--font-heading); color: var(--color-accent); font-weight: 700; font-size: 1.1rem; }
  .itinerary-dot { position: absolute; left: -49px; top: 0; width: 16px; height: 16px; background: #fff; border: 3px solid var(--color-primary); border-radius: 50%; }
  .itinerary-content { background: #fff; padding: 25px; border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #eee; }
  .narrative-section { padding: 100px 0; background: #fff; }
  .narrative-text { font-size: 1.2rem; line-height: 2; color: #4a4a4a; max-width: 800px; margin: 0 auto; }
  .drop-cap { float: left; font-size: 5rem; line-height: 0.8; padding-right: 20px; font-family: var(--font-heading); color: var(--color-primary); }
  .highlight-quote { font-family: var(--font-heading); font-size: 2.4rem; color: var(--color-primary); font-style: italic; text-align: center; margin: 60px 0; padding: 40px; background: #f9f8f4; border-left: 4px solid var(--color-accent); }
  .founder-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 700px; }
  .founder-img-col { position: relative; background: #ccc; }
  .founder-bg { width: 100%; height: 100%; background-size: cover; background-position: center; position: absolute; inset: 0; }
  .founder-content-col { background: var(--color-primary); color: #fff; padding: 80px; display: flex; flex-direction: column; justify-content: center; }
  .yoga-badge { display: inline-block; background: var(--color-accent); color: #fff; padding: 8px 20px; font-size: 0.75rem; text-transform: uppercase; border-radius: 50px; margin-bottom: 30px; align-self: flex-start; }
  .founder-list li { margin-bottom: 20px; display: flex; gap: 15px; color: #fff; opacity: 0.9; }
  .founder-list i { color: var(--color-accent); margin-top: 5px; }
  .trust-section { padding: 100px 0; background: #f9f8f4; text-align: center; }
  .trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 50px; }
  .trust-item { background: #fff; padding: 40px 20px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
  .trust-icon { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 20px; display: block; }
  .trust-item h4 { color: var(--color-primary); margin-bottom: 10px; font-size: 1.2rem; }
  .timeline-block { padding: 100px 0; background: #fff; }
  .timeline-container { position: relative; max-width: 1000px; margin: 0 auto; }
  .timeline-container::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #ddd; transform: translateX(-50%); }
  .timeline-row { display: flex; justify-content: flex-end; padding-bottom: 60px; width: 50%; position: relative; }
  .timeline-row:nth-child(even) { align-self: flex-end; margin-left: auto; justify-content: flex-start; text-align: left; padding-left: 60px; }
  .timeline-row:nth-child(odd) { margin-right: auto; text-align: right; padding-right: 60px; }
  .year-badge { display: block; font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-primary); font-weight: 700; margin-bottom: 10px; }
  .timeline-dot { position: absolute; top: 0; width: 20px; height: 20px; background: var(--color-accent); border: 4px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--color-accent); z-index: 2; }
  .timeline-row:nth-child(odd) .timeline-dot { right: -11px; }
  .timeline-row:nth-child(even) .timeline-dot { left: -11px; }
  .visual-story { padding: 100px 0; background: #f4f1ea; }
  .masonry-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 20px; }
  .masonry-item { position: relative; overflow: hidden; border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
  .masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
  .masonry-item:hover img { transform: scale(1.1); }
  .masonry-item.wide { grid-column: span 2; }
  .masonry-item.tall { grid-row: span 2; }
  .herd-intro { padding: 100px 0; background: #fff; text-align: center; position: relative; }
  .herd-intro::before { content: '"'; font-family: var(--font-heading); font-size: 10rem; color: var(--color-accent); opacity: 0.15; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); }
  .star-profile-section { padding: 80px 0; background-color: #f4f1ea; }
  .star-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 120px; }
  .star-row:nth-child(even) { flex-direction: row-reverse; }
  .star-img-wrapper { width: 45%; height: 600px; position: relative; z-index: 2; background: #ddd; }
  .star-img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; box-shadow: 20px 20px 0 var(--color-accent); }
  .star-row:nth-child(even) .star-img { box-shadow: -20px 20px 0 var(--color-accent); }
  .star-content { width: 45%; padding: 50px; background: #fff; box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
  .star-bg-name { position: absolute; top: -40px; left: -20px; font-family: var(--font-heading); font-size: 8rem; color: rgba(0,0,0,0.03); z-index: 1; }
  .star-name { font-size: 4rem; color: var(--color-primary); margin-bottom: 10px; line-height: 1; position: relative; z-index: 2; }
  .star-tags { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
  .tag { font-size: 0.75rem; text-transform: uppercase; padding: 5px 15px; border-radius: 50px; font-weight: 600; }
  .tag-age { background: #e0e0e0; color: #555; }
  .tag-personality { background: var(--color-primary); color: #fff; }
  .star-bio { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.8; }
  .star-data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid #eee; padding-top: 25px; }
  .data-point label { display: block; font-size: 0.75rem; text-transform: uppercase; color: #999; }
  .data-point span { font-family: var(--font-heading); font-size: 1.3rem; color: var(--color-primary); font-weight: 600; }
  .mid-page-break { padding: 120px 0; background-image: url('../images/hero-texture.jpg'); background-size: cover; text-align: center; color: #fff; position: relative; }
  .mid-page-break::before { content: ''; position: absolute; inset: 0; background: rgba(26, 60, 52, 0.85); }
  .break-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
  .break-quote { font-family: var(--font-heading); font-size: 2.5rem; font-style: italic; line-height: 1.4; }
  
  /* 11. TOUR DETAIL PAGES */
  .tour-detail-section { padding: 100px 0; background: #fff; }
  .tour-content h2 { margin-bottom: 20px; color: var(--color-primary); }
  .tour-features li { margin-bottom: 12px; display: flex; align-items: center; }
  .tour-sidebar { background: var(--color-bg-body); padding: 40px; border-radius: 8px; border: 1px solid #eee; }
  .tour-price-box { margin-bottom: 30px; text-align: center; }
  .tour-meta-list li { border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 15px; margin-bottom: 15px; }
  .tour-meta-list li:last-child { border-bottom: none; }
  .content-page { padding: 100px 0; background: #fff; min-height: 60vh; }
  .content-wrapper { max-width: 800px; margin: 0 auto; }
  .content-wrapper h1 { font-size: 3.5rem; margin-bottom: 2rem; color: var(--color-primary); }
  .content-wrapper h2 { font-size: 2rem; margin: 2rem 0 1rem; color: var(--color-primary); }
  .content-wrapper p { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 1.5rem; }
  .content-wrapper ul { list-style: disc; padding-left: 20px; margin-bottom: 1.5rem; }
  .content-wrapper ul li { margin-bottom: 10px; font-size: 1.1rem; color: #444; }
  .logistics-section { padding: 80px 0; background: #f9f8f4; border-top: 1px solid #eee; }
  .logistics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .logistics-card { background: #fff; padding: 30px; border-left: 4px solid var(--color-accent); box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
  .map-section { height: 450px; width: 100%; filter: grayscale(20%); } 
  .map-section iframe { width: 100%; height: 100%; border: 0; }
  
  /* 12. FOOTER & CTA */
  .premium-cta { padding: 120px 0; background-image: url('../images/hero-texture.jpg'); background-size: cover; text-align: center; color: #fff; position: relative; background-color: #333; border-bottom: 5px solid var(--color-accent); }
  .premium-cta::before { content: ''; position: absolute; inset: 0; background: rgba(26,60,52,0.92); }
  .premium-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
  .premium-cta h2 { color: #fff; font-size: 4rem; margin-bottom: 20px; font-family: var(--font-heading); }
  .premium-cta p { font-size: 1.3rem; opacity: 0.9; margin-bottom: 50px; font-weight: 300; }
  .cta-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
  .premium-cta.light-mode { background-image: none; background-color: #fff; color: var(--color-primary); border-top: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .premium-cta.light-mode::before { display: none; }
  .premium-cta.light-mode h2 { color: var(--color-primary); }
  .premium-cta.light-mode p { color: #666; }
  .premium-cta.light-mode .btn-white { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
  .premium-cta.light-mode .btn-outline-white { border-color: var(--color-primary); color: var(--color-primary); }
  .site-footer { background-color: var(--color-primary); color: #f0f0f0; padding: 80px 0 0; position: relative; border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .footer-top { display: flex; flex-wrap: wrap; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-brand { flex: 1 1 300px; max-width: 400px; }
  
  /* FIXED: Footer Logo Filter (Visible on Dark) */
  .footer-logo-img { height: 90px; width: auto; margin-bottom: 20px; object-fit: contain; }
  
  .footer-mission { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 20px; line-height: 1.8; }
  .footer-nav { flex: 2 1 500px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; }
  .footer-col h4 { color: var(--color-accent); font-size: 1.1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul li a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: 0.3s; }
  .footer-col ul li a:hover { color: var(--color-accent); padding-left: 5px; }
  .newsletter-box { display: flex; margin-top: 15px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 5px; max-width: 300px; }
  .newsletter-box input { background: transparent; border: none; color: #fff; width: 100%; outline: none; padding: 10px 0; }
  .newsletter-box button { background: none; border: none; color: var(--color-accent); cursor: pointer; font-size: 1.2rem; }
  .social-icons { display: flex; gap: 20px; margin-top: 30px; }
  .social-icons a { color: #fff; font-size: 1.2rem; opacity: 0.7; transition: 0.3s; }
  .social-icons a:hover { opacity: 1; color: var(--color-accent); transform: translateY(-3px); }
  .footer-bottom { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
  .footer-legal a { color: rgba(255,255,255,0.5); margin-left: 20px; }
  
  /* 9. RESPONSIVE */
  @media (max-width: 900px) {
      .header-title, .hero-title, .hero-big-text { font-size: 3.5rem; }
      .intro-layout, .split-layout, .intro-grid, .booking-box, .contact-wrapper, .founder-split, .immersive-activity, .immersive-activity.alt, .mahout-grid, .custom-tour-grid, .manifesto-grid, .policy-grid, .tours-grid, .icons-grid, .cards-grid, .elephant-grid, .logistics-grid { grid-template-columns: 1fr; gap: 40px; }
      .intro-img-main, .ele-img, .card-img, .tour-img, .philo-img, .immersive-img, .star-img-wrapper, .star-content { width: 100%; margin: 0 !important; }
      .philo-img { height: 400px; min-height: auto; }
      .star-row, .star-row:nth-child(even) { flex-direction: column; gap: 40px; margin-bottom: 80px; }
      .star-bg-name { font-size: 5rem; top: 0; }
      .immersive-activity { height: auto; padding: 60px 0; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .timeline-container::before { left: 20px; }
      .timeline-row { width: 100%; margin-left: 0 !important; padding-left: 60px !important; text-align: left !important; }
      .timeline-row:nth-child(odd) .timeline-dot, .timeline-row:nth-child(even) .timeline-dot { left: 10px; right: auto; }
      .tour-img-thumb { display: none; } 
      .tour-row { grid-template-columns: 1fr; text-align: center; gap: 20px; }
      .tour-price-action { border-left: none; margin: 20px 0; padding-left: 0; }
  }
  @media (max-width: 600px) {
      .masonry-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
  }

  /* ===================================
   FIXED STICKY NAVIGATION CSS
   =================================== */
.navbar { 
   position: fixed; 
   top: 0; 
   width: 100%; 
   z-index: 99999; /* Highest priority */
   padding: 20px 0; 
   transition: all 0.4s ease-in-out; 
   background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent); /* Default transparent */
}

/* The class added by JavaScript on scroll */
.navbar.scrolled { 
   background-color: #206d5b !important; /* Solid Deep Jungle Green */
   padding: 12px 0; 
   box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

.navbar.scrolled .nav-logo { 
   height: 60px; 
   /* Ensure logo stays white on dark background */
}

.navbar.scrolled .nav-item { 
   color: #ffffff !important; /* Keep text white */
   text-shadow: none; 
}

.navbar.scrolled .btn-nav {
   border-color: #c5a47e; /* Gold border */
   color: #c5a47e !important;
}