/* ─────────────────────────────────────────────────
   Eaktu Anyarakam – Main Stylesheet
   Color Palette:
   --primary    : #1E3A2F  (Deep Forest Green)
   --secondary  : #C9A84C  (Golden Amber)
   --accent     : #2D5A3D  (Medium Forest Green)
   --dark       : #0D1F17  (Very Dark Green)
   --light-bg   : #F4F7F5  (Soft mint white)
   --text-dark  : #1A1A1A
   --text-light : #F8F9FA
   --border     : #E0E7E4
───────────────────────────────────────────────── */

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --primary: #1E3A2F;
  --secondary: #C9A84C;
  --accent: #2D5A3D;
  --dark: #0D1F17;
  --light-bg: #F4F7F5;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #6B7B72;
  --border: #DDE4E0;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

/* Fix for mobile viewport spacing */
@media (max-width: 768px) {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Improve touch targets */
  a, button, input, select, textarea {
    min-height: 44px;
  }
  
  /* Better text readability on mobile */
  body {
    font-size: 15px;
    line-height: 1.65;
  }
  
  /* Improve section spacing */
  .section-pad {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; }

/* ─── Utility Classes ───────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 20px; }
}

@media (max-width: 768px) {
  .container, .container-wide { padding: 0 16px; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 14px; }
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--secondary); }
.text-green { color: var(--primary); }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #B8953E 100%);
  color: var(--dark);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #B8953E 0%, #A88535 100%);
  border-color: #B8953E;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
}
.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}
.btn-outline:active {
  transform: translateY(-1px);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(30,58,47,0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #1E3A2F 100%);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30,58,47,0.5);
}
.btn-green:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(30,58,47,0.4);
}

.btn-sm { 
  padding: 10px 24px; 
  font-size: 0.875rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.btn-lg { 
  padding: 18px 48px; 
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Responsive button adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    width: auto;
    min-width: 140px;
  }
  .btn-sm {
    padding: 9px 20px;
    font-size: 0.85rem;
    min-width: 120px;
  }
  .btn-lg {
    padding: 15px 36px;
    font-size: 1rem;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
    width: 100%;
    max-width: 100%;
  }
  .btn-sm {
    padding: 10px 20px;
    font-size: 0.825rem;
  }
  .btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}

/* ─── Section Titles ────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── Loader ─────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
}
.loader-logo span { color: var(--secondary); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: var(--secondary);
  border-radius: 2px;
  animation: loading 1.2s ease infinite;
}
@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── Navbar ─────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
  background: transparent;
}

#navbar.scrolled {
  background: #0D1F17;
  background: rgba(13,31,23,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 900;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.nav-logo-text .tagline {
  font-size: 0.65rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero Slider ────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,31,23,0.3) 0%,
    rgba(13,31,23,0.55) 50%,
    rgba(13,31,23,0.8) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-text {
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--secondary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  position: relative;
}

.hero-dot:hover {
  background: rgba(255,255,255,0.8);
  transform: scale(1.2);
}

.hero-dot.active {
  background: var(--secondary);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(201,168,76,0.6);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-arrow:hover { 
  background: linear-gradient(135deg, var(--secondary) 0%, #B8953E 100%);
  color: var(--dark);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev { left: 28px; }
.hero-arrow.next { right: 28px; }

/* Mobile hero controls */
@media (max-width: 768px) {
  .hero-controls {
    bottom: 24px;
    padding: 10px 16px;
    gap: 10px;
  }
  
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-dot.active {
    width: 24px;
  }
  
  .hero-arrow {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .hero-arrow.prev { left: 16px; }
  .hero-arrow.next { right: 16px; }
}

@media (max-width: 480px) {
  .hero-controls {
    bottom: 20px;
    padding: 8px 14px;
    gap: 8px;
  }
  
  .hero-dot {
    width: 7px;
    height: 7px;
  }
  
  .hero-dot.active {
    width: 20px;
  }
  
  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
  }
  
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Hero Responsive Improvements */
@media (max-width: 1024px) {
  #hero {
    min-height: 600px;
    height: 90vh;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }
  
  .hero-stat .num {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 550px;
    height: 85vh;
  }
  
  .hero-content {
    padding-top: 100px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  
  .hero-eyebrow::before {
    width: 24px;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  
  .hero-actions {
    gap: 12px;
    margin-bottom: 36px;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .hero-stat .num {
    font-size: 1.5rem;
  }
  
  .hero-stat .lbl {
    font-size: 0.75rem;
  }
  
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 500px;
    height: 80vh;
  }
  
  .hero-content {
    padding-top: 90px;
  }
  
  .hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat .num {
    font-size: 1.35rem;
  }
  
  .hero-stat .lbl {
    font-size: 0.7rem;
  }
}

/* ─── Search Bar ─────────────────────────────────── */
#search-section {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0,0,0,0.2);
  padding: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.search-field label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.search-field input,
.search-field select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  cursor: pointer;
  appearance: none;
}

.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23C9A84C' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

.search-field input:hover,
.search-field select:hover {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.search-field input:focus,
.search-field select:focus {
  border-color: var(--secondary);
  background: #FFFEF9;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 4px 12px rgba(0,0,0,0.1);
  outline: none;
}

.search-divider {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  align-self: flex-end;
  margin-bottom: 8px;
}

/* Mobile search improvements */
@media (max-width: 1024px) {
  .search-card {
    padding: 32px 28px;
    gap: 20px;
  }
  
  .search-field {
    min-width: 180px;
  }
  
  .search-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  #search-section {
    margin-top: -32px;
  }
  
  .search-card {
    padding: 28px 20px;
    gap: 16px;
    border-radius: var(--radius-md);
  }
  
  .search-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .search-field input,
  .search-field select {
    padding: 13px 16px;
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  .search-field label {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  #search-section {
    margin-top: -24px;
  }
  
  .search-card {
    padding: 24px 16px;
    gap: 14px;
  }
}

/* ─── Destinations ───────────────────────────────── */
#destinations {
  background: var(--light-bg);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.dest-card:first-child,
.dest-card:nth-child(4) {
  grid-row: span 2;
  aspect-ratio: unset;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dest-card:hover img { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,23,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dest-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-tagline { font-size: 0.85rem; color: var(--secondary); font-weight: 500; }
.dest-tours { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(13,31,23,0.92) 0%, rgba(13,31,23,0.2) 60%);
}

/* ─── Tour Filter ────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,47,0.25);
}

/* ─── Tour Cards ─────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.5s ease both;
  border: 1px solid var(--border);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card:hover .tour-card-img img { transform: scale(1.08); }

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tour-card-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  border: none;
}
.tour-card-wishlist:hover,
.tour-card-wishlist.active { background: var(--white); color: #e53935; }

.tour-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tour-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  background: var(--light-bg);
  color: var(--text-muted);
  border-radius: 50px;
  font-weight: 600;
}

.tour-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.tour-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}

.meta-item i { color: var(--secondary); font-size: 0.9rem; }

.tour-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.stars { color: var(--secondary); font-size: 0.85rem; }
.rating-num { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }

.tour-card-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-card-price {
  display: flex;
  flex-direction: column;
}
.price-from { font-size: 0.75rem; color: var(--text-muted); }
.price-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.tour-card-cta {
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.tour-card-cta:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateX(4px);
}

/* ─── Why Choose Us ──────────────────────────────── */
#features {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--secondary);
  color: var(--dark);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ─── Process / Booking Steps ────────────────────── */
#booking-steps {
  background: var(--light-bg);
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 32px 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}

.step-num i {
  font-size: 1.4rem;
  color: var(--secondary);
}

.step-card:hover .step-num {
  background: var(--secondary);
  transform: scale(1.1);
}

.step-card:hover .step-num i { color: var(--dark); }

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── About / Story Section ──────────────────────── */
#about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 540px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--secondary);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(201,168,76,0.5);
  z-index: 10;
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge .text {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-feature:hover {
  border-color: var(--secondary);
  background: #FFF9ED;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-text .title { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.about-feature-text .desc { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ─── Testimonials ───────────────────────────────── */
#testimonials {
  background: var(--light-bg);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testi-rating { margin-bottom: 16px; color: var(--secondary); font-size: 0.95rem; }

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testi-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.25;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.testi-info .name { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.testi-info .details { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.testi-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ─── CTA Banner ─────────────────────────────────── */
#cta-section {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  text-align: center;
}

#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-phones {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-phone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.cta-phone-item i { color: var(--secondary); font-size: 1.1rem; }

/* ─── Contact Section ──────────────────────────────── */
#contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--primary);
  color: var(--secondary);
}

.contact-item-content .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-content .value {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group.full { grid-column: 1/-1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text-dark);
  transition: all 0.3s ease;
  resize: vertical;
  font-family: var(--font-body);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(201,168,76,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 4px 8px rgba(0,0,0,0.08);
  outline: none;
  background: #FFFEF9;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}

/* Mobile form improvements */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 16px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .form-group label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
}

/* ── Contact Form Enhancements ── */
.cf-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: linear-gradient(90deg, rgba(201,168,76,0.12), transparent);
  border-left: 3px solid var(--secondary);
  padding: 7px 14px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf-section-label i { color: var(--secondary); font-size: 0.95rem; }

.cf-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.cf-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  transition: var(--transition);
  user-select: none;
}
.cf-checkbox:hover {
  border-color: var(--secondary);
  background: rgba(201,168,76,0.06);
}
.cf-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--secondary);
  flex-shrink: 0;
  margin: 0;
}
.cf-checkbox input[type=checkbox]:checked + span {
  color: var(--primary);
  font-weight: 700;
}
.cf-checkbox span { display: flex; align-items: center; gap: 5px; }
.cf-checkbox span i { color: var(--secondary); font-size: 0.85rem; }
@media (max-width: 640px) {
  .cf-checkbox-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--primary);
}
.form-success i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 12px; display: block; }
.form-success.show { display: block; }

/* ─── Map ───────────────────────────────────────── */
#map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ─── Footer ─────────────────────────────────────── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand .logo-icon {
  width: 46px;
  height: 46px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 900;
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer !important;
  text-decoration: none;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}
