/* ============================================
   HARSHA SHREE TOURS - MAIN STYLESHEET
   ============================================ */

:root {
  --gold: #C8930A;
  --gold-light: #F0B429;
  --gold-dark: #8B6508;
  --navy: #0A1628;
  --navy-mid: #132240;
  --navy-light: #1E3A5F;
  --white: #FFFFFF;
  --off-white: #F8F5EF;
  --text: #2C2C2C;
  --text-light: #6B7280;
  --border: #E5E1D8;
  --success: #10B981;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 10px 40px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ============================================ PRELOADER */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: white; }
.plane-loader {
  font-size: 60px;
  animation: flyPlane 1.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes flyPlane {
  0% { transform: translateX(-80px) rotate(-15deg); opacity:0; }
  50% { transform: translateX(0) rotate(0deg); opacity:1; }
  100% { transform: translateX(80px) rotate(15deg); opacity:0; }
}
.loading-text { margin: 20px 0 16px; font-size: 18px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.loading-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.loading-bar-fill { height: 100%; background: var(--gold-light); animation: loadBar 1.8s ease-in-out infinite; }
@keyframes loadBar { 0%{width:0%} 50%{width:70%} 100%{width:100%} }

/* ============================================ HEADER */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--transition);
}
.header-top {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.header-top .container {
  display: flex; gap: 24px; align-items: center;
}
.header-top span { display: flex; align-items: center; gap: 6px; }
.whatsapp-top {
  margin-left: auto;
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  background: rgba(37,211,102,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  transition: var(--transition);
}
.whatsapp-top:hover { background: rgba(37,211,102,0.2); }

.navbar {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,147,10,0.2);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 28px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold-light);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 16px; right: 16px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(200,147,10,0.3);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,147,10,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 12px;
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ============================================ HERO/SLIDER */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0; /* header is fixed */
}
.slider-container { width: 100%; height: 100%; position: relative; overflow: hidden; }
.slider-track { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
}
.slide-content {
  position: absolute;
  bottom: 20%;
  left: 8%;
  max-width: 600px;
  color: white;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s;
}
.slide.active .slide-content { transform: translateY(0); opacity: 1; }

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 300;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(200,147,10,0.4);
}
.slide-cta:hover { transform: translateX(6px); box-shadow: 0 12px 40px rgba(200,147,10,0.6); }

.slider-controls {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  z-index: 10;
}
.slider-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.slider-counter {
  position: absolute;
  bottom: 52px; right: 40px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================ STATS */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.stat-label { font-size: 14px; opacity: 0.75; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ============================================ MARQUEE */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-weight: 600;
  color: white;
  font-size: 15px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================================ SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(200,147,10,0.12);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,147,10,0.3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--text-light); max-width: 550px; margin: 0 auto; }

