/* ============================================================
   SHIV SRISHTI HOLIDAYS — Global CSS
   Theme: Cosmic Shiva | Dark, Divine, Infinite
   ============================================================ */

/* ── FONT AWESOME 6 (icons used site-wide) ──────────────────── */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --cosmic-black: #0A0A14;
  --midnight-blue: #0F0F2A;
  --dark-indigo: #1A1040;
  --neelkanth: #3D7EFF;
  --neelkanth-glow: rgba(61, 126, 255, 0.25);
  --gold: #D4A843;
  --gold-light: #E8C36A;
  --gold-glow: rgba(212, 168, 67, 0.20);
  --gold-glow-strong: rgba(212, 168, 67, 0.40);
  --white: #F0F4FF;
  --silver: #A0AEC0;
  --violet: #5B2D8E;
  --violet-glow: rgba(91, 45, 142, 0.30);

  --section-gap: 80px;
  --container-max: 1100px;
  --container-pad: 24px;

  --border-gold: 1px solid rgba(212, 168, 67, 0.15);
  --border-gold-hover: 1px solid rgba(212, 168, 67, 0.40);
  --border-blue: 1px solid rgba(61, 126, 255, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 20px 60px rgba(10, 10, 20, 0.6), 0 0 40px rgba(212, 168, 67, 0.08);
  --shadow-glow-blue: 0 0 30px rgba(61, 126, 255, 0.35);
  --shadow-glow-gold: 0 0 30px rgba(212, 168, 67, 0.25);
  --shadow-violet: 0 0 80px rgba(91, 45, 142, 0.20);

  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cosmic-black);
  color: var(--silver);
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
}

/* ── STARS BACKGROUND ───────────────────────────────────────── */
.stars-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1px 1px at 10% 15%, rgba(240, 244, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 60%, rgba(240, 244, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 30%, rgba(240, 244, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 80%, rgba(240, 244, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 20%, rgba(240, 244, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 50%, rgba(240, 244, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 75%, rgba(240, 244, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 45%, rgba(212, 168, 67, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 10%, rgba(61, 126, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 88%, rgba(240, 244, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 90%, rgba(240, 244, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 5%, rgba(240, 244, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 3% 45%, rgba(240, 244, 255, 0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 70%, rgba(240, 244, 255, 0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 35%, rgba(240, 244, 255, 0.6) 0%, transparent 100%);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: 'Cinzel', serif;
  color: var(--white);
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  letter-spacing: 0.02em;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

.eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-gap) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-outer {
  position: relative;
  z-index: 1;
  padding: var(--section-gap) 0;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 16px auto 0;
}

/* ── ANIMATION KEYFRAMES ────────────────────────────────────── */
@keyframes pulse-gold {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.2), 0 0 40px rgba(212, 168, 67, 0.1);
  }

  50% {
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.5), 0 0 70px rgba(212, 168, 67, 0.3);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CRITICAL: Never hide content on mobile */
@media (max-width: 768px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  background: rgba(10, 10, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-gold);
  height: 68px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}

.nav-inner.scrolled {
  background: rgba(10, 10, 20, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-indigo), var(--violet));
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 16px var(--violet-glow);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 13px;
  color: var(--silver);
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(26, 16, 64, 0.6);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-book-now {
  display: none;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 8px 0 16px;
    border-top: var(--border-gold);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
    font-size: 15px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.06);
  }

  .nav-links a.active::after {
    display: none;
  }

  .mobile-book-now {
    display: block;
  }

  .mobile-book-now a {
    color: var(--gold) !important;
    font-weight: 700;
    border-bottom: none !important;
  }

  .nav-phone,
  .nav-right .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3D7EFF, #2855CC);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-glow-blue);
  transition: var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(61, 126, 255, 0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 168, 67, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-base);
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  transition: var(--transition-base);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 10, 20, 0.93) 0%, rgba(26, 16, 64, 0.85) 50%, rgba(10, 10, 20, 0.92) 100%),
    url('../images/hero/hero-bg.webp') center/cover no-repeat;
  border-bottom: var(--border-gold);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(61, 126, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(91, 45, 142, 0.15) 0%, transparent 50%);
}

.hero-mandala {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 380px;
  line-height: 1;
  color: rgba(212, 168, 67, 0.05);
  animation: spin-slow 50s linear infinite;
  user-select: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: 'Cinzel', serif;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--silver));
}

/* ── PACKAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 56px 48px;
  background:
    linear-gradient(to bottom, rgba(10, 10, 20, 0.5) 0%, rgba(10, 10, 20, 0.9) 100%),
    url('../images/hero/hero-bg.webp') center/cover no-repeat;
  border-bottom: var(--border-gold);
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 20;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 67, 0.1);
  border: var(--border-gold);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 120px;
  padding: 8px 24px;
}

.counter {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px var(--gold-glow);
}

.stat-sfx {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--neelkanth);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.2), transparent);
}

/* ── PACKAGE CARD ───────────────────────────────────────────── */
.pkg-card {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-base);
}

.pkg-card:hover {
  transform: translateY(-6px);
  border: var(--border-gold-hover);
  box-shadow: var(--shadow-card);
}

.pkg-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pkg-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--midnight-blue), transparent);
}

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(212, 168, 67, 0.92);
  color: var(--cosmic-black);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
}

