/* ============================================================
   assets/css/style.css
   Banarasi Vaidic Pandit — Premium Design System
   ============================================================ */

/* ─────────────────────────────────────────
   Google Fonts & Variables
   ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Serif+Devanagari:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary:        #FF9800;
  --primary-dark:   #F57C00;
  --primary-light:  #FFE082;
  --secondary:      #E65100;
  --secondary-dark: #BF360C;
  --secondary-light:#FF7043;
  --accent:         #FFB300;
  --accent-dark:    #FFA000;
  --accent-light:   #FFE082;
  --bg:             #FFFFFF;
  --bg-alt:         #FFFDF0;
  --text:           #3E2723;
  --text-light:     #5D4037;
  --text-muted:     #8D6E63;
  --white:          #FFFFFF;
  --border:         rgba(255,152,0,0.15);

  --gradient-gold:    linear-gradient(135deg, #FFE082 0%, #FFB300 50%, #FF9800 100%);
  --gradient-maroon:  linear-gradient(135deg, #FF9800 0%, #E65100 100%);
  --gradient-hero:    none;
  --gradient-section: linear-gradient(180deg, #FFFFFF 0%, #FFFDF0 100%);
  --gradient-dark:    linear-gradient(135deg, #FFFDF0 0%, #FFF9C4 100%);

  /* Glass */
  --glass-bg:     rgba(255,255,255,0.72);
  --glass-border: 1px solid rgba(255,255,255,0.8);
  --glass-blur:   blur(20px);
  --glass-shadow: 0 8px 32px rgba(123,30,30,0.08);

  /* Shadows */
  --shadow-xs:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.35);
  --shadow-maroon: 0 4px 20px rgba(123,30,30,0.25);

  /* Borders */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-en:   'Poppins', sans-serif;
  --font-hi:   'Noto Serif Devanagari', serif;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-py: 80px;
}

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

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

body {
  font-family: var(--font-en);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--secondary); }

/* Hindi text class */
.font-hi, .text-hindi { font-family: var(--font-hi); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF8EC; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--accent), var(--secondary));
  border-radius: 4px;
}

/* ─────────────────────────────────────────
   Scroll Progress Bar
   ───────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────
   Typography
   ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

.display-hindi {
  font-family: var(--font-hi);
  font-weight: 700;
  color: var(--secondary);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  margin-bottom: 12px;
}

.section-title .text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  max-width: 600px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.divider-om {
  font-family: var(--font-hi);
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

/* ─────────────────────────────────────────
   Buttons
   ───────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FFE082, #FF9800, #FFE082, #FF9800);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,152,0,0.5);
  color: var(--white);
}

.btn-gold:active::before {
  width: 300px;
  height: 300px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: linear-gradient(135deg, #FFE082, #FF9800, #FFE082, #FF9800);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-maroon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #FF9800, #E65100, #FF9800, #E65100);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-maroon);
}

.btn-maroon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,81,0,0.45);
  color: var(--white);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  color: var(--white);
}

/* ─────────────────────────────────────────
   Header / Navbar
   ───────────────────────────────────────── */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-slow);
  padding: 0;
}

#main-header .header-top {
  background: var(--secondary);
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

#main-header .header-top a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

#main-header .header-top a:hover { color: var(--accent); }

#main-header .header-top .ht-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

#main-header .header-top .ht-item i {
  color: var(--accent);
  font-size: 12px;
}

#main-navbar {
  background: rgba(255,253,247,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all var(--transition-slow);
}

/* Scrolled state */
#main-header.scrolled .header-top { display: none; }
#main-header.scrolled #main-navbar {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
  background: rgba(255,253,247,0.98);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.navbar-brand:hover .brand-logo {
  transform: scale(1.06);
}

.navbar-brand .brand-text { line-height: 1.2; }

