/* ============================================
   NEERAJA DEVOTIONAL TOURS | Premium CSS
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --saffron: #FF8C00;
  --saffron-light: #FFA033;
  --saffron-dark: #E67E00;
  --gold: #D4AF37;
  --gold-light: #E8C547;
  --gold-dark: #B8960F;
  --cream: #FFF8EE;
  --maroon: #7A1E1E;
  --maroon-dark: #5A1414;
  --sacred-blue: #1E3A8A;
  --sacred-blue-light: #2E4A9A;
  --beige: #FAF6F0;
  --beige-dark: #F0E8D8;
  --white: #FFFFFF;
  --black: #1A1A2E;
  --gray-100: #F7F7F7;
  --gray-200: #E9E9E9;
  --gray-300: #D4D4D4;
  --gray-400: #A0A0A0;
  --gray-500: #6B6B6B;
  --gray-600: #4A4A4A;
  --gray-700: #2D2D2D;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-subheading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(212,175,55,0.2);
  --shadow-saffron: 0 8px 30px rgba(255,140,0,0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-om {
  font-size: 4rem;
  animation: pulse-om 1.2s ease-in-out infinite;
  color: var(--saffron);
}
@keyframes pulse-om {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-subheading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  position: relative;
}
.section-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin-top: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  color: var(--black);
}

.section-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-tag::after { margin: 8px auto 0; }

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.header.scrolled .logo { color: var(--black); }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text span:first-child { font-size: 1rem; }
.logo-text span:last-child {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
}
.header.scrolled .nav-links a { color: var(--gray-600); }
.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::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--saffron); }

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--gold)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(255,140,0,0.3);
  transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,140,0,0.4) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}
.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .menu-toggle span { background: var(--black); }
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(26,26,46,0.6) 100%
  );
}
.hero-pattern {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 80px 24px 140px;
}
.hero-om {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.9;
  animation: float-om 3s ease-in-out infinite;
}
@keyframes float-om {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255,140,0,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,140,0,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover {
  background: var(--saffron);
  color: var(--white);
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fade-in-out 2s ease-in-out infinite;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}
@keyframes fade-in-out {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Hero Dot Navigation */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--saffron);
  width: 30px;
  border-radius: 5px;
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 56px;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,140,0,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}
.about-image:hover img {
  transform: scale(1.05);
}
.about-image::after {
  content: '\1F549';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.3;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-image-badge .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.about-image-badge .label {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
  max-width: 100px;
}
.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.about-feature-item .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(212,175,55,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: var(--saffron);
}

/* ---------- PACKAGES SECTION ---------- */
.packages {
  background: var(--beige);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  border-color: rgba(212,175,55,0.2);
}
.package-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.package-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.package-card:hover .package-card-image img {
  transform: scale(1.1);
}
.package-card-badge {
  position: absolute;
  top: 16px;
  left: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 5px 16px 5px 14px;
  border-radius: 0 50px 50px 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,140,0,0.3);
  z-index: 2;
}
.package-card-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.package-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  transition: var(--transition);
}
.package-card:hover .package-card-body h3 {
  color: var(--saffron);
}
.package-card-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.6;
}
.package-card-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.package-card-inclusions span {
  font-size: 0.7rem;
  padding: 4px 12px;
  background: var(--beige);
  border-radius: 50px;
  color: var(--gray-500);
  transition: var(--transition);
}
.package-card:hover .package-card-inclusions span {
  background: linear-gradient(135deg, rgba(255,140,0,0.08), rgba(212,175,55,0.08));
  color: var(--saffron-dark);
}
.package-card-inclusions span i {
  margin-right: 3px;
  font-size: 0.6rem;
}
.package-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--maroon);
  transition: var(--transition);
}
.package-card:hover .package-card-price {
  color: var(--saffron);
}
.package-card-price small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-400);
  display: block;
}
.btn-book {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.btn-book::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-book:hover::before {
  left: 100%;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-saffron);
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
  background: var(--white);
  position: relative;
}
.why-choose::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--maroon), var(--sacred-blue), var(--gold));
  background-size: 200% 100%;
  animation: gradient-move 4s linear infinite;
}
@keyframes gradient-move {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-md);
  background: var(--beige);
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(255,140,0,0.1), rgba(212,175,55,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  transform: scale(1.1) rotateY(180deg);
}
.why-card:hover .why-card-icon i,
.why-card:hover .why-card-icon i {
  color: var(--saffron);
}
.why-card:hover .why-card-icon i {
  color: var(--white);
}
.why-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ---------- COUNTERS ---------- */
.counters-section {
  background: linear-gradient(135deg, var(--maroon), var(--sacred-blue));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counters-section::before {
  content: '\1F549';
  position: absolute;
  font-size: 20rem;
  opacity: 0.03;
  top: -30%;
  right: -5%;
  transform: rotate(-15deg);
}
.counters-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 0l2.5 7.5L30 10l-7.5 2.5L20 20l-2.5-7.5L10 10l7.5-2.5z'/%3E%3C/g%3E%3C/svg%3E");
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.counter-item {
  text-align: center;
  color: var(--white);
}
.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.counter-plus {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.counter-label {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 400;
}
.counter-label i {
  margin-right: 6px;
  color: var(--gold);
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--beige);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(2) { grid-column: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; }
.gallery-item:nth-child(5) { grid-column: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-column: span 1; }
.gallery-item:nth-child(8) { grid-column: span 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--white);
  position: relative;
}
.testimonials-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card {
  text-align: center;
  padding: 40px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--font-subheading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gray-600);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 24px;
  quotes: "“" "”" "‘" "’";
}
.testimonial-text::before {
  content: "“";
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active {
  background: var(--saffron);
  width: 28px;
  border-radius: 5px;
}

/* ---------- BOOKING FORM ---------- */
.booking {
  background: linear-gradient(135deg, var(--beige), var(--white));
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '\1F3F5\FE0F';
  position: absolute;
  font-size: 16rem;
  opacity: 0.03;
  bottom: -10%;
  left: -8%;
  transform: rotate(20deg);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.booking-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.booking-info p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.booking-benefit .check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.booking-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.1);
}
.booking-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.form-group label i {
  color: var(--saffron);
  width: 18px;
  text-align: center;
  margin-right: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
  background: var(--cream);
  color: var(--gray-700);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
  background: var(--white);
}
.form-group textarea {
  height: 100px;
  resize: vertical;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-saffron);
}