.pkg-body {
  padding: 22px;
}

.pkg-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.pkg-body p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 14px;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 16px;
}

.pkg-meta strong {
  color: var(--gold);
}

.pkg-footer {
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding-top: 16px;
}

.pkg-link {
  color: var(--neelkanth);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: letter-spacing 0.2s;
}

.pkg-link:hover {
  letter-spacing: 0.15em;
}

/* ── PACKAGES GRID ──────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ENQUIRY FORM ───────────────────────────────────────────── */
.enquiry-section {
  position: relative;
  z-index: 1;
}

.enquiry-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-gold);
}

.enquiry-left {
  background: linear-gradient(160deg, var(--dark-indigo), var(--midnight-blue));
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.enquiry-left::before {
  content: 'ॐ';
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: 220px;
  color: rgba(212, 168, 67, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.enquiry-left h3 {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.enquiry-left p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.8;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--silver);
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(61, 126, 255, 0.12);
  border: var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--neelkanth);
}

.enquiry-right {
  background: var(--midnight-blue);
  padding: 48px 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
  font-family: 'Raleway', sans-serif;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(26, 16, 64, 0.6);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  outline: none;
  appearance: none;
  resize: vertical;
  transition: var(--transition-base);
}

.form-field select option {
  background: var(--dark-indigo);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(160, 174, 192, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(61, 126, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(61, 126, 255, 0.08);
}

/* ── ACCORDION ──────────────────────────────────────────────── */
.accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.acc-item {
  border: var(--border-gold);
  border-top: none;
  background: rgba(15, 15, 42, 0.7);
  cursor: pointer;
}

.acc-item:first-child {
  border-top: var(--border-gold);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.acc-item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.acc-item:hover {
  background: rgba(26, 16, 64, 0.9);
}

.acc-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  user-select: none;
}

.acc-day {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  min-width: 56px;
  text-align: center;
  line-height: 1;
}

.acc-day span:first-child {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 400;
  margin-bottom: 2px;
  font-family: 'Raleway', sans-serif;
}

.acc-title h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.acc-title p {
  font-size: 12px;
  color: var(--silver);
}

.acc-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s;
}

.acc-body {
  padding: 0 24px 20px 100px;
  font-size: 13px;
  color: var(--silver);
  line-height: 1.8;
  border-top: 1px solid rgba(212, 168, 67, 0.06);
}

.acc-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.acc-tags span {
  background: rgba(26, 16, 64, 0.8);
  border: var(--border-gold);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  color: var(--silver);
}

/* ── SACRED CALENDAR ────────────────────────────────────────── */
.cal-widget {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cal-header {
  background: linear-gradient(135deg, var(--dark-indigo), rgba(91, 45, 142, 0.4));
  padding: 20px 28px;
  border-bottom: var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cal-header h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
}

.cal-header span {
  font-size: 12px;
  color: var(--silver);
  letter-spacing: 0.1em;
}

.cal-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.06);
  transition: background 0.2s;
}

.cal-event:last-child {
  border-bottom: none;
}

.cal-event:hover {
  background: rgba(26, 16, 64, 0.6);
}

.cal-date {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cal-date .day {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.cal-date .month {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}

.cal-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.cal-info p {
  font-size: 12px;
  color: var(--silver);
}

.cal-tag {
  margin-left: auto;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.cal-tag.ekadashi {
  background: rgba(91, 45, 142, 0.2);
  color: #A78BFA;
}

.cal-tag.festival {
  background: rgba(61, 126, 255, 0.1);
  color: var(--neelkanth);
}

.cal-tag.auspicious {
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold);
}

/* ── PILGRIMAGE PLANNER ─────────────────────────────────────── */
.planner {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.planner-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: var(--border-gold);
}

.planner-icon {
  font-size: 32px;
}

.planner-header h3 {
  color: var(--white);
  margin-bottom: 4px;
}

.planner-header p {
  font-size: 13px;
  color: var(--silver);
}

.planner-step {
  margin-bottom: 28px;
}

.step-q {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.planner-opts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.opt {
  background: rgba(26, 16, 64, 0.6);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--silver);
  cursor: pointer;
  transition: var(--transition-base);
}

.opt:hover {
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--white);
}

.opt.selected {
  background: rgba(61, 126, 255, 0.12);
  border: var(--border-blue);
  color: var(--neelkanth);
}

.planner-result {
  background: linear-gradient(135deg, rgba(26, 16, 64, 0.8), rgba(61, 126, 255, 0.08));
  border: var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 16px;
}

.result-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.planner-result h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.planner-result p {
  font-size: 13px;
  color: var(--silver);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition-base);
}

.testimonial-card:hover {
  border: var(--border-gold-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.quote-mark {
  font-size: 52px;
  color: rgba(212, 168, 67, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 14px;
  right: 18px;
  pointer-events: none;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

blockquote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 20px;
  padding: 0;
  border: none;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  padding-top: 16px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neelkanth), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(212, 168, 67, 0.2);
  flex-shrink: 0;
}

.t-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.t-yatra {
  font-size: 11px;
  color: var(--gold);
  margin-top: 2px;
}

/* ── DESTINATION CARDS ──────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: var(--border-gold);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.9) 0%, rgba(10, 10, 20, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition-base);
}

.dest-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.dest-sub {
  font-size: 12px;
  color: var(--gold);
}

/* ── TRUMP DESTINATION CARDS ────────────────────────────────── */
.trump-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trump-card {
  background: linear-gradient(160deg, #1a1040 0%, #0d0820 60%, #0a0516 100%);
  border-radius: 18px;
  border: 1.5px solid rgba(212, 168, 67, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(212, 168, 67, 0.08);
}

.trump-card:hover {
  transform: translateY(-10px) scale(1.025) rotateX(2deg);
  border-color: rgba(212, 168, 67, 0.75);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.7), 0 0 32px rgba(212, 168, 67, 0.18), inset 0 1px 0 rgba(212, 168, 67, 0.15);
}

/* Header stripe */
.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(61, 126, 255, 0.18) 0%, rgba(91, 45, 142, 0.18) 100%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.tc-header--epic {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.22) 0%, rgba(180, 100, 60, 0.22) 100%);
}

.tc-header--rare {
  background: linear-gradient(90deg, rgba(91, 45, 142, 0.3) 0%, rgba(140, 60, 200, 0.2) 100%);
}

.tc-header--divine {
  background: linear-gradient(90deg, rgba(255, 140, 60, 0.18) 0%, rgba(220, 80, 40, 0.12) 100%);
}

.tc-header--vishnu {
  background: linear-gradient(90deg, rgba(80, 180, 120, 0.18) 0%, rgba(40, 140, 180, 0.12) 100%);
}

.tc-region {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

.tc-power {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(212, 168, 67, 0.5);
}

/* Image area */
.tc-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  flex-shrink: 0;
}

.tc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.trump-card:hover .tc-img {
  transform: scale(1.08);
}

/* Holographic shimmer overlay */
.tc-holographic {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
      transparent 20%,
      rgba(212, 168, 67, 0.07) 35%,
      rgba(61, 126, 255, 0.06) 50%,
      rgba(91, 45, 142, 0.06) 65%,
      transparent 80%);
  background-size: 200% 200%;
  animation: holoShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes holoShimmer {

  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.4;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

/* Rare / Epic badge */
.tc-rare-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.9), rgba(180, 100, 30, 0.9));
  color: #0d0820;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(212, 168, 67, 0.5);
  text-shadow: none;
}