/* ============================================ PACKAGES */
.packages-section { padding: 96px 0; }
.intl-section { background: var(--off-white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.package-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}
.package-card.visible { opacity: 1; transform: translateY(0); }
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-img-wrap { position: relative; height: 240px; overflow: hidden; }
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .card-img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-discount {
  position: absolute; top: 16px; right: 16px;
  background: #EF4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.card-body { padding: 24px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.card-location { font-size: 13px; color: var(--gold-dark); font-weight: 600; }
.card-rating { font-size: 13px; color: #F59E0B; }
.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card-price-wrap .price { font-size: 24px; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.card-price-wrap .original { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.card-price-wrap .duration { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.btn-details {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-details:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(200,147,10,0.4); }

/* ============================================ WHY US */
.why-us-section { padding: 96px 0; background: var(--navy); }
.why-us-section .section-title { color: white; }
.why-us-section .section-sub { color: rgba(255,255,255,0.6); }
.why-us-section .section-tag { background: rgba(200,147,10,0.2); color: var(--gold-light); border-color: rgba(200,147,10,0.3); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); }
.why-card:hover { background: rgba(200,147,10,0.1); border-color: rgba(200,147,10,0.3); transform: translateY(-6px); }
.why-icon { font-size: 44px; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ============================================ UPCOMING TRIPS */
.upcoming-section { padding: 96px 0; background: var(--off-white); }
.upcoming-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.upcoming-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-30px);
}
.upcoming-card.visible { opacity: 1; transform: translateX(0); }
.upcoming-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.upcoming-date { font-size: 12px; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.upcoming-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.upcoming-dep { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.upcoming-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.seats-info { font-size: 13px; color: var(--text-light); }
.seats-bar { width: 100%; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin: 6px 0; }
.seats-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }
.upcoming-price { font-size: 22px; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.btn-enquire {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  text-align: center;
}
.btn-enquire:hover { background: var(--gold); }

/* ============================================ TESTIMONIALS */
.testimonials-section { padding: 96px 0; }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote-mark {
  font-size: 60px;
  color: var(--gold);
  opacity: 0.2;
  font-family: Georgia;
  line-height: 1;
  position: absolute;
  top: 16px; left: 24px;
}
.test-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.test-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.test-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.test-location { font-size: 12px; color: var(--text-light); }
.test-tour { font-size: 12px; color: var(--gold-dark); font-weight: 600; }

/* ============================================ CONTACT STRIP */
.contact-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 64px 0;
  color: white;
}
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.strip-inner h3 { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.strip-inner p { opacity: 0.9; font-size: 16px; }
.strip-actions { display: flex; gap: 16px; flex-shrink: 0; }
.btn-wa {
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-call {
  background: white;
  color: var(--gold-dark);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.btn-call:hover { transform: translateY(-3px); }

/* ============================================ FOOTER */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-light); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a { color: var(--gold-light); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ============================================ WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  z-index: 90;
  transition: var(--transition);
  animation: bounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(37,211,102,0.7); }
.wa-icon { font-size: 22px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================ SCROLL TOP */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 30px;
  background: var(--navy);
  color: white;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 89;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: none;
  align-items: center; justify-content: center;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================ BUTTONS */
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; }
.text-center { text-align: center; }

/* ============================================ ITINERARY PAGE */
.package-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}
.package-hero-img { width: 100%; height: 100%; object-fit: cover; }
.package-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.85), rgba(10,22,40,0.4));
  display: flex; align-items: center;
}
.package-hero-content { color: white; }
.package-hero-content .breadcrumb { font-size: 13px; opacity: 0.7; margin-bottom: 12px; }
.package-hero-content .breadcrumb a { color: var(--gold-light); text-decoration: none; }
.package-hero-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 60px); font-weight: 900; margin-bottom: 12px; }
.package-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.meta-badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; }

.package-body { padding: 80px 0; }
.package-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.itinerary-list { }
.itinerary-day {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.itinerary-day.visible { opacity: 1; transform: translateX(0); }
.day-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.day-num::after {
  content: '';
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 60px);
  background: var(--border);
}
.itinerary-day:last-child .day-num::after { display: none; }
.day-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.day-n { font-size: 20px; font-weight: 800; line-height: 1; }
.day-content { padding-top: 12px; }
.day-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.day-desc { font-size: 15px; color: var(--text-light); line-height: 1.8; }

