/* ================================================
   KEDARNATH YATRA 2026 — TRIPS EXPLORE HOLIDAYS
   Style Sheet
   ================================================ */

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

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C33;
  --saffron-glow: rgba(255,107,0,0.25);
  --gold: #D4A017;
  --gold-light: #F0C040;
  --deep-maroon: #1A0A00;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --card-bg: #1C1C1C;
  --border: rgba(255,107,0,0.2);
  --text-primary: #F5F0E8;
  --text-secondary: #BDB0A0;
  --text-muted: #7A6E60;
  --white: #FFFFFF;
  --green: #2ECC71;
  --red: #E74C3C;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-orange: 0 8px 30px rgba(255,107,0,0.35);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--saffron); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--saffron-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-icon { font-size: 28px; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); font-weight: 600; }
.logo-sub { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--saffron); font-weight: 600; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--saffron); transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--saffron) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--saffron-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.75) 0%,
    rgba(26,10,0,0.6) 40%,
    rgba(13,13,13,0.85) 100%
  );
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 20px 60px; max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  border: 1px solid var(--saffron);
  color: var(--saffron-light);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  display: flex; flex-direction: column; align-items: center;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title-top {
  font-family: var(--font-head); font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--gold-light); font-weight: 700; letter-spacing: 0.06em;
  text-shadow: 0 0 40px rgba(212,160,23,0.5);
}
.hero-title-main {
  font-family: var(--font-head); font-size: clamp(3rem, 10vw, 7.5rem);
  color: var(--white); font-weight: 900; letter-spacing: 0.04em; line-height: 0.95;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
  background: linear-gradient(135deg, #fff 0%, #ffe0b2 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title-sub {
  font-family: var(--font-body); font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--text-secondary); letter-spacing: 0.25em; font-weight: 300;
  margin-top: 8px;
}
.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem); color: var(--text-secondary);
  max-width: 620px; margin: 20px auto;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-highlights {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 40px; margin: 24px auto; max-width: 520px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stat { text-align: center; flex: 1; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--saffron-light); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.hero-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.hero-dates {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 16px 0;
  animation: fadeInUp 0.9s ease 0.35s both;
}
.date-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50px; padding: 8px 18px; font-size: 0.9rem; font-weight: 500;
}
.hero-cta-group {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 24px 0 16px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), #e65500);
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: 14px 34px; border-radius: 50px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,107,0,0.5);
  color: var(--white);
}
.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-weight: 600; font-size: 1rem;
  padding: 12px 30px; border-radius: 50px;
  transition: var(--transition); letter-spacing: 0.03em;
}
.btn-outline:hover {
  border-color: var(--saffron); color: var(--saffron); transform: translateY(-2px);
}
.limited-seats {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  animation: fadeInUp 0.9s ease 0.45s both;
}
.seats-pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--saffron); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-indicator {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--saffron); border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ================================================
   WHY US / FEATURES
   ================================================ */
