/* 
  Bharat Yatras - Modern Travel Stylesheet 
  Premium Nav, Saffron accents, Glassmorphism, and responsive grids
*/

:root {
  /* Colors */
  --navy: #0b1628;
  --navy-light: #162740;
  --navy-2: #0f1c30;
  --saffron: #f4841c;
  --saffron-hover: #d36c0f;
  --cream: #f7f3ec;
  --cream-dark: #ebe5d8;
  --white: #ffffff;
  --dark: #070c14;
  --muted: #60738a;
  --muted-light: #8fa0b5;
  --line-dark: rgba(247, 243, 236, 0.08);
  --line-light: rgba(11, 22, 40, 0.08);
  --success: #2e7d32;
  
  /* Fonts */
  --font-h: 'Yatra One', cursive, Georgia, serif;
  --font-b: 'Work Sans', sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  
  /* Radius & Shadows */
  --rad: 12px;
  --rad-lg: 24px;
  --rad-sm: 8px;
  --shadow-sm: 0 4px 12px rgba(7, 12, 20, 0.04);
  --shadow-md: 0 12px 24px rgba(7, 12, 20, 0.08);
  --shadow-lg: 0 20px 40px rgba(7, 12, 20, 0.12);
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: all 0.3s var(--ease);
}

/* Reset & Base styling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--cream);
  color: var(--navy);
  font-family: var(--font-b);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.section {
  padding: 80px 0;
  background-color: var(--cream);
}

.section-alt {
  background-color: var(--white);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.section-dark {
  background-color: var(--navy);
  color: var(--cream);
  border: none;
}

.section-dark h2, .section-dark h3, .section-dark p {
  color: var(--cream);
}

.section-dark p {
  color: rgba(247, 243, 236, 0.7);
}

.section-head {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron);
  font-family: var(--font-m);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

/* Header & Navigation */
.site-header {
  background-color: var(--navy);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--saffron);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand .sub {
  font-family: var(--font-b);
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--saffron);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--saffron);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--rad-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--saffron);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--saffron-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 132, 28, 0.25);
}

.btn-secondary {
  background-color: var(--navy-light);
  color: var(--cream);
  border: 1px solid var(--line-dark);
}

.btn-secondary:hover {
  background-color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(247, 243, 236, 0.2);
  color: var(--cream);
}

.btn-ghost:hover {
  background-color: rgba(247, 243, 236, 0.05);
  border-color: var(--saffron);
  color: var(--saffron);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

/* Mobile Toggle & Menu */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  right: 0;
  width: 280px;
  height: calc(100vh - 80px);
  background-color: var(--navy-light);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  gap: 20px;
  box-shadow: -10px 0 30px rgba(7, 12, 20, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav a:hover {
  color: var(--saffron);
}

/* Page Banners */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--saffron);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 75% 30%, rgba(244, 132, 28, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner h1 {
  font-family: var(--font-h);
  font-size: 3rem;
  margin-top: 10px;
  color: var(--white);
}

.page-banner p {
  font-size: 1.15rem;
  color: rgba(247, 243, 236, 0.75);
  max-width: 650px;
  margin-bottom: 0;
}

.crumb {
  font-family: var(--font-m);
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Home Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-h);
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: var(--saffron);
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(247, 243, 236, 0.75);
  margin-bottom: 35px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-dark);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image-container:hover {
  transform: rotate(0) scale(1.02);
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature boxes */
.features-strip {
  background-color: var(--navy-light);
  color: var(--cream);
  padding: 40px 0;
  border-bottom: 1px solid var(--line-dark);
}

.features-strip .grid-3 {
  gap: 40px;
}

.feature-box {
  display: flex;
  gap: 20px;
}

.feature-box i {
  font-size: 2.2rem;
  color: var(--saffron);
  margin-top: 4px;
}

.feature-box h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(247, 243, 236, 0.6);
}

/* About Photo container & Story */
.about-photo {
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--rad);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-md);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
  transition: var(--transition);
  border-radius: var(--rad-sm);
}

