/* ============================================================
   SR PALACE VRINDAVAN — DIVINE SPIRITUAL THEME
   Saffron · Gold · Cream · Sacred Light
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --saffron: #E8640A;
  --saffron-light: #F5892A;
  --saffron-pale: #FFF3E6;
  --gold: #C9951A;
  --gold-light: #F0C842;
  --gold-pale: #FDF4C0;
  --cream: #FFF8EF;
  --cream-dark: #F5EAD7;
  --blush: #FFE0CC;
  --maroon: #7B1F1F;
  --maroon-dark: #4E0E0E;
  --text: #2C1A0A;
  --text-mid: #6B4226;
  --text-soft: #9E6B45;
  --white: #FFFFFF;
  --border: rgba(201, 149, 26, 0.3);
  --shadow-gold: 0 8px 32px rgba(201, 149, 26, 0.18);
  --shadow-deep: 0 20px 60px rgba(44, 26, 10, 0.14);
  --glow-saffron: 0 0 40px rgba(232, 100, 10, 0.35);
  --glow-gold: 0 0 30px rgba(240, 200, 66, 0.5);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1600px;
  --nav-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.75;
  font-size: clamp(0.95rem, 1vw + 0.6rem, 1.05rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.03em;
}

p {
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Layout Utilities ── */
.container {
  width: 95%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--cream-dark);
}

.section-saffron {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, #3D1010 50%, var(--maroon) 100%);
  color: var(--cream);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 52px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-family: 'Cinzel', serif;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--gold) 50%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title-light {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-family: 'Cinzel', serif;
  color: var(--cream);
}

.section-subtitle {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Divine Divider (gold line) ── */
.gold-line {
  width: 80px;
  height: 3px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--saffron), var(--gold-light), transparent);
  border-radius: 99px;
  position: relative;
}

.gold-line::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  color: var(--gold-light);
  background: var(--cream);
  padding: 0 4px;
}

.section-saffron .gold-line::after {
  background: #3D1010;
}

.section-soft .gold-line::after {
  background: var(--cream-dark);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 30px;
  font-size: 0.8rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  border-color: var(--gold-light);
  color: #fff;
  box-shadow: var(--glow-saffron);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(232, 100, 10, 0.55);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-outline-dark {
  border-color: var(--saffron);
  color: var(--saffron);
}

.btn-outline-dark:hover {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-color: var(--gold);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--maroon-dark);
  border-color: var(--gold-light);
  font-weight: 700;
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(240, 200, 66, 0.7);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(201, 149, 26, 0.6);
}

.card-pad {
  padding: 24px;
}

/* ── GRID ── */
.grid {
  display: grid;
  gap: 24px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-pale), var(--blush));
  color: var(--maroon);
  border: 1px solid rgba(201, 149, 26, 0.35);
}

/* ── ICON CIRCLE ── */
.icon-circle {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-pale), var(--blush));
  font-size: 1.4rem;
  margin: 0 auto 16px;
  border: 2px solid rgba(201, 149, 26, 0.25);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.card:hover .icon-circle {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  box-shadow: var(--glow-saffron);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(44, 26, 10, 0.2) 0%,
      rgba(78, 14, 14, 0.55) 40%,
      rgba(20, 10, 5, 0.82) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 92%);
  padding: 0 16px;
}

.hero-divine-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 200, 66, 0.5);
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
  font-family: 'Cinzel', serif;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, #FFF8EF 0%, var(--gold-light) 60%, var(--saffron-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin-top: 6px;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

.hero-copy {
  margin: 18px auto 0;
  width: min(600px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 1.2rem;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 26, 10, 0.35), rgba(78, 14, 14, 0.75));
  z-index: 1;
}

.page-hero .hero-bg {
  transition: transform 0.8s ease;
}

.page-hero:hover .hero-bg {
  transform: scale(1.03);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 92%);
}

.page-hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-family: 'Cinzel', serif;
  background: linear-gradient(180deg, #FFF8EF 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: #fff;
  padding: 26px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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");
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
}

.stat-label {
  margin: 4px 0 0;
  opacity: 0.85;
  font-size: 0.88rem;
  font-weight: 300;
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  transition: var(--transition);
}