.navbar-brand .brand-name {
  font-family: var(--font-hi);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.navbar-brand .brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover::after, .nav-link.active::after {
  width: calc(100% - 28px);
}

/* Custom Navigation Dropdown (Desktop hover) */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.dropdown-menu-custom::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-item-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item-custom {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(212,175,55,0.06);
}

.dropdown-item-custom:last-child {
  border-bottom: none;
}

.dropdown-item-custom:hover {
  background: var(--bg-alt);
}

.dropdown-item-custom .dic-hi {
  font-family: var(--font-hi);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  margin-bottom: 2px;
  transition: color 0.2s ease;
}

.dropdown-item-custom .dic-en {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-item-custom:hover .dic-hi {
  color: var(--primary);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: var(--radius-xs);
  background: var(--bg-alt);
}

.navbar-toggler:focus { box-shadow: none; }

.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.toggler-icon span {
  display: block;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  background: var(--white);
}

.dropdown-item {
  font-size: 14px;
  border-radius: var(--radius-xs);
  padding: 8px 12px;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.header-spacer {
  height: 110px;
}

/* ─────────────────────────────────────────
   Hero Slider
   ───────────────────────────────────────── */
#hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Temple silhouette decorative SVG */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%23FFFDF7' fill-opacity='0.08' d='M0 200V80l30-20 20 20V50l25-30 25 30V30l20-30 20 30v40l25-30 25 30V70l30 10v120H0z'/%3E%3C/svg%3E");
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

/* Floating Om decoration */
.hero-om {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-hi);
  font-size: clamp(120px, 20vw, 260px);
  color: rgba(212,175,55,0.08);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  animation: floatOm 8s ease-in-out infinite;
}

@keyframes floatOm {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50%       { transform: translateY(calc(-50% - 20px)) rotate(3deg); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title-hi {
  font-family: var(--font-hi);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.4);
}

.hero-title-en {
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  display: block;
}

/* Slider Controls */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  width: 8px;
  height: 8px;
  opacity: 1;
  transition: all var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px !important;
  height: 48px !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
}

/* ─────────────────────────────────────────
   Trust/Stats Strip
   ───────────────────────────────────────── */
.trust-strip {
  background: var(--gradient-maroon);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23D4AF37' fill-opacity='0.15'/%3E%3C/svg%3E");
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
}

.trust-item .trust-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-item .trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ─────────────────────────────────────────
   Section Base
   ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--gradient-dark);
  color: var(--text);
}
.section-dark h2, .section-dark h3 { color: var(--secondary); }

/* ─────────────────────────────────────────
   Service Cards
   ───────────────────────────────────────── */
.service-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.4);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  z-index: 2;
}

.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name-hi {
  font-family: var(--font-hi);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
  line-height: 1.3;
}

.service-name-en {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.service-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}

.service-meta-item i { color: var(--accent); }

.service-card-footer {
  display: flex;
  gap: 8px;
  padding: 0 20px 20px;
}

.service-card-footer .btn-gold {
  flex: 1;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
}

/* Category Filter Tabs */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}

.cat-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ─────────────────────────────────────────
   Why Choose Us
   ───────────────────────────────────────── */
.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(230,126,34,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--primary);
  transition: all var(--transition);
  border: 2px solid rgba(212,175,55,0.2);
}

.why-card:hover .why-icon {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1) rotate(5deg);
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   About Section
   ───────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-exp-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--white);
}

.about-exp-badge .exp-num {
  font-size: 32px;
  line-height: 1;
}

.about-exp-badge .exp-label {
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

.about-features li:last-child { border-bottom: none; }

.about-features li i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   Testimonials
   ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: rgba(212,175,55,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.3);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 15px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   Cities
   ───────────────────────────────────────── */
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
}

.city-badge i { color: var(--primary); font-size: 12px; }

.city-badge:hover, .city-badge.featured {
  background: var(--gradient-gold);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.city-badge:hover i, .city-badge.featured i { color: var(--white); }

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Cities marquee */
.cities-marquee {
  overflow: hidden;
  position: relative;
}

.cities-marquee::before,
.cities-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.cities-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt), transparent);
}

.cities-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt), transparent);
}

.marquee-track {
  display: flex;
  gap: 10px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   FAQ Accordion — Native details/summary (no JS needed)
   ───────────────────────────────────────── */
.faq-accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: box-shadow 0.3s ease;
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease, background 0.2s ease;
}

/* Remove default marker in all browsers */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-item[open] .faq-question {
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255,152,0,0.05), rgba(255,183,0,0.05));
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--accent);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Horizontal bar */
.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical bar — becomes hidden when open */
.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─────────────────────────────────────────
   Blog Cards
   ───────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(230,126,34,0.1), rgba(212,175,55,0.15));
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
  transition: color var(--transition);
}

.blog-card:hover .blog-title { color: var(--primary); }

.blog-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.blog-meta i { color: var(--accent); margin-right: 3px; }

/* ─────────────────────────────────────────
   Booking Form
   ───────────────────────────────────────── */
.booking-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
  transition: all var(--transition);
  z-index: 1;
}

.step-item.active .step-circle {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.step-item.completed .step-circle {
  background: var(--gradient-maroon);
  border-color: transparent;
  color: var(--white);
}

.step-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}