.why-us {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
}
.feature-card {
  text-align: center; padding: 28px 20px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--saffron); transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.feature-img-wrap {
  width: 100%; height: 140px; overflow: hidden;
  border-radius: 10px; margin-bottom: 14px;
  position: relative;
}
.feature-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.feature-card:hover .feature-img { transform: scale(1.08); }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--white); }
.feature-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--saffron);
  padding: 6px 16px; border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50px; margin-bottom: 16px;
  background: rgba(255,107,0,0.08);
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--white); margin-bottom: 12px;
  line-height: 1.2;
}
.section-desc { color: var(--text-secondary); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ================================================
   PACKAGES
   ================================================ */
.packages {
  padding: 100px 0;
  background: var(--dark-2);
}
.packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pkg-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
}
.pkg-card:hover { border-color: var(--saffron); transform: translateY(-6px); box-shadow: var(--shadow-orange); }
.pkg-card.featured { border-color: var(--saffron); }
.pkg-ribbon {
  position: absolute; top: 16px; right: -28px;
  background: var(--saffron); color: white; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 36px; transform: rotate(45deg);
}
.pkg-header {
  background: linear-gradient(135deg, #1a0a00, #3d1200);
  padding: 28px 32px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.pkg-date-num {
  font-family: var(--font-head); font-size: 4rem; font-weight: 900;
  color: var(--saffron); line-height: 1;
}
.pkg-date-info { display: flex; flex-direction: column; }
.pkg-month { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.08em; color: var(--white); }
.pkg-year { font-size: 0.85rem; color: var(--text-muted); }
.pkg-body { padding: 28px 32px; }
.pkg-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.pkg-subtitle { font-size: 0.82rem; color: var(--saffron); font-weight: 600; margin-bottom: 16px; }
.pkg-route {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 18px;
  background: rgba(255,255,255,0.04); padding: 8px 12px; border-radius: 8px;
}
.route-arrow { color: var(--saffron); }
.pkg-perks { margin-bottom: 22px; }
.pkg-perks li { font-size: 0.88rem; color: var(--text-secondary); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pkg-perks li:last-child { border-bottom: none; }
.pkg-price { margin-bottom: 22px; }
.price-main { font-family: var(--font-head); font-size: 2rem; color: var(--saffron-light); font-weight: 700; }
.price-main span { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.price-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.btn-book {
  display: block; text-align: center; width: 100%;
  background: linear-gradient(135deg, var(--saffron), #cc5500);
  color: white; font-weight: 700; padding: 14px; border-radius: var(--radius-sm);
  font-size: 0.95rem; letter-spacing: 0.03em; transition: var(--transition);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); color: white; }

/* Payment-linked variant */
.btn-book-pay {
  background: linear-gradient(135deg, #1a6b3a, #0f8040) !important;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(15,128,64,0.35);
  position: relative; overflow: hidden;
}
.btn-book-pay::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-book-pay:hover { box-shadow: 0 8px 28px rgba(15,128,64,0.55) !important; color: white; }
.btn-book-pay:hover::before { transform: translateX(100%); }
.btn-book-icon { font-size: 1rem; flex-shrink: 0; }
.btn-book-trust {
  text-align: center; font-size: 0.7rem; color: var(--text-muted);
  margin-top: 6px; letter-spacing: 0.04em;
}

/* Accommodation Table */
.accommodation-table {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-top: 32px;
}
.accommodation-table h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--white); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th {
  background: rgba(255,107,0,0.1); color: var(--saffron); 
  font-size: 0.85rem; letter-spacing: 0.08em; padding: 12px 16px;
  text-align: left; border-bottom: 1px solid var(--border);
}
td {
  padding: 12px 16px; font-size: 0.9rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,107,0,0.04); }

/* ================================================
   ITINERARY TIMELINE
   ================================================ */
.itinerary { padding: 100px 0; background: var(--dark); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--saffron), transparent);
}
.timeline-item {
  position: relative; padding: 0 0 40px 80px;
  opacity: 0; transform: translateX(-30px);
  transition: all 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item.highlight-day .timeline-content {
  border-color: var(--saffron); background: rgba(255,107,0,0.05);
}
.timeline-icon {
  position: absolute; left: 10px; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark-3); border: 2px solid var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 1;
}
.timeline-content {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 26px;
  transition: var(--transition);
}
.timeline-content:hover { border-color: rgba(255,107,0,0.4); transform: translateX(4px); }
.day-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--saffron); text-transform: uppercase; margin-bottom: 8px;
}
.timeline-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.timeline-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.day-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-item {
  font-size: 0.78rem; background: rgba(255,255,255,0.06);
  border-radius: 20px; padding: 4px 10px; color: var(--text-muted);
}

/* ================================================
   INCLUSIONS
   ================================================ */