.value-row:hover {
  background-color: rgba(11, 22, 40, 0.02);
}

.value-row i {
  font-size: 1.8rem;
  color: var(--saffron);
  margin-top: 4px;
}

.value-row h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.value-row p {
  font-size: 0.9rem;
  margin: 0;
}

/* Rule Card */
.rule-card {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--rad);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.rule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 132, 28, 0.3);
}

.rule-card i {
  font-size: 1.8rem;
  color: var(--saffron);
  margin-bottom: 16px;
}

.rule-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.rule-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Commitment Card */
.commit-card {
  background: #fff;
  border: 1px solid rgba(11, 22, 40, 0.1);
  border-radius: var(--rad);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.commit-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), transparent);
  opacity: 0.06;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: opacity 0.3s;
}

.commit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 132, 28, 0.2);
}

.commit-card:hover::after {
  opacity: 0.15;
}

.commit-card i {
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 14px;
  display: block;
}

.commit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.commit-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Quote strip */
.quote-strip {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

.quote-strip i {
  font-size: 3rem;
  color: var(--saffron);
  opacity: 0.2;
  margin-bottom: 16px;
  display: block;
}

.quote-strip p {
  font-family: var(--font-b);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 16px;
}

.quote-strip .by {
  font-family: var(--font-m);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
}

/* Packages Page Styling */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pkg-card {
  background-color: var(--white);
  border-radius: var(--rad);
  border: 1px solid var(--line-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 132, 28, 0.2);
}

.pkg-card-wide {
  grid-column: span 2;
}

.pkg-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  color: var(--cream);
  padding: 32px 36px;
  position: relative;
  border-bottom: 2px solid var(--saffron);
}

.pkg-banner.alt {
  border-bottom-color: var(--muted-light);
}

.pkg-duration {
  font-family: var(--font-m);
  font-size: 0.78rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}

.pkg-banner h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.pkg-banner p {
  color: rgba(247, 243, 236, 0.65);
  margin: 0;
  font-size: 0.95rem;
}

.pkg-price-badge {
  position: absolute;
  top: 30px;
  right: 36px;
  background-color: var(--saffron);
  color: var(--white);
  font-family: var(--font-m);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pkg-body {
  padding: 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pkg-body > p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.pkg-places {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  background-color: var(--cream);
  padding: 20px;
  border-radius: var(--rad-sm);
  border: 1px solid rgba(11, 22, 40, 0.05);
}

.pkg-places li {
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-places li i {
  color: var(--saffron);
  width: 16px;
  text-align: center;
}

.pkg-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  gap: 20px;
}

.pkg-foot span {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  max-width: 60%;
}

.pkg-foot span i {
  color: var(--saffron);
  margin-top: 2px;
}

/* Custom quick details */
.pkg-meta-strip {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-family: var(--font-m);
}

.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(247, 243, 236, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Itinerary Page Selector & Timelines */
.itinerary-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.itinerary-sidebar {
  background-color: var(--white);
  border-radius: var(--rad);
  border: 1px solid var(--line-light);
  padding: 24px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.itinerary-sidebar h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--saffron);
}

.itinerary-list-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itinerary-btn {
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: var(--rad-sm);
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.itinerary-btn:hover {
  background-color: var(--cream);
  color: var(--saffron);
}

.itinerary-btn.active {
  background-color: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.itinerary-container {
  background-color: var(--white);
  border-radius: var(--rad);
  border: 1px solid var(--line-light);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.itinerary-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-light);
}

.itinerary-header h2 {
  font-size: 2.2rem;
  color: var(--navy);
}

.itinerary-header p {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.itinerary-terms {
  background-color: rgba(244, 132, 28, 0.05);
  border-left: 4px solid var(--saffron);
  padding: 20px;
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  margin-bottom: 40px;
}

.itinerary-terms h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--saffron-hover);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.itinerary-terms ul {
  list-style: none;
}

.itinerary-terms li {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-light);
}

.itinerary-terms li i {
  color: var(--saffron);
  margin-top: 3px;
}

.itinerary-terms li:last-child {
  margin-bottom: 0;
}

/* Timeline Components */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background-color: var(--line-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--cream);
  border: 2px solid var(--saffron);
  color: var(--navy);
  font-family: var(--font-m);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--white);
  transition: var(--transition);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--saffron);
  color: var(--white);
}