/* Name bar */
.tc-name-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.10);
}

.tc-deity-icon {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.6));
}

.tc-name {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.2;
}

.tc-desc {
  padding: 12px 16px;
  font-size: 12px;
  color: var(--silver);
  line-height: 1.6;
}

.tc-desc a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 67, 0.3);
}

.tc-desc a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Stats grid */
.tc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1;
  border-bottom: 1px solid rgba(212, 168, 67, 0.10);
}

.tc-stat {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-right: 1px solid rgba(212, 168, 67, 0.08);
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
  gap: 3px;
}

.tc-stat:nth-child(2n) {
  border-right: none;
}

.tc-stat:nth-child(3),
.tc-stat:nth-child(4) {
  border-bottom: none;
}

.tc-stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(160, 174, 192, 0.55);
  font-family: 'Raleway', sans-serif;
}

.tc-stat-val {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

/* Explore button */
.tc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(90deg, rgba(61, 126, 255, 0.12), rgba(91, 45, 142, 0.12));
  color: var(--silver);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.tc-btn:hover {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.18), rgba(180, 100, 60, 0.12));
  color: var(--gold);
}

.tc-btn i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.tc-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
  .trump-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .trump-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SHLOKA QUOTE ───────────────────────────────────────────── */
blockquote.shloka {
  background: rgba(26, 16, 64, 0.6);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 15px;
  color: var(--silver);
  line-height: 2;
}