.inclusions { padding: 100px 0; background: var(--dark-2); }
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.inc-header {
  display: flex; align-items: center; gap: 12px; padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.inc-card.included .inc-header { background: rgba(46,204,113,0.08); }
.inc-card.excluded .inc-header { background: rgba(231,76,60,0.08); }
.inc-icon { font-size: 1.6rem; }
.inc-header h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.inc-list { padding: 20px 28px; }
.inc-list li {
  font-size: 0.88rem; color: var(--text-secondary); 
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 4px; line-height: 1.5;
}
.inc-list li:last-child { border-bottom: none; }
.inc-card.included .inc-list li::before { content: '✅ '; }
.inc-card.excluded .inc-list li::before { content: '❌ '; }

/* ================================================
   GALLERY
   ================================================ */
.gallery { padding: 100px 0; background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 16px; }
.gallery-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-8px); border-color: var(--saffron); }
.center-card { transform: translateY(-12px); border-color: rgba(255,107,0,0.4); }
.center-card:hover { transform: translateY(-20px); }
.gallery-img {
  height: 220px; overflow: hidden; position: relative;
}
.gallery-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.gallery-card:hover .gallery-photo { transform: scale(1.07); }
.gallery-emoji { font-size: 4rem; display: flex; align-items: center; justify-content: center; height: 100%; }
.gallery-info { padding: 22px; }
.gallery-info h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.gallery-info p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.55; }
.gallery-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  color: var(--saffron); border: 1px solid rgba(255,107,0,0.3);
  border-radius: 20px; padding: 3px 10px;
}
.gallery-tag-gold {
  color: var(--gold-light); border-color: rgba(212,160,23,0.4);
  background: rgba(212,160,23,0.08);
}
.gallery-tags-row { display: flex; gap: 6px; flex-wrap: wrap; }

/* Kedarnath dual-image card */
.gallery-img-duo { position: relative; overflow: hidden; }
.gallery-photo-main, .gallery-photo-camp {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-photo-camp { opacity: 0; transform: scale(1.05); }
.gallery-card:hover .gallery-photo-main { opacity: 0; }
.gallery-card:hover .gallery-photo-camp { opacity: 1; transform: scale(1); }
.gallery-camp-badge {
  position: absolute; bottom: 10px; right: 10px; z-index: 3;
  background: rgba(13,13,13,0.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,107,0,0.5);
  color: var(--saffron); font-size: 0.75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.05em;
  animation: campPulse 2.5s ease-in-out infinite;
}
@keyframes campPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}

/* ================================================
   BOOKING FORM
   ================================================ */
.booking {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 50%, #0d0d0d 100%);
  position: relative; overflow: hidden;
}
.booking::before {
  content: '🔱'; position: absolute; font-size: 400px; opacity: 0.03;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.booking-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
}
.booking-info .section-title { text-align: left; }
.booking-info .section-tag { /* override */ }
.booking-info p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--text-primary); }
.contact-item a:hover { color: var(--saffron); }

/* Form */
.booking-form-wrap {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px; 
}
.booking-form h3 {
  font-family: var(--font-head); font-size: 1.3rem; color: var(--white);
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group.full-width { margin-bottom: 16px; }
label {
  font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.04em;
}
input, select, textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; width: 100%; transition: var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--saffron); background: rgba(255,107,0,0.05);
  box-shadow: 0 0 0 3px var(--saffron-glow);
}
select option { background: var(--dark-3); color: var(--text-primary); }
.form-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--saffron); cursor: pointer;
}
.form-check label { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }
.btn-submit {
  width: 100%; padding: 16px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--saffron), #cc5500);
  color: white; font-size: 1rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: var(--radius-sm); transition: var(--transition); font-family: var(--font-body);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-submit:active { transform: translateY(0); }
.form-success {
  text-align: center; padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); margin-bottom: 8px; }
