/* ==========================================================================
   XPLORA TOURS & TRAVELS - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Dark Theme */
  --bg-dark: #070a14;
  --bg-card-dark: #0f1629;
  --bg-card-hover: #141d36;
  --bg-glass: rgba(15, 22, 41, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.18);
  
  /* Brand Accent Colors */
  --accent-primary: #6366f1;
  --accent-primary-hover: #4f46e5;
  --accent-indigo-light: #818cf8;
  --accent-pill-bg: #8b5cf6;
  --accent-cyan: #38bdf8;
  --accent-gold: #fbbf24;

  /* Text Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-dark-card: #1e293b;

  /* Font Families */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transition Speeds */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}

/* Buttons System */
.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  transition: var(--transition-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-light {
  background: #4f46e5;
  color: #ffffff;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-light:hover {
  background: #4338ca;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Section Header Shared */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-indigo-light);
  margin-bottom: 0.3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
}

.view-all-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-indigo-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.view-all-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: linear-gradient(180deg, rgba(7, 10, 20, 0.85) 0%, rgba(7, 10, 20, 0) 100%);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  line-height: 1;
}

.brand-subtext {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-item a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e2e8f0;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item a:hover,
.nav-item.active a {
  color: #ffffff;
  font-weight: 600;
}

.nav-item.active a::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent-indigo-light);
  border-radius: 2px;
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
  background: url('images/hero_mizoram.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 20, 0.7) 0%,
    rgba(7, 10, 20, 0.3) 40%,
    rgba(7, 10, 20, 0.95) 90%,
    #070a14 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 9rem;
  margin-bottom: 2.5rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.5px;
}

.hero-subheading {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #93c5fd;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
}

.hero-tagline {
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Trust Badges Bar */
.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a5b4fc;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.trust-subtext {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.google-g {
  width: 20px;
  height: 20px;
}

.rating-stars {
  color: var(--accent-gold);
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

/* ==========================================================================
   3. TWO COLUMN MAIN SECTION (Popular Destinations & Tour Packages)
   ========================================================================== */
.main-grid-section {
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 44% 53%;
  gap: 3%;
  align-items: start;
}

.two-col-grid > * {
  min-width: 0;
  max-width: 100%;
}

/* LEFT COLUMN: POPULAR DESTINATIONS */
.destinations-column {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.destinations-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.destinations-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none; /* Firefox */
  min-width: 0;
}

.destinations-slider::-webkit-scrollbar {
  display: none;
}

.dest-card {
  min-width: 150px;
  width: 150px;
  height: 230px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(7, 10, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
}

.dest-pin-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-cyan);
  margin-bottom: 0.3rem;
}

.dest-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.dest-desc {
  font-size: 0.72rem;
  color: #cbd5e1;
  margin-top: 2px;
}

.dest-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-indigo-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.slider-nav-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 22, 41, 0.85);
  border: 1px solid var(--border-glass-hover);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: var(--transition-fast);
}

.slider-nav-btn:hover {
  background: var(--accent-primary);
}

.slider-prev {
  left: 2px;
}

.slider-next {
  right: 2px;
}

/* RIGHT COLUMN: TOP TOUR PACKAGES */
.packages-column {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.package-card {
  background: #090e1c;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.package-img-wrap {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img-wrap img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  color: #ffffff;
}

.badge-seller {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.badge-popular {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

.badge-premium {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.package-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-duration {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-indigo-light);
  text-transform: uppercase;
}

.package-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.2rem 0 0.4rem;
  line-height: 1.3;
}

.package-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.package-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.package-price-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.package-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.6rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.feat-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.feat-label {
  font-size: 0.62rem;
  color: var(--text-dim);
}

/* ==========================================================================
   4. THREE CARD LIGHT ROW (Map, Build Trip, Reviews)
   ========================================================================== */
.light-cards-section {
  padding: 1.5rem 0 3rem;
}

.three-cards-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 1.5rem;
}

.three-cards-grid > * {
  min-width: 0;
  max-width: 100%;
}

.light-card {
  background: #ffffff;
  color: var(--text-dark-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-card-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.map-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-card-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.85rem;
}

.map-card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0.4rem 0 0.5rem;
}

.map-card-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 1.2rem;
}