.timeline-content {
  background-color: var(--cream);
  padding: 24px;
  border-radius: var(--rad-sm);
  border: 1px solid rgba(11, 22, 40, 0.04);
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-m);
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid rgba(11, 22, 40, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.timeline-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-meta i {
  color: var(--saffron);
}

.timeline-weather-box {
  background-color: rgba(11, 22, 40, 0.04);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  margin-top: 10px;
  border-left: 3px solid var(--muted-light);
}

/* Gallery Styling */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--line-light);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(244, 132, 28, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  background-color: var(--white);
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(7, 12, 20, 0.8) 0%, rgba(7, 12, 20, 0.2) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-family: var(--font-m);
  font-size: 0.75rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 12, 20, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
  border-radius: var(--rad);
  overflow: hidden;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--saffron);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(7, 12, 20, 0.7);
  padding: 16px 24px;
  color: var(--cream);
}

/* Contact Page Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background-color: var(--white);
  border-radius: var(--rad);
  border: 1px solid var(--line-light);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-item i {
  font-size: 1.4rem;
  color: var(--saffron);
  margin-top: 3px;
  width: 24px;
  text-align: center;
}

.info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-item p, .info-item a {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.info-item a:hover {
  color: var(--saffron);
}

/* Google Map Embed */
.footer-map, .contact-map {
  width: 100%;
  height: 250px;
  border-radius: var(--rad-sm);
  overflow: hidden;
  border: 1px solid var(--line-light);
  margin-top: 15px;
}

.contact-map {
  height: 300px;
}

.contact-map iframe, .footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--rad-sm);
  border: 1px solid rgba(11, 22, 40, 0.15);
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--navy);
  background-color: var(--white);
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(244, 132, 28, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA Strip */
.cta-strip2 {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--saffron);
}

.cta-strip2::before {
  content: "🕉";
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.035;
  color: var(--saffron);
}

.cta-strip2 h2 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: 2.2rem;
}

.cta-strip2 p {
  color: rgba(247, 243, 236, 0.55);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--rad-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-primary {
  background-color: var(--saffron);
  color: var(--white);
}

.cta-primary:hover {
  background-color: var(--saffron-hover);
  transform: translateY(-2px);
}

.cta-outline-w {
  border: 1px solid rgba(247, 243, 236, 0.3);
  color: var(--cream);
}

.cta-outline-w:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  background-color: rgba(247, 243, 236, 0.02);
}

/* Footer Section */
.site-footer {
  background-color: var(--navy);
  color: rgba(247, 243, 236, 0.6);
  padding: 70px 0 30px;
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(247, 243, 236, 0.55);
  line-height: 1.6;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--saffron);
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer ul a {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.site-footer ul a:hover {
  color: var(--saffron);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.4);
}

/* Float WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* Animations (Scroll Reveal) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .itinerary-layout {
    grid-template-columns: 1fr;
  }
  .itinerary-sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .pkg-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-container {
    transform: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pkg-places {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pkg-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .pkg-foot span {
    max-width: 100%;
  }
  .pkg-price-badge {
    position: static;
    display: inline-block;
    margin-top: 10px;
    width: fit-content;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .page-banner h1 {
    font-size: 2.2rem;
  }
  .itinerary-container {
    padding: 24px;
  }
  .timeline {
    padding-left: 24px;
  }
  .timeline::before {
    left: 7px;
  }
  .timeline-badge {
    left: -24px;
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
    box-shadow: 0 0 0 4px var(--white);
  }
}