.step-item.active .step-label { color: var(--primary); font-weight: 600; }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-top: -22px;
  position: relative;
  z-index: 0;
}

.form-step { display: none; }
.form-step.active { display: block; }

/* Form Controls */
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-xs);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,0.8);
  transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  background: var(--white);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

/* ─────────────────────────────────────────
   Floating Mobile CTAs
   ───────────────────────────────────────── */
#floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 10px 16px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--border);
}

#floating-cta .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.cta-btn i { font-size: 18px; }

.cta-call {
  background: linear-gradient(135deg, #E67E22, #C8640F);
  color: var(--white);
}

.cta-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}

.cta-book {
  background: var(--gradient-gold);
  color: var(--white);
}

/* ─────────────────────────────────────────
   Floating WhatsApp Button (Desktop)
   ───────────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 890;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  text-decoration: none;
}

#whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

#whatsapp-float .pulse {
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { width: 60px; height: 60px; opacity: 1; }
  100% { width: 100px; height: 100px; opacity: 0; }
}

/* ─────────────────────────────────────────
   Hero Banner (Inner Pages)
   ───────────────────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background: var(--gradient-maroon);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23D4AF37' fill-opacity='0.12'/%3E%3C/svg%3E");
}

.page-hero::after {
  content: 'ॐ';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-hi);
  font-size: 160px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero .page-hi-title {
  font-family: var(--font-hi);
  font-size: clamp(20px, 3vw, 32px);
  color: var(--accent-light);
  font-weight: 600;
}

/* Breadcrumb */
.breadcrumb-wrap {
  padding: 12px 0;
  background: rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
}

.breadcrumb-item { font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────
   Contact Section
   ───────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(230,126,34,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-card:hover .contact-icon {
  background: var(--gradient-gold);
  color: var(--white);
}

.contact-card-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
}

/* ─────────────────────────────────────────
   Footer
   ───────────────────────────────────────── */
#main-footer {
  background: var(--gradient-dark);
  color: var(--text);
  padding-top: 60px;
}

.footer-logo .brand-name { color: var(--secondary); }
.footer-logo .brand-tagline { color: var(--text-muted); }

.footer-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 16px 0;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-light);
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--text-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a { color: var(--primary); }

/* ─────────────────────────────────────────
   Gallery
   ───────────────────────────────────────── */
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,30,30,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay i { color: var(--white); font-size: 32px; }

/* ─────────────────────────────────────────
   Service Detail Page
   ───────────────────────────────────────── */
.service-detail-hero {
  position: relative;
  height: clamp(300px, 50vh, 500px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(91,20,20,0.95) 0%, rgba(50,10,10,0.7) 60%, transparent 100%);
}

.service-info-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(230,126,34,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}

.info-bar-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-bar-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
}

/* Service Detail Tabs */
.service-tabs .nav-tabs {
  border-bottom: 2px solid var(--border);
  gap: 4px;
}

.service-tabs .nav-link {
  font-weight: 600;
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-xs) var(--radius-xs) 0 0;
  padding: 12px 20px;
  font-size: 14px;
}

.service-tabs .nav-link.active {
  color: var(--primary) !important;
  background: transparent;
  border-bottom: 3px solid var(--primary);
}

/* Booking Sidebar */
.booking-sidebar {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}

.booking-sidebar .sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* ─────────────────────────────────────────
   Lottie / Animation containers
   ───────────────────────────────────────── */
.lottie-wrap {
  max-width: 200px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   Decorative Elements
   ───────────────────────────────────────── */
.mandala-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23D4AF37' fill-opacity='0.08'/%3E%3Ccircle cx='10' cy='10' r='0.5' fill='%23D4AF37' fill-opacity='0.06'/%3E%3Ccircle cx='70' cy='70' r='0.5' fill='%23D4AF37' fill-opacity='0.06'/%3E%3C/svg%3E");
}

.section-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L22 18L40 20L22 22L20 40L18 22L0 20L18 18Z' fill='%23D4AF37' fill-opacity='0.04'/%3E%3C/svg%3E");
}

.float-deco {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  font-family: var(--font-hi);
  color: var(--accent);
}

/* ─────────────────────────────────────────
   Utilities
   ───────────────────────────────────────── */
.text-primary    { color: var(--primary)   !important; }
.text-secondary  { color: var(--secondary) !important; }
.text-accent     { color: var(--accent)    !important; }
.text-gold       { color: var(--accent)    !important; }
.bg-primary-soft { background: linear-gradient(135deg, rgba(230,126,34,0.08), rgba(212,175,55,0.08)); }
.bg-maroon-soft  { background: linear-gradient(135deg, rgba(123,30,30,0.05), rgba(91,20,20,0.08)); }