.footer-social-link::before,
.footer-social-link::after {
  pointer-events: none !important;
}
.footer-social-link i {
  position: relative;
  z-index: 11;
  pointer-events: none !important;
}
.footer-social-link:hover { background: var(--secondary); color: var(--dark); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--secondary); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--secondary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.88rem; line-height: 1.6; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { color: var(--secondary); }

/* ─── Back to Top ────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--secondary) 0%, #B8953E 100%);
  color: var(--dark);
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { 
  transform: translateY(-6px) scale(1.1); 
  box-shadow: 0 10px 32px rgba(201,168,76,0.6);
  background: linear-gradient(135deg, #B8953E 0%, #A88535 100%);
}
#back-to-top:active {
  transform: translateY(-3px) scale(1.05);
}

/* ─── WhatsApp Float ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 88px;
  right: 32px;
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-green 2.5s ease infinite;
  position: relative;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.whatsapp-btn:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 36px rgba(37,211,102,0.7);
  animation: none;
}

.whatsapp-btn:hover::before {
  opacity: 0.3;
  animation: ripple 1s ease-out;
}

.whatsapp-btn:active {
  transform: scale(1.05);
}

@keyframes pulse-green {
  0%, 100% { 
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 8px 40px rgba(37,211,102,0.8);
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile adjustments for float buttons */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }
  
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  #back-to-top {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 70px;
    right: 16px;
  }
  
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
  
  #back-to-top {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
}