blockquote.shloka cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-base);
}

.feature-card:hover {
  border: var(--border-gold-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 126, 255, 0.12), rgba(91, 45, 142, 0.12));
  border: var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
}

/* ── PHOTO GALLERY ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: var(--border-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 28px;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: var(--border-gold);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  background: rgba(26, 16, 64, 0.7);
  border: var(--border-gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 168, 67, 0.15);
}

/* ── INCLUSIONS / EXCLUSIONS ────────────────────────────────── */
.incl-excl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.incl-box,
.excl-box {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.incl-box h4 {
  color: #4ade80;
  margin-bottom: 16px;
  font-size: 16px;
}

.excl-box h4 {
  color: #f87171;
  margin-bottom: 16px;
  font-size: 16px;
}

.incl-list li,
.excl-list li {
  font-size: 13px;
  color: var(--silver);
  padding: 6px 0;
  border-bottom: 1px solid rgba(212, 168, 67, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.incl-list li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.excl-list li::before {
  content: '✗';
  color: #f87171;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── YOUTUBE SECTION ────────────────────────────────────────── */
.youtube-wrap {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-indigo) 0%, rgba(91, 45, 142, 0.4) 50%, var(--dark-indigo) 100%);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'ॐ';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 300px;
  color: rgba(212, 168, 67, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--silver);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  background: rgba(26, 16, 64, 0.6);
  border: var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: rgba(61, 126, 255, 0.5);
}

.newsletter-form input::placeholder {
  color: rgba(160, 174, 192, 0.4);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--midnight-blue);
  border-top: var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: var(--silver);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: rgba(212, 168, 67, 0.4);
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-indigo), var(--violet));
  border: 1px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 16px var(--violet-glow);
  flex-shrink: 0;
}