.badge-gold {
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.badge-maroon {
  background: var(--gradient-maroon);
  color: var(--white);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ─────────────────────────────────────────
   AOS Overrides
   ───────────────────────────────────────── */
/* AOS pointer-events fix — site uses custom IntersectionObserver, not AOS.init()
   The AOS CSS sets pointer-events:none on [data-aos] by default and only restores
   it via .aos-animate (added by AOS.init()). Since we never call AOS.init(),
   we must restore pointer-events so elements remain clickable. */
[data-aos] { pointer-events: auto !important; }

/* ─────────────────────────────────────────
   RESPONSIVE — Mobile First
   ───────────────────────────────────────── */

/* Mobile base (<576px) */
:root { --section-py: 56px; }

.hero-om { display: none; }

#floating-cta { display: block; }

body { padding-bottom: 80px; }

#whatsapp-float {
  bottom: 88px;
  right: 16px;
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.hero-stats { gap: 20px; }

.about-exp-badge {
  right: 0;
  bottom: 0;
  width: 90px;
  height: 90px;
}

.about-exp-badge .exp-num { font-size: 24px; }

.booking-sidebar { position: static; }

.service-info-bar {
  gap: 16px;
  padding: 16px 20px;
  margin-top: -20px;
}

.trust-divider { display: none; }

.trust-strip .row > div { margin-bottom: 16px; }

/* Tablet (≥576px) */
@media (min-width: 576px) {
  :root { --section-py: 64px; }
  .hero-stats { gap: 28px; }
}

/* Tablet landscape (≥768px) */
@media (min-width: 768px) {
  :root { --section-py: 72px; }
  #floating-cta { display: none; }
  body { padding-bottom: 0; }
  #whatsapp-float {
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .hero-om { display: block; }
  .about-exp-badge { right: -24px; bottom: -24px; }
  .trust-divider { display: block; }
}

/* Desktop (≥992px) */
@media (min-width: 992px) {
  :root { --section-py: 80px; }
  .booking-sidebar { position: sticky; top: 120px; }
}

/* Large desktop (≥1200px) */
@media (min-width: 1200px) {
  :root { --section-py: 96px; }
}

/* ─────────────────────────────────────────
   Print Styles
   ───────────────────────────────────────── */
@media print {
  #main-header, #floating-cta, #whatsapp-float,
  .booking-sidebar, #main-footer { display: none; }
  body { background: white; color: black; }
}

/* ─────────────────────────────────────────
   Falling Sacred Shower Elements
   ───────────────────────────────────────── */
#sacred-shower {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.falling-particle {
  position: absolute;
  top: -50px;
  pointer-events: none;
  will-change: transform, opacity;
  animation: fallAnimation 8s linear forwards;
}
@keyframes fallAnimation {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  90% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(110vh) translateX(var(--sway)) rotate(360deg);
    opacity: 0;
  }
}

/* Performant Scroll-Animations using Native IntersectionObserver */
.js-enabled [data-aos],
.js-enabled .gsap-reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.js-enabled [data-aos="fade-up"],
.js-enabled .gsap-reveal {
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.js-enabled [data-aos="fade-down"] {
  transform: translateY(-30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.js-enabled [data-aos="fade-left"] {
  transform: translateX(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.js-enabled [data-aos="fade-right"] {
  transform: translateX(-30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.js-enabled [data-aos="zoom-in"] {
  transform: scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* Active states when elements are visible in the viewport */
.in-view[data-aos],
.in-view [data-aos],
.in-view.gsap-reveal,
.in-view .gsap-reveal {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}


/* Mobile Hero Slider aspect ratio and fit optimization */
@media (max-width: 767px) {
  #hero-slider,
  .hero-slide {
    min-height: 60vh !important;
    height: 60vh !important;
  }
  .hero-content {
    padding: 90px 0 40px 0 !important;
  }
  .hero-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
  }
  .hero-title-hi {
    font-size: 26px !important;
    margin-bottom: 6px !important;
  }
  .hero-title-en {
    font-size: 15px !important;
    margin-bottom: 12px !important;
  }
  .hero-desc {
    font-size: 13px !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
  }
}
.footer-text {
    background: linear-gradient(
        to right,
        #ff6c2f 10%,
        #f9b931 50%,
        #22c55e 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    animation: textclip 2.5s linear infinite;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.footer-text:hover {
    animation-duration: 1s;
}

.heart {
    color: #ff4d4d;
    animation: heartbeat 1.2s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
}