.package-sidebar {}
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  position: sticky;
  top: 120px;
  border: 1px solid var(--border);
}
.sidebar-price-main { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: var(--navy); }
.sidebar-original { font-size: 16px; color: var(--text-light); text-decoration: line-through; margin-bottom: 4px; }
.sidebar-per { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.sidebar-divider { height: 1px; background: var(--border); margin: 20px 0; }
.includes-list { list-style: none; margin-bottom: 24px; }
.includes-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 6px 0; color: var(--text-light); }
.includes-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
.btn-book-pkg {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 12px;
  text-align: center;
  display: block;
  text-decoration: none;
}
.btn-book-pkg:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,147,10,0.4); }
.btn-wa-pkg {
  width: 100%;
  background: #25D366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-wa-pkg:hover { background: #1DB954; }
.highlight-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.highlight-chip { background: var(--off-white); border: 1px solid var(--border); padding: 6px 14px; border-radius: 20px; font-size: 12px; color: var(--text); font-weight: 500; }

/* ============================================ CALENDAR PAGE */
.calendar-page { padding: 80px 0; margin-top: 120px; }
.calendar-wrapper {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px;
  display: flex; align-items: center; justify-content: space-between;
  color: white;
}
.cal-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.cal-nav { background: rgba(255,255,255,0.15); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; transition: var(--transition); }
.cal-nav:hover { background: var(--gold); }
.cal-grid { padding: 24px; }
.cal-days-header { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 8px; }
.cal-day-name { text-align: center; font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; padding: 8px; }
.cal-cells { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-cell {
  min-height: 72px;
  border-radius: 10px;
  padding: 8px;
  position: relative;
  cursor: default;
  transition: var(--transition);
}
.cal-cell.other-month { opacity: 0.3; }
.cal-cell.today { background: rgba(200,147,10,0.1); border: 2px solid var(--gold); }
.cal-cell.has-trip { background: rgba(10,22,40,0.04); cursor: pointer; }
.cal-cell.has-trip:hover { background: rgba(200,147,10,0.08); }
.cal-date { font-size: 14px; font-weight: 600; color: var(--navy); }
.cal-trip-dot { font-size: 10px; background: var(--gold); color: white; border-radius: 4px; padding: 2px 6px; margin-top: 4px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.calendar-trips-list { margin-top: 48px; }
.trip-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.trip-list-item:hover { transform: translateX(6px); }
.trip-dates { text-align: center; min-width: 60px; }
.trip-day-num { font-family: var(--font-display); font-size: 32px; font-weight: 900; color: var(--gold-dark); line-height: 1; }
.trip-month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }
.trip-info { flex: 1; }
.trip-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.trip-dep { font-size: 13px; color: var(--text-light); }
.trip-price-col { text-align: right; }
.trip-price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--navy); }
.trip-seats { font-size: 12px; color: var(--text-light); }

/* ============================================ ABOUT PAGE */
.about-page { margin-top: 120px; }
.about-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 100px 0;
  text-align: center;
  color: white;
}
.about-hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: var(--gold-light); margin-bottom: 16px; }
.about-hero p { font-size: 18px; opacity: 0.8; max-width: 600px; margin: 0 auto; }
.about-body { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.team-card { text-align: center; background: white; border-radius: var(--radius); padding: 40px 24px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--navy)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold-dark); font-weight: 600; }

/* ============================================ CONTACT PAGE */
.contact-page { margin-top: 120px; padding: 80px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap p { color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,147,10,0.1);
}
.form-group textarea { height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,147,10,0.4); }
.contact-info-col { }
.contact-info-col h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 32px; }
.info-card { background: white; border-radius: 14px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 20px; display: flex; gap: 16px; align-items: flex-start; }
.info-icon { font-size: 28px; flex-shrink: 0; }
.info-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-dark); margin-bottom: 4px; }
.info-value { font-size: 16px; color: var(--navy); font-weight: 600; }
.info-value a { color: var(--navy); text-decoration: none; }
.info-value a:hover { color: var(--gold-dark); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }

/* ============================================ LIST PAGES */
.list-page { margin-top: 120px; }
.list-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 80px 0; color: white; text-align: center; }
.list-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--gold-light); margin-bottom: 12px; }
.list-hero p { font-size: 18px; opacity: 0.75; max-width: 600px; margin: 0 auto; }
.list-body { padding: 80px 0; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; justify-content: center; }
.filter-btn { padding: 10px 24px; border-radius: 30px; border: 2px solid var(--border); background: white; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text); transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ============================================ ADMIN */
.admin-login {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.admin-login-card {
  background: white;
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.admin-login-logo { text-align: center; margin-bottom: 32px; }
.admin-login-logo .logo-icon { font-size: 48px; display: block; margin-bottom: 8px; }
.admin-login-logo h1 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); }
.admin-login-logo p { color: var(--text-light); font-size: 14px; }
.login-error { background: #FEE2E2; color: #DC2626; padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; display: none; }
.login-error.show { display: block; }
.form-group .show-pass { position: relative; }
.form-group .show-pass input { padding-right: 44px; }
.form-group .toggle-pass { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); cursor: pointer; background: none; border: none; font-size: 18px; color: var(--text-light); }

/* ============================================ ADMIN PANEL */
.admin-body { font-family: var(--font-body); background: #F1F4F8; min-height: 100vh; }
.admin-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 260px;
  background: var(--navy);
  color: white;
  overflow-y: auto;
  z-index: 50;
}
.admin-sidebar-header { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar-header h2 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold-light); }
.admin-sidebar-header p { font-size: 12px; opacity: 0.5; }
.admin-nav { padding: 16px 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: white;
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}
.admin-nav-item .nav-icon { font-size: 18px; }
.admin-content { margin-left: 260px; padding: 32px; min-height: 100vh; }
.admin-topbar { background: white; border-radius: 12px; padding: 16px 24px; margin-bottom: 28px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.admin-topbar h1 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-card { background: white; border-radius: 14px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 24px; }
.admin-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; display: inline-block; }
.admin-field { margin-bottom: 18px; }
.admin-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 6px; }
.admin-field input, .admin-field textarea, .admin-field select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.admin-field textarea { height: 100px; resize: vertical; }
.btn-save {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-save:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(200,147,10,0.4); }
.btn-danger { background: #EF4444; color: white; border: none; padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-danger:hover { background: #DC2626; }
.btn-secondary { background: var(--off-white); color: var(--navy); border: 2px solid var(--border); padding: 10px 20px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.btn-secondary:hover { background: var(--border); }
.save-toast { position: fixed; top: 24px; right: 24px; background: var(--success); color: white; padding: 14px 24px; border-radius: 10px; font-weight: 600; z-index: 1000; transform: translateX(200px); opacity: 0; transition: all 0.3s ease; }
.save-toast.show { transform: translateX(0); opacity: 1; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); border-bottom: 2px solid var(--border); }
.admin-table td { padding: 14px 12px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.admin-table tr:hover td { background: var(--off-white); }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.admin-tab { padding: 10px 20px; border-radius: 8px; border: 2px solid var(--border); background: white; cursor: pointer; font-size: 14px; font-weight: 600; transition: var(--transition); }
.admin-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
.pkg-editor { background: var(--off-white); border-radius: 10px; padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); }
.pkg-editor-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.pkg-editor-title { font-weight: 700; color: var(--navy); }
.pkg-editor-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.itinerary-day-editor { background: white; border-radius: 8px; padding: 16px; margin-bottom: 12px; border: 1px solid var(--border); }
.day-editor-fields { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }

/* ============================================ SLIDER IMAGES */
.slider-img-container { position: relative; }
.slider-img-container .edit-overlay { display: none; }

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .package-layout { grid-template-columns: 1fr; }
  .package-sidebar { position: static; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 85%; max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
    gap: 4px;
    z-index: 9998;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.4);
  }
  .nav-links.open { left: 0; }
  .nav-links a { padding: 16px 20px; border-radius: 10px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hamburger { display: flex; }
  .mobile-overlay { display: block; }
  .mobile-overlay.show { opacity: 1; pointer-events: all; }
  .btn-book span { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; padding: 16px; }
  .pkg-editor-fields { grid-template-columns: 1fr; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .itinerary-day { grid-template-columns: 50px 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .slider-counter { display: none; }
}

/* ── TOUR CATEGORIES SECTION ─────────────────────────────────── */
.categories-section {
  padding: 80px 0;
  background: var(--off-white, #f8f6f0);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.category-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
  border-bottom-color: var(--gold);
}
.category-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}
.category-title {
  font-family: var(--font-display, serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy, #0A1628);
  margin-bottom: 12px;
}
.category-desc {
  font-size: 14px;
  color: var(--text-light, #64748B);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .categories-grid { grid-template-columns: 1fr; }
}