.site-header.transparent {
  background: rgba(20, 8, 2, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 200, 66, 0.2);
}

.site-header.solid {
  background: rgba(255, 248, 239, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 149, 26, 0.3);
  box-shadow: 0 4px 24px rgba(44, 26, 10, 0.08);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-block;
}

.brand-main {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--saffron-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-sub {
  margin-top: -2px;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.75;
  font-family: 'Poppins', sans-serif;
}

.site-header.transparent .brand-sub {
  color: rgba(255, 255, 255, 0.7);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

.site-header.solid .brand-sub {
  color: var(--text-soft);
  -webkit-text-fill-color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.site-header.transparent .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.solid .nav-link {
  color: var(--text-mid);
}

.nav-link:hover,
.nav-link.active {
  background: transparent;
  color: var(--saffron) !important;
  -webkit-text-fill-color: var(--saffron);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.site-header.transparent .menu-btn {
  color: #fff;
}

.site-header.solid .menu-btn {
  color: var(--text);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(330px, 88vw);
  height: 100svh;
  background: linear-gradient(160deg, #FFF8EF 0%, #FFF3E6 100%);
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 90px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 2px solid rgba(201, 149, 26, 0.3);
  box-shadow: -10px 0 40px rgba(44, 26, 10, 0.15);
}

.mobile-menu.open {
  right: 0;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(201, 149, 26, 0.2);
  padding: 13px 0;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.mobile-link:hover {
  color: var(--saffron);
  padding-left: 8px;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}

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

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 10, 0.5);
  z-index: 180;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  backdrop-filter: blur(2px);
}

.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(160deg, #1A0A02 0%, #2C1005 50%, #1A0A02 100%);
  color: #f7f4ee;
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23C9951A' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.footer h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.footer h4 {
  margin: 0 0 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.footer a,
.footer p {
  color: rgba(247, 244, 238, 0.7);
  margin: 0 0 10px;
  font-size: 0.9rem;
  display: block;
  transition: var(--transition);
}

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

.footer-brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

.footer-note {
  margin-top: 36px;
  border-top: 1px solid rgba(201, 149, 26, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(247, 244, 238, 0.45);
  font-size: 0.84rem;
  position: relative;
  z-index: 1;
}

.footer-radhe {
  display: block;
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  text-shadow: var(--glow-gold);
}

.footer-om {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--saffron-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── FORMS ── */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 6px;
  color: var(--text-soft);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  transition: var(--transition);
  font-size: 0.9rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 149, 26, 0.15);
  background: #fff;
}

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

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ── CALL FLOATING BUTTON ── */
.call-float {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-saffron);
  transition: var(--transition);
  text-decoration: none;
  animation: callPulse 2.5s ease-in-out infinite alternate;
}

.call-float:hover {
  transform: scale(1.12);
}

@keyframes callPulse {
  0% {
    box-shadow: 0 4px 16px rgba(232, 100, 10, 0.4);
  }

  100% {
    box-shadow: 0 4px 30px rgba(232, 100, 10, 0.8), 0 0 0 6px rgba(232, 100, 10, 0.15);
  }
}

/* ── SANSKRIT QUOTE ── */
.sanskrit-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold);
  text-align: center;
  position: relative;
  padding: 20px 40px;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.8;
}

.sanskrit-quote::before {
  content: '॥';
  margin-right: 10px;
  color: var(--saffron);
}

.sanskrit-quote::after {
  content: '॥';
  margin-left: 10px;
  color: var(--saffron);
}

/* ── TEMPLE BELL ANIMATION ── */
@keyframes bellRing {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: top center;
  }

  10% {
    transform: rotate(8deg);
    transform-origin: top center;
  }

  30% {
    transform: rotate(-7deg);
    transform-origin: top center;
  }

  50% {
    transform: rotate(5deg);
    transform-origin: top center;
  }

  70% {
    transform: rotate(-4deg);
    transform-origin: top center;
  }

  90% {
    transform: rotate(2deg);
    transform-origin: top center;
  }
}

.bell-icon {
  display: inline-block;
}

.bell-ring {
  animation: bellRing 1.5s ease-in-out;
}

/* ── PARTICLES CANVAS ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* ── GALLERY ── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-preview img {
  border-radius: var(--radius);
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
  border: 2px solid transparent;
}

.gallery-preview img:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 14, 14, 0.88) 0%, rgba(44, 26, 10, 0.75) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 52px;
  color: #fff;
  max-width: 580px;
}

.cta-content .section-title-light {
  text-align: left;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 12px;
}

/* ── TAG LIST ── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  font-size: 0.74rem;
  background: linear-gradient(135deg, var(--saffron-pale), var(--blush));
  color: var(--maroon);
  border-radius: 999px;
  padding: 5px 14px;
  border: 1px solid rgba(201, 149, 26, 0.2);
  font-weight: 500;
}

/* ── ROOM CARD ── */
.room-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-price {
  font-size: 1.4rem;
  font-family: 'Cinzel', serif;
  color: var(--saffron);
  margin: 8px 0 10px;
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .grid-3,
  .grid-2,
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content {
    padding: 32px;
  }
}

@media (max-width: 520px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-preview {
    grid-template-columns: 1fr;
  }
}\n\n
/* ── CLEAN MINIMAL NAVBAR ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
  border-bottom: 1px solid transparent;
}

.site-header.solid {
  background: rgba(253, 250, 246, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.container.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  text-decoration: none;
  display: flex;
  color: #fff;
  transition: color 0.4s ease;
}

.site-header.solid .brand {
  color: #2a1b0e;
}

.brand-main {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.site-header.solid .nav-link {
  color: #4a3b2e;
}

.nav-link:hover, .nav-link.active {
  color: var(--saffron);
}
.site-header.solid .nav-link:hover, .site-header.solid .nav-link.active {
  color: var(--saffron);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-social-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-social-desktop {
    display: flex;
    gap: 16px;
    align-items: center;
  }
}

.nav-social-icon {
  color: #fff;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-header.solid .nav-social-icon {
  color: #4a3b2e;
}

.nav-social-icon:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.site-header.solid .nav-social-icon:hover {
  color: var(--saffron);
}

.btn-book-now {
  background: var(--saffron);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
}

@media (min-width: 1024px) {
  .btn-book-now { display: inline-block; }
}

.btn-book-now:hover {
  background: #c44d00;
}

.menu-btn {
  background: transparent;
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.site-header.solid .menu-btn {
  color: #2a1b0e;
}

@media (min-width: 1024px) {
  .menu-btn { display: none; }
}

.menu-btn:hover {
  color: var(--gold);
}

/* ── Mobile Menu overlay (Clean minimal slide) ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; max-width: 380px;
  height: 100vh;
  background: rgba(26, 20, 15, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 0;
  opacity: 0.7;
}

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

.mobile-menu-header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
}

.mobile-menu-header .brand-main {
  font-size: 1.6rem;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.mobile-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  opacity: 0;
  transform: translateX(30px);
  transition: color 0.3s, transform 0.4s ease, opacity 0.4s ease;
  letter-spacing: 0.02em;
}

.mobile-menu.active .mobile-menu-header {
  animation: fadeSlideIn 0.5s ease forwards 0.1s;
}

.mobile-menu.active .mobile-link {
  animation: slideFadeInX 0.5s ease forwards;
}

.mobile-menu.active .mobile-link:nth-child(1) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(2) { animation-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { animation-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(5) { animation-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(6) { animation-delay: 0.45s; }

@keyframes slideFadeInX {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideIn {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-link:hover, .mobile-link.active {
  color: var(--saffron);
}

.mobile-menu-footer {
  margin-top: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  padding: 40px 30px;
}

.mobile-menu.active .mobile-menu-footer {
  animation: fadeSlideIn 0.5s ease forwards 0.5s;
}

.nav-social-mobile {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.nav-social-mobile .nav-social-icon {
  opacity: 0.7;
}

.nav-social-mobile .nav-social-icon:hover {
  opacity: 1;
}

.menu-overlay {
  background: rgba(0, 0, 0, 0.4);
}
\n
/* ── CRITICAL FIX FOR WEIRD HOVER CIRCLES ── */
.nav-link::before {
  display: none !important;
  content: none !important;
  background: none !important;
}
.nav-link {
  background: transparent !important;
}
.nav-link:hover, .nav-link.active {
  background: transparent !important;
}