.map-visual-wrap {
  width: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mizoram-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.map-pin {
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-pin:hover {
  transform: scale(1.3);
}

.map-pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4f46e5;
  border: 2px solid #ffffff;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.6);
}

.map-pin-label {
  position: absolute;
  left: 14px;
  top: -4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 4px;
  border-radius: 3px;
}

/* Card 2: Build Your Own Trip */
.build-trip-card {
  background: url('images/trip_builder_bg.jpg') center center / cover no-repeat;
  position: relative;
  color: #ffffff;
}

.build-trip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 10, 20, 0.85) 0%, rgba(7, 10, 20, 0.65) 100%);
  border-radius: var(--radius-lg);
}

.build-trip-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.build-card-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #818cf8;
  font-weight: 700;
  font-size: 0.85rem;
}

.build-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.4rem 0 0.5rem;
}

.build-card-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}

/* Card 3: Traveler Reviews */
.reviews-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  font-size: 1rem;
  color: #0f172a;
}

.rating-score-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.score-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.score-stars-col {
  display: flex;
  flex-direction: column;
}

.score-stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.score-count {
  font-size: 0.7rem;
  color: #64748b;
}

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

.review-quote-text {
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1rem;
  min-height: 50px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.author-role {
  font-size: 0.68rem;
  color: #64748b;
}

.review-nav-arrows {
  display: flex;
  gap: 0.4rem;
}

.rev-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.rev-arrow:hover {
  background: #f1f5f9;
  color: #0f172a;
}

/* ==========================================================================
   5. WHY CHOOSE US BAR
   ========================================================================== */
.why-us-section {
  background: var(--bg-card-dark);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 2.2rem 0;
}

.why-us-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: left;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.why-us-grid > * {
  min-width: 0;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.why-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  transition: var(--transition-fast);
}

.why-item:hover .why-icon-wrap {
  background: var(--accent-primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.why-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.2;
}

/* ==========================================================================
   6. MOMENTS FROM MIZORAM GALLERY
   ========================================================================== */
.gallery-section {
  padding: 3rem 0;
  min-width: 0;
  max-width: 100%;
}

.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  min-width: 220px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.footer {
  background: #04060c;
  border-top: 1px solid var(--border-glass);
  padding: 3.5rem 0 2rem;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-about p {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 1rem;
  max-width: 380px;
  line-height: 1.6;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-indigo-light);
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
  margin-top: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #64748b;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99;
  background: #25d366;
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   8. MODALS (Interactive Windows)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0f1629;
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #070a14;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-indigo-light);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

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

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7, 10, 20, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--accent-indigo-light);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .three-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 0;
  }
  .brand-logo-img {
    height: 60px;
  }
  .nav-links {
    display: none;
  }
  #nav-plan-btn {
    display: none;
  }
  .hero-content {
    margin-top: 6.5rem;
    margin-bottom: 2rem;
  }
  .hero-heading {
    font-size: clamp(2.2rem, 8.5vw, 3.2rem);
  }
  .hero-subheading {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.8rem;
    gap: 0.8rem;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.5rem;
  }
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .destinations-column,
  .packages-column {
    padding: 1rem;
  }
  .map-card-inner {
    flex-direction: column;
  }
  .map-visual-wrap {
    width: 100%;
    margin-top: 1rem;
  }
  .mizoram-map-svg {
    width: 160px;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }
  .modal-card {
    padding: 1.2rem;
    max-height: 94vh;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 50px;
  }
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card {
    min-width: 135px;
    width: 135px;
    height: 195px;
  }
}