/* ---------- PAYMENT OPTIONS ---------- */
.payment-options {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
}
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
  margin-top: 32px;
}
.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}
.payment-item .icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--beige);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  border: 1px solid transparent;
  color: var(--gray-500);
}
.payment-item:hover .icon-wrap {
  background: linear-gradient(135deg, var(--white), var(--cream));
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,0.15);
  transform: translateY(-4px);
  color: var(--saffron);
}

/* ---------- BLOG ---------- */
.blog {
  background: var(--beige);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-image {
  height: 200px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.blog-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  transition: var(--transition);
}
.blog-card:hover .blog-card-body h4 {
  color: var(--saffron);
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--saffron);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link:hover {
  gap: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--maroon), var(--sacred-blue));
}
.footer-top {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--saffron);
  transform: translateX(4px);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact .fc-icon {
  margin-top: 4px;
  color: var(--saffron);
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom-quote {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  padding: 24px 0 0;
  font-style: italic;
}

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.55); }
}
.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 50px rgba(37,211,102,0.6);
  color: var(--white);
  animation: none;
}
.whatsapp-btn .whatsapp-icon {
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.whatsapp-btn .hide-mobile {
  display: inline;
}

/* ---------- STICKY BOOKING BUTTON ---------- */
.sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--white);
  padding: 12px 24px;
  display: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  border-top: 2px solid var(--gold);
}
.sticky-booking .sb-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.sticky-booking .sb-text small {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gray-400);
}
.sticky-booking .sb-btn {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 997;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-saffron);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 360px; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    color: var(--gray-600) !important;
    font-size: 1rem;
  }
  .nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .nav-overlay.active { display: block; }

  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 24px; }

  .whatsapp-btn .hide-mobile { display: none; }
  .whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
  }
  .whatsapp-btn .whatsapp-icon {
    margin: 0;
  }

  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .sticky-booking { display: flex; }
  .section { padding: 60px 0; }
  .hero { height: 90vh; min-height: 500px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .packages-grid { gap: 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 24px 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ---------- MANDALA DIVIDER ---------- */
.mandala-divider {
  text-align: center;
  padding: 20px 0;
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.3;
  letter-spacing: 12px;
}
.mandala-divider i {
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--maroon), var(--sacred-blue));
  color: var(--gold);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}
.announcement-bar + .header {
  top: 36px;
}