.success-sub { font-size: 0.9rem; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #0A0A0A; border-top: 1px solid var(--border); padding: 60px 0 0;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo .logo-icon { font-size: 24px; }
.footer-logo .logo-title { font-family: var(--font-head); font-size: 1rem; color: var(--white); }
.footer-logo .logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--saffron); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-address { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.footer-links h4, .footer-contact h4, .footer-social h4 {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-contact a { font-size: 0.88rem; color: var(--text-muted); }
.footer-links a:hover, .footer-contact a:hover { color: var(--saffron); }
.social-links { display: flex; gap: 8px; margin-bottom: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.9rem; font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); }
.social-fb:hover  { background: #1877F2; border-color: #1877F2; color: white; box-shadow: 0 6px 20px rgba(24,119,242,0.4); }
.social-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; color: white; box-shadow: 0 6px 20px rgba(220,39,67,0.4); }
.social-yt:hover  { background: #FF0000; border-color: #FF0000; color: white; box-shadow: 0 6px 20px rgba(255,0,0,0.4); }
.footer-social-labels { display: flex; flex-direction: column; gap: 5px; margin: 10px 0 14px; }
.social-label { font-size: 0.78rem; color: var(--text-muted); transition: var(--transition); }
.social-label:hover { color: var(--saffron); }
.footer-badge {
  font-size: 0.82rem; color: var(--saffron); font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ================================================
   STICKY CTA
   ================================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); padding: 12px 20px; gap: 12px;
  transform: translateY(100%); transition: var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-btn {
  flex: 1; text-align: center; padding: 12px;
  background: linear-gradient(135deg, var(--saffron), #cc5500);
  color: white; font-weight: 700; border-radius: var(--radius-sm);
  font-size: 0.95rem; transition: var(--transition);
}
.sticky-btn:hover { color: white; filter: brightness(1.1); }
.sticky-call {
  padding: 12px 20px; border: 1px solid var(--border);
  color: var(--text-secondary); border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  transition: var(--transition);
}
.sticky-call:hover { border-color: var(--saffron); color: var(--saffron); }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition); animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); color: white;
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

/* ================================================
   RAZORPAY BUTTON STYLES
   ================================================ */

/* Force Razorpay button to full width & match our theme */
.rzp-wrap form,
.rzp-wrap script { display: block; }

/* Override Razorpay's inline button sizing */
.rzp-wrap [class*="razorpay"],
.rzp-wrap iframe,
.rzp-wrap button {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  border-radius: 10px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  height: auto !important;
  padding: 13px 20px !important;
  cursor: pointer !important;
}

/* --- Hero Razorpay wrap --- */
.rzp-hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin: 4px 0 8px;
}
.rzp-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; font-weight: 500;
}
.rzp-hero form { width: 100%; max-width: 280px; }
.rzp-hero [class*="razorpay"],
.rzp-hero button {
  max-width: 280px !important;
  background: linear-gradient(135deg, #1a6b3a, #0f4d28) !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(26,107,58,0.4) !important;
}

/* --- Package card Razorpay wrap --- */
.rzp-pkg { margin-top: 12px; text-align: center; }
.rzp-divider {
  display: block; font-size: 0.72rem; color: var(--text-muted);
  margin-bottom: 10px; letter-spacing: 0.06em;
}
.rzp-pkg form { width: 100%; }

/* --- Booking form Razorpay wrap --- */
.rzp-form {
  background: rgba(26,107,58,0.08);
  border: 1px solid rgba(26,107,58,0.25);
  border-radius: var(--radius); padding: 22px 24px;
  margin-top: 20px; text-align: center;
}
.rzp-form-header {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 6px;
}
.rzp-lock { font-size: 1rem; }
.rzp-form-note {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px;
}
.rzp-form form { width: 100%; }

/* --- Sticky CTA Razorpay wrap --- */
.sticky-rzp { flex: 1.2; display: flex; align-items: stretch; }
.sticky-rzp form { width: 100%; display: flex; align-items: stretch; }
.sticky-rzp button,
.sticky-rzp [class*="razorpay"] {
  height: 46px !important;
  border-radius: 8px !important;
  padding: 0 16px !important;
}

/* Razorpay trust badge - auto added below form wraps */
.rzp-form::after {
  content: "🔒 256-bit SSL Secured · Powered by Razorpay";
  display: block; font-size: 0.68rem; color: var(--text-muted);
  margin-top: 10px; letter-spacing: 0.04em;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column; position: fixed;
    top: 0; right: 0; bottom: 0; width: 280px;
    background: var(--dark-3); padding: 80px 32px 32px;
    gap: 24px; box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .hamburger { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .inc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.center-card { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-highlights { flex-direction: column; gap: 12px; }
  .hero-divider { width: 60px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .timeline::before { left: 18px; }
  .timeline-item { padding-left: 60px; }
  .timeline-icon { left: -1px; width: 36px; height: 36px; font-size: 0.9rem; }
  .booking-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
}