/* ─── Tour Detail Page ───────────────────────────── */
.tour-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.tour-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,23,0.3), rgba(13,31,23,0.75));
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}

.itinerary-timeline { margin-top: 32px; }

.itinerary-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.itinerary-item::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 40px;
  bottom: -32px;
  width: 2px;
  background: var(--border);
}
.itinerary-item:last-child::before { display: none; }

.itinerary-day {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.day-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
  box-shadow: 0 4px 16px rgba(30,58,47,0.3);
}

.day-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }

.itinerary-content {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 3px solid var(--secondary);
  flex: 1;
}

.itinerary-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.itinerary-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.itinerary-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.itinerary-meta span i { color: var(--secondary); }
.itinerary-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Booking Sidebar */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.booking-card-header {
  background: var(--primary);
  padding: 28px 28px 24px;
  color: var(--white);
}

.booking-card-header .tour-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-card-body { padding: 28px; }

.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.booking-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}
.booking-meta-item .key { color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.booking-meta-item .key i { color: var(--secondary); width: 16px; }
.booking-meta-item .val { font-weight: 700; color: var(--primary); }

.booking-highlights {
  margin-bottom: 24px;
}
.booking-highlights h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.booking-highlights ul { display: flex; flex-direction: column; gap: 8px; }
.booking-highlights li { font-size: 0.88rem; color: var(--text-dark); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.booking-highlights li i { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }

/* ─── Gallery Grid ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--secondary); color: var(--dark); }

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Mobile Nav ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu a {
  padding: 14px 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { color: var(--secondary); padding-left: 8px; }
.mobile-menu a i { width: 20px; color: var(--secondary); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child,
  .dest-card:nth-child(4) { grid-row: auto; aspect-ratio: 4/3; }
  .steps-wrapper { grid-template-columns: 1fr 1fr; }
  .steps-wrapper::before { display: none; }
  .search-card { flex-direction: column; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 1.5rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 90%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-images { height: 320px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-arrow { display: none; }
}

/* ─── Tour Detail Tabs ───────────────────────────── */
.tour-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tour-tab-btn {
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: var(--transition);
}
.tour-tab-btn.active,
.tour-tab-btn:hover { color: var(--primary); border-bottom-color: var(--secondary); }

.tour-tab-content { display: none; }
.tour-tab-content.active { display: block; }

.inclusions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.inclusion-item,
.exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.inclusion-item i { color: #2e7d32; flex-shrink: 0; margin-top: 2px; }
.exclusion-item i { color: #c62828; flex-shrink: 0; margin-top: 2px; }

/* ─── Page Header (inner pages) ─────────────────── */
.page-header {
  background: var(--primary);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=80') center/cover;
  opacity: 0.12;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.page-breadcrumb a { color: var(--secondary); }
.page-breadcrumb i { font-size: 0.7rem; }

/* ─── Notification Toast ─────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.toast i { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
  margin-top: 76px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(13,31,23,0.85) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 8px;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.65rem; color: rgba(255,255,255,0.4); }
.breadcrumb span { color: rgba(255,255,255,0.75); }

/* Tour Hero (detail page) */
.tour-hero {
  position: relative;
  height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
  margin-top: 76px;
}
.tour-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tour-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(13,31,23,0.9) 100%);
  z-index: 1;
}
.tour-hero-content {
  position: relative;
  z-index: 2;
}
.tour-hero-meta { margin-bottom: 12px; }
.tour-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--secondary);
}
.tour-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 8px 0 14px;
  line-height: 1.2;
}
.tour-hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tour-hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* ════════════════════════════════════════════════════════════════
   TOUR DETAIL LAYOUT
════════════════════════════════════════════════════════════════ */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Tour Gallery Grid */
.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.tour-gallery-grid .gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.tour-gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.tour-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-gallery-grid .gallery-item:hover img { transform: scale(1.08); }

/* Tour Highlights Strip */
.tour-highlights-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.highlight-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: #fff;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
}
.highlight-chip i { color: var(--secondary); }

/* Section Label */
.section-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Detail Tabs */
.detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.detail-tab {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.detail-tab:hover { color: var(--primary); }
.detail-tab.active {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}
.detail-tab-content { display: none; }
.detail-tab-content.active { display: block; }

/* Inclusions / Exclusions */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.inclusions-block {}
.inclusions-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.inclusions-title.included i { color: #2e7d32; }
.inclusions-title.excluded i { color: #c62828; }
.inclusions-list li,
.exclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  list-style: none;
}
.inclusions-list li i { color: #2e7d32; margin-top: 2px; flex-shrink: 0; }
.exclusions-list li i { color: #c62828; margin-top: 2px; flex-shrink: 0; }

.policy-block {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--border);
}
.policy-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
#tour-child-policy li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
#tour-child-policy li i { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

.sightseeing-content {
  padding-top: 8px;
}

/* Booking Sidebar */
.tour-sidebar {
  position: sticky;
  top: 96px;
}
.sidebar-booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.sidebar-booking-card .sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.sidebar-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.sidebar-meta-item i { color: var(--secondary); width: 16px; }
.sidebar-highlights-section h4,
.sidebar-procedure-section h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-highlights-section h4 i { color: var(--secondary); }
#sidebar-highlights {
  padding: 0;
  margin: 0 0 20px;
}
#sidebar-highlights li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 4px 0;
}
#sidebar-highlights li i { color: var(--secondary); font-size: 0.65rem; }
.sidebar-contact-card {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-contact-head {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.sidebar-contact-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sidebar-contact-wa,
.sidebar-contact-ph {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 0;
}
.sidebar-contact-wa i { color: #25D366; }
.sidebar-contact-ph i { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════════
   TOURS LISTING PAGE
════════════════════════════════════════════════════════════════ */
.tours-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tours-search {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 440px;
}
.tours-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.tours-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: #fff;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.tours-search input:focus { border-color: var(--primary); }
.tours-count {
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tours-count span { font-weight: 700; color: var(--primary); }
.tours-grid.large { grid-template-columns: repeat(3, 1fr); }
.tours-loading {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}
.tours-loading i { font-size: 2rem; color: var(--secondary); margin-bottom: 12px; display: block; }
.no-results {
  text-align: center;
  padding: 80px 20px;
}
.no-results-icon {
  font-size: 3rem;
  color: var(--border);
  margin-bottom: 16px;
}
.no-results h3 { font-family: var(--font-heading); color: var(--primary); margin-bottom: 8px; }
.no-results p { color: var(--text-muted); margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════════
   CTA PHONES
════════════════════════════════════════════════════════════════ */
.cta-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
}
.cta-phone-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cta-phone-item i { color: var(--secondary); }
.cta-phone-item a { color: inherit; text-decoration: none; }
.cta-phone-item a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2,
.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.contact-item-content .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-content .value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item-content a { color: var(--primary); text-decoration: none; }
.contact-item-content a:hover { color: var(--secondary); }

.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--primary); color: var(--secondary); border-color: var(--primary); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: var(--secondary); margin-bottom: 12px; display: block; }

/* Quick Contact Cards */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
.quick-contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.qc-icon {
  width: 44px;
  height: 44px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.qc-icon.wa { background: #e8f5e9; color: #25D366; }
.qc-icon.email { background: #fff3e0; color: #f57c00; }
.qc-icon.location { background: #fce4ec; color: #e91e63; }
.qc-content { display: flex; flex-direction: column; gap: 3px; }
.qc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; }
.qc-value { font-size: 0.88rem; font-weight: 700; color: var(--primary); text-decoration: none; display: block; }
.qc-value:hover { color: var(--secondary); }
.qc-sub { font-size: 0.77rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item.open,
.faq-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-question i { font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-question i { transform: rotate(45deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════════
   ABOUT PAGE - STATS & TEAM
════════════════════════════════════════════════════════════════ */
.stats-section { background: var(--light-bg); }
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.team-overlay a:hover { transform: scale(1.15); }
.team-info {
  padding: 20px 24px;
}
.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-info .role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team-info p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feature-text .title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.about-feature-text .desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE – NEW COMPONENTS
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .quick-contact-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .tours-grid.large { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .stats-section .stats-grid-inner,
  .stats-section [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2,1fr) !important; }
  .page-hero { height: 360px; }
  .tour-hero { height: 420px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  #team-container { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .quick-contact-grid { grid-template-columns: 1fr; }
  .tours-grid.large { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tour-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .tour-gallery-grid .gallery-item:first-child { grid-column: span 2; }
  .detail-tabs { gap: 0; }
  .detail-tab { padding: 10px 14px; font-size: 0.8rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  #team-container { grid-template-columns: 1fr !important; max-width: 360px !important; }
  .tour-detail-layout { gap: 32px; }
  .page-hero { height: 300px; margin-top: 68px; }
  .tour-hero { height: 360px; margin-top: 68px; }
  .contact-form { padding: 24px 20px; }
  .sidebar-booking-card { padding: 20px; }
}


/* ═══════════════════════════════════════════════════
   ENHANCED RESPONSIVE & MOBILE IMPROVEMENTS
═══════════════════════════════════════════════════ */

/* Better touch targets for mobile */
@media (max-width: 768px) {
  a:not(.btn), button:not(.btn) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  
  /* Improve CTA sections on mobile */
  .cta-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Better contact items on mobile */
  .contact-item {
    padding: 12px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
  }
  
  /* Improve social links */
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-link {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  /* Stack everything nicely */
  .contact-grid,
  .about-features,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  /* Better spacing */
  .section-pad {
    padding: 48px 0;
  }
  
  /* Improve hero sections */
  .hero-content h1,
  .page-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
    line-height: 1.2 !important;
  }
  
  /* Better card layouts */
  .tour-card,
  .feature-card,
  .destination-card {
    margin-bottom: 16px;
  }
}

/* Landscape mobile improvements */
@media (max-width: 900px) and (orientation: landscape) {
  .section-pad {
    padding: 48px 0;
  }
  
  .hero-section {
    min-height: 70vh;
  }
}

/* Tablet improvements */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .btn {
    padding: 13px 30px;
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Large screen improvements */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section-title {
    font-size: 3.5rem;
  }
  
  .btn-lg {
    padding: 20px 52px;
    font-size: 1.1rem;
  }
}

/* Improve hover states for touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn:hover {
    transform: none;
  }
  
  .btn:active {
    transform: scale(0.97);
  }
  
  .tour-card:hover,
  .feature-card:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .mobile-menu,
  #page-loader {
    display: none !important;
  }
  
  .container {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════
   HOMESTAY DETAIL RESPONSIVE IMPROVEMENTS
═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  #homestay-detail > div > div:first-child {
    height: 350px !important;
  }
  
  #homestay-detail > div > div:nth-child(2) > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  #homestay-detail > div > div:nth-child(2) > div > div:last-child > div {
    position: static !important;
  }
}

@media (max-width: 768px) {
  #homestay-detail > div {
    border-radius: 16px !important;
    margin-bottom: 32px !important;
  }
  
  #homestay-detail > div > div:first-child {
    height: 300px !important;
  }
  
  #homestay-detail > div > div:first-child > div:last-child {
    padding: 24px 20px !important;
  }
  
  #homestay-detail > div > div:first-child > div:last-child h1 {
    font-size: 1.75rem !important;
  }
  
  #homestay-detail > div > div:nth-child(2) {
    padding: 28px 20px !important;
  }
  
  #homestay-detail > div > div:nth-child(2) > div {
    gap: 28px !important;
  }
  
  #homestay-detail h3 {
    font-size: 1.3rem !important;
  }
  
  /* Amenities grid to single column on mobile */
  #homestay-detail > div > div:nth-child(2) > div > div:first-child > div:last-child > div {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  
  /* Booking card adjustments */
  #homestay-detail > div > div:nth-child(2) > div > div:last-child > div {
    padding: 24px 20px !important;
  }
}

@media (max-width: 480px) {
  #homestay-detail > div {
    border-radius: 12px !important;
  }
  
  #homestay-detail > div > div:first-child {
    height: 250px !important;
  }
  
  #homestay-detail > div > div:first-child > div:last-child {
    padding: 20px 16px !important;
  }
  
  #homestay-detail > div > div:first-child > div:last-child h1 {
    font-size: 1.5rem !important;
  }
  
  #homestay-detail > div > div:nth-child(2) {
    padding: 24px 16px !important;
  }
  
  #homestay-detail h3 {
    font-size: 1.2rem !important;
  }
  
  /* Amenity cards smaller padding */
  #homestay-detail > div > div:nth-child(2) > div > div:first-child > div:last-child > div > div {
    padding: 12px 14px !important;
  }
  
  #homestay-detail > div > div:nth-child(2) > div > div:first-child > div:last-child > div > div > div {
    width: 36px !important;
    height: 36px !important;
  }
}