.footer-logo-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(26, 16, 64, 0.8);
  border: var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-social a:hover {
  border: var(--border-gold-hover);
  background: rgba(212, 168, 67, 0.08);
  transform: translateY(-2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--silver);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 12px;
  color: var(--silver);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(26, 16, 64, 0.6);
  border: var(--border-gold);
  border-radius: 30px;
  padding: 8px 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  cursor: pointer;
  transition: var(--transition-base);
}

.filter-btn:hover {
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--white);
}

.filter-btn.active {
  background: rgba(61, 126, 255, 0.12);
  border: var(--border-blue);
  color: var(--neelkanth);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--midnight-blue);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neelkanth), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
  border: 2px solid rgba(212, 168, 67, 0.3);
}

.team-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.team-bio {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
}

/* ── CONTACT MAP ────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-gold);
  height: 380px;
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: var(--border-gold);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-to-top:hover {
  transform: translateY(-3px);
  background: rgba(212, 168, 67, 0.2);
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 32px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  animation: float-up 3s ease-in-out infinite;
}

/* ── RELATED PACKAGES ───────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }

  .hero-mandala,
  .hero-scroll-hint {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .page-hero {
    padding: 80px 24px 40px;
    min-height: 40vh;
  }

  .enquiry-wrap {
    grid-template-columns: 1fr;
  }

  .enquiry-left,
  .enquiry-right {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .acc-body {
    padding: 0 16px 16px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .incl-excl-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .stats-bar {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .cal-event {
    flex-wrap: wrap;
  }

  .cal-tag {
    margin-left: 62px;
  }

  .planner {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px 28px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── TRUMP CARD SHARE BAR ─ */
.tc-share-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  overflow: hidden;
}

.tc-share-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 174, 192, 0.7);
  transition: background 0.25s, color 0.25s;
  border-right: 1px solid rgba(212, 168, 67, 0.08);
}

.tc-share-btn:last-child {
  border-right: none;
}

.tc-share-btn i {
  font-size: 12px;
}

.tc-share-btn:hover {
  background: rgba(212, 168, 67, 0.08);
  color: var(--gold, #d4a843);
}

.tc-share-btn.wa:hover {
  background: rgba(37, 211, 102, 0.08);
  color: #25d366;
}

.tc-share-btn.dl:hover {
  background: rgba(61, 126, 255, 0.1);
  color: #3d7eff;
}

.tc-share-btn.pr:hover {
  background: rgba(91, 45, 142, 0.12);
  color: #a78bfa;
}

/* toast */
#tc-toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(26, 16, 64, 0.95);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: #d4a843;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 40px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

#tc-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── PRINT STYLES ── */
@media print {
  body {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    background: #0d0820 !important;
  }

  body>*:not(#print-card-shell) {
    display: none !important;
  }

  #print-card-shell {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #0d0820 !important;
  }

  #print-card-shell .trump-card {
    width: 340px;
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none !important;
    transform: none !important;
    margin: 0 auto;
  }

  .tc-share-bar {
    display: none !important;
  }
}

/* ── EXPORT STYLES (html2canvas) ── */
.tc-export-mode {
  transform: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.tc-export-mode .tc-holographic {
  display: none !important;
}

/* ── DIVINE FIREFLIES (CANVAS BG) ── */
#stardust-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* ── BACKGROUND MUSIC FLOAT ── */
.music-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 16, 64, 0.8);
  border: var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.music-float:hover {
  background: rgba(212, 168, 67, 0.15);
  transform: translateY(-3px);
}

.music-float.playing i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}