/* ============================================
   MURAGALA.COM - Main Stylesheet
   Sri Lanka Tourism - White & Light Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Noto+Serif+Sinhala:wght@400;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --light-bg: #F5F0E8;
  --text-dark: #1A1208;
  --text-mid: #4A3F28;
  --text-light: #7A6D55;
  --accent: #2D5C3A;
  --accent-light: #4A8C5C;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
  --radius: 4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

.display-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

p { color: var(--text-mid); line-height: 1.8; }

/* ===== UTILITY ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-light { background: var(--light-bg); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes rotateSlowly {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(201,168,76,0); }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 60px; }
}

@keyframes slideHero {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.1) translateX(-2%); }
}

.animate-fadeUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scale { animation: scaleIn 0.8s ease forwards; }
.animate-float { animation: floatY 4s ease-in-out infinite; }

/* Scroll-triggered animation base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--text-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader img { width: 200px; animation: scaleIn 0.5s ease; }
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: barFill 2s ease forwards;
}
@keyframes barFill {
  from { width: 0; }
  to { width: 100%; }
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 50px; transition: var(--transition); }
.nav-logo img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

/* On hero - white links */
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
#navbar:not(.scrolled) .nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: white !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
  content: '▾';
  position: absolute;
  right: -16px;
  font-size: 0.7rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: var(--transition);
  padding: 0.5rem 0;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-dark) !important;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.dropdown-menu a:hover {
  color: var(--gold) !important;
  background: var(--cream);
  border-left-color: var(--gold);
}
.dropdown-menu a::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}
#navbar:not(.scrolled) .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  overflow-y: auto;
  transition: right 0.4s ease;
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 10px; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slides { position: relative; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,18,8,0.65) 0%,
    rgba(26,18,8,0.3) 60%,
    rgba(26,18,8,0.5) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}

.hero-text {
  max-width: 750px;
  color: white;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  animation: fadeInLeft 1s ease 0.3s both;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: floatY 2s ease-in-out infinite;
}

.hero-nav {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: white;
  font-size: 1.2rem;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: white;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: white;
  color: var(--text-dark);
  border-color: white;
}
.btn-dark {
  background: var(--text-dark);
  color: white;
}
.btn-dark:hover { background: var(--text-mid); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--text-dark);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: 8rem 0;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.welcome-images {
  position: relative;
  height: 600px;
}
.welcome-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 80%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.welcome-img-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 55%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid white;
}
.welcome-img-main img,
.welcome-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.welcome-img-main:hover img,
.welcome-img-accent:hover img { transform: scale(1.05); }

.welcome-badge {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(201,168,76,0.5);
}
.welcome-badge strong { font-size: 2rem; line-height: 1; font-family: 'Cormorant Garamond', serif; }
.welcome-badge span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }

.welcome-text { padding-right: 2rem; }
.welcome-text .section-subtitle { display: block; margin-bottom: 1rem; }
.welcome-text .section-title { margin-bottom: 1.5rem; }
.welcome-text p { margin-bottom: 1.5rem; color: var(--text-mid); }

.feature-list { margin: 2rem 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-text span { font-size: 0.82rem; color: var(--text-light); }

/* ===== TOURS SECTION ===== */
.tours-section {
  padding: 6rem 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header p { color: var(--text-mid); margin-top: 1rem; }

/* Search & Filter */
.search-filter-bar {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.search-input-wrap {
  flex: 1;
  min-width: 250px;
  position: relative;
}
.search-input-wrap input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 3rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.search-input-wrap input:focus { border-color: var(--gold); background: white; }
.search-input-wrap .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
}
.filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-tag {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  color: var(--text-mid);
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* Tour Cards Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.tour-card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.08); }

.tour-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tour-badge-days {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
}

.tour-card-body {
  padding: 1.5rem;
}
.tour-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}
.tour-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tour-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.tour-meta-item span { font-size: 1rem; }

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.tour-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; }
.tour-price strong { color: var(--gold); font-size: 1.3rem; }

/* ===== DESTINATIONS ===== */
.destinations-section { padding: 6rem 0; }
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 1rem;
}
.dest-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.dest-item:first-child { grid-row: span 2; }
.dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-item:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.dest-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  color: white;
}
.dest-label h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.2rem;
}
.dest-label span { font-size: 0.72rem; color: rgba(255,255,255,0.7); letter-spacing: 0.15em; text-transform: uppercase; }

/* ===== WHY US ===== */
.why-section {
  padding: 6rem 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.why-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 70px;
  height: 70px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); transform: rotate(10deg) scale(1.1); }
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  position: absolute;
  top: -2rem;
  left: 2rem;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-title { color: white; }
.testimonials-section .section-subtitle { color: var(--gold); }
.testimonials-track {
  overflow: hidden;
  position: relative;
}
.testimonials-slider {
  display: flex;
  transition: transform 0.6s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 0 2rem;
}
.testimonial-inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.testimonial-author { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.testimonial-author strong { display: block; color: var(--gold); font-size: 1rem; margin-bottom: 0.3rem; font-family: 'Cormorant Garamond', serif; }

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover { border-color: var(--gold); background: var(--gold); }

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: flex;
  height: 300px;
  overflow: hidden;
}
.gallery-strip-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
}
.gallery-strip-item:hover { flex: 2; }
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip-item:hover img { transform: scale(1.05); }
.gallery-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}
.gallery-strip-item:hover .gallery-strip-overlay { opacity: 1; }

/* ===== INQUIRY SECTION ===== */
.inquiry-section {
  padding: 6rem 0;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.inquiry-info h2 { margin-bottom: 1rem; }
.inquiry-info p { color: var(--text-mid); margin-bottom: 2rem; }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--cream);
  border-radius: 8px;
  transition: var(--transition);
}
.contact-card:hover { background: var(--light-bg); transform: translateX(5px); }
.contact-card-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-card-text small { display: block; font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-card-text strong { font-size: 0.9rem; color: var(--text-dark); }

.inquiry-form {
  background: var(--cream);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }

.form-submit-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.03); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.5) 0%, rgba(26,18,8,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}
.page-hero-content h1 { color: white; margin-bottom: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== ITINERARY PAGE ===== */
.itinerary-page { padding: 5rem 0; }
.itinerary-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.itinerary-header {
  background: var(--cream);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.itinerary-header h1 { margin-bottom: 1rem; }
.itinerary-meta-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.meta-tag {
  padding: 0.3rem 0.8rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.itinerary-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.highlight-box {
  background: white;
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.highlight-box .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.highlight-box strong { display: block; font-size: 1rem; color: var(--gold); }
.highlight-box span { font-size: 0.75rem; color: var(--text-light); }

/* Day by day */
.day-timeline { position: relative; }
.day-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.day-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
.day-number {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.day-content {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  flex: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.day-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.day-content p { font-size: 0.85rem; color: var(--text-mid); }

/* Sidebar */
.itinerary-sidebar { position: sticky; top: 100px; }
.booking-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.booking-card h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }
.booking-form .form-group { margin-bottom: 1rem; }
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus { border-color: var(--gold); }

.includes-list { margin: 1.5rem 0; }
.include-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.include-item.yes::before { content: '✓'; color: var(--accent); font-weight: 700; }
.include-item.no::before { content: '✗'; color: #cc5555; font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 6rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem 1rem;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-5px); background: white; box-shadow: var(--shadow); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--light-bg);
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--gold);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.team-card span { font-size: 0.78rem; color: var(--gold); }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; color: var(--text-mid); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--text-mid);
}
.social-link:hover { background: var(--gold); color: white; transform: translateY(-3px); }

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 50px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-newsletter { position: relative; margin-top: 0.5rem; }
.footer-newsletter input {
  width: 100%;
  padding: 0.8rem 3.5rem 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 1rem;
  background: var(--gold);
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--gold-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  animation: pulseGold 2s ease-in-out infinite;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
}
.wa-float a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.wa-float a:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wa-float-icon { font-size: 1.3rem; }

/* ===== PHOTO GALLERY ===== */
.gallery-section { padding: 5rem 0; background: var(--cream); }
.gallery-masonry {
  columns: 4;
  gap: 1rem;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.gallery-masonry-item:hover .gallery-item-overlay { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-item:first-child { grid-row: span 1; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .itinerary-layout { grid-template-columns: 1fr; }
  .itinerary-sidebar { position: static; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; }
  .welcome-grid { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-images { height: 400px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 0 2rem; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 600px) {
  .tours-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; height: auto; }
  .dest-item { height: 250px; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-arrows { display: none; }
  .hero-nav { bottom: 5rem; right: 50%; transform: translateX(50%); }
  .itinerary-highlights { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
