/* ============================================
   DNYANESHWARI – MAIN STYLESHEET
   Color Palette:
     Saffron:   #FF6B35 / #FF9A00
     Maroon:    #8B0000 / #6B0000
     Gold:      #DAA520 / #FFD700
     Cream:     #FFF8DC / #FFFACD
     Dark:      #1A0A00 / #2D1B00
============================================ */

:root {
  --saffron:    #FF7722;
  --saffron-lt: #FF9A3C;
  --maroon:     #8B0000;
  --maroon-dk:  #5A0000;
  --gold:       #DAA520;
  --gold-lt:    #FFD700;
  --cream:      #FFF8DC;
  --cream-dk:   #F5E6C4;
  --dark:       #1A0800;
  --dark2:      #2D1600;
  --white:      #FFFFFF;
  --text-body:  #3D2010;
  --shadow:     rgba(139,0,0,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: #fff;
  overflow-x: hidden;
}

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

/* ── SELECTION ── */
::selection { background: var(--saffron); color:#fff; }

/* ── UTILITY CLASSES ── */
.text-gradient {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5A3820;
}

/* ============================================
   NAVBAR
============================================ */
#mainNav {
  background: transparent;
  transition: all 0.4s ease;
  padding: 16px 0;
}

#mainNav.scrolled {
  background: var(--dark) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 10px 0;
}

.brand-om {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 1px;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  padding: 6px 12px !important;
}

.nav-link:hover { color: var(--gold) !important; }

.btn-nav-buy {
  background: linear-gradient(135deg, var(--saffron), #E55B00);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,119,34,0.5);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, #3D0E00 50%, var(--maroon-dk) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.mandala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-image: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(218,165,32,0.04) 0deg 20deg,
    transparent 20deg 40deg
  );
  border-radius: 50%;
  animation: rotateMandala 60s linear infinite;
}

@keyframes rotateMandala {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-title-marathi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,215,0,0.3);
}

.hero-title-en {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--saffron-lt);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-desc {
  color: rgba(255,248,220,0.8);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 20px;
}

.badge-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(218,165,32,0.4);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--saffron), #C95E00);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255,119,34,0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,119,34,0.6);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(218,165,32,0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-hero-outline:hover {
  background: rgba(218,165,32,0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-inaugurated {
  color: rgba(255,248,220,0.7);
  font-size: 0.82rem;
  margin-top: 8px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--gold);
  font-size: 1.2rem;
  text-decoration: none;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(10px); }
}

/* ── 3D BOOK ── */
.book-scene {
  perspective: 1200px;
  position: relative;
}

.book-3d {
  width: 240px;
  height: 320px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(5deg);
  transition: transform 0.6s ease;
  cursor: pointer;
  animation: bookFloat 5s ease-in-out infinite;
}

@keyframes bookFloat {
  0%,100% { transform: rotateY(-25deg) rotateX(5deg) translateY(0); }
  50%      { transform: rotateY(-25deg) rotateX(5deg) translateY(-15px); }
}

.book-3d:hover {
  transform: rotateY(-35deg) rotateX(5deg) translateY(-10px);
  animation: none;
}

.book-face {
  position: absolute;
  transform-style: preserve-3d;
}

.book-front {
  width: 240px;
  height: 320px;
  background: linear-gradient(160deg, #8B0000 0%, #5A0000 40%, #3D0000 100%);
  border-radius: 3px 8px 8px 3px;
  transform: translateZ(30px);
  overflow: hidden;
  border: 1px solid rgba(218,165,32,0.3);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.4);
}

.book-front::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(218,165,32,0.5);
  border-radius: 4px;
  pointer-events: none;
}

.book-front::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(218,165,32,0.25);
  border-radius: 2px;
  pointer-events: none;
}

.book-front-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.book-top-ornament {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 4px;
}

.book-title-marathi-cover {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
  line-height: 1.1;
}

.book-divider-ornament {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.book-title-en-cover {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 2px;
}

.book-subtitle-cover {
  font-size: 0.65rem;
  color: rgba(255,248,220,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.book-year-badge {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.book-year-badge sup { font-size: 0.5rem; }

.book-lotus { font-size: 1.6rem; }

.book-publisher-cover {
  font-size: 0.62rem;
  color: rgba(218,165,32,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Spine */
.book-spine {
  width: 60px;
  height: 320px;
  background: linear-gradient(180deg, #4A0000, #2D0000, #4A0000);
  transform: rotateY(-90deg) translateZ(0px) translateX(-30px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0 0 4px;
  box-shadow: inset -5px 0 15px rgba(0,0,0,0.5);
}

.book-spine span {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 4px;
}

/* Back */
.book-back {
  width: 240px;
  height: 320px;
  background: linear-gradient(160deg, #5A0000, #2D0000);
  transform: translateZ(-30px);
  border-radius: 8px 3px 3px 8px;
}

/* Top/Bottom */
.book-top {
  width: 240px;
  height: 60px;
  background: linear-gradient(90deg, #8B6914, #DAA520, #8B6914);
  transform: rotateX(90deg) translateZ(0px) translateY(-30px);
}

.book-bottom {
  width: 240px;
  height: 60px;
  background: linear-gradient(90deg, #8B6914, #DAA520, #8B6914);
  transform: rotateX(-90deg) translateZ(0px) translateY(30px);
}

/* Pages edge */
.book-pages {
  width: 60px;
  height: 320px;
  background: repeating-linear-gradient(
    to bottom,
    #FFF8DC 0px,
    #FFF8DC 3px,
    #F5E6C4 3px,
    #F5E6C4 4px
  );
  transform: rotateY(90deg) translateZ(180px) translateX(30px);
  border-left: 2px solid #C8A870;
}

.book-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(80deg);
  width: 200px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
}

/* ============================================
   MILESTONE BANNER
============================================ */
.milestone-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-top: 2px solid rgba(218,165,32,0.3);
  border-bottom: 2px solid rgba(218,165,32,0.3);
}

.milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.milestone-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.milestone-label {
  color: rgba(255,248,220,0.7);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   ABOUT SECTION
============================================ */
.section-about {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFDF7 100%);
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-decorative-frame {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, var(--dark), var(--dark2));
  border: 2px solid rgba(218,165,32,0.5);
  border-radius: 16px;
  padding: 3px;
  position: relative;
}

.about-decorative-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(218,165,32,0.3);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.about-inner-content {
  background: linear-gradient(145deg, #1A0800, #2D1600);
  border-radius: 14px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-quote-marathi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 16px;
}

.about-quote-small {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,248,220,0.85);
  line-height: 1.9;
}

.about-quote-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}

.about-quote-eng {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: rgba(255,248,220,0.7);
  line-height: 1.7;
}

.about-author-tag {
  color: var(--saffron);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 12px;
  margin-bottom: 0;
}

.about-card {
  background: #fff;
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s;
  height: 100%;
}

.about-card:hover {
  box-shadow: 0 8px 25px rgba(139,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.about-card-icon {
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 8px;
  display: block;
}

.about-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-card p {
  font-size: 0.82rem;
  color: #6B4226;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   MILESTONE SECTION
============================================ */
.section-milestone {
  background: var(--cream);
}

.milestone-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid rgba(218,165,32,0.25);
  box-shadow: 0 10px 30px rgba(139,0,0,0.06);
  height: 100%;
  transition: all 0.3s;
}

.milestone-card:hover {
  border-color: var(--saffron);
  box-shadow: 0 15px 40px rgba(255,119,34,0.12);
  transform: translateY(-6px);
}

.milestone-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.milestone-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.milestone-card p {
  font-size: 0.9rem;
  color: #5A3820;
  line-height: 1.7;
  margin: 0;
}

.convergence-text {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: var(--cream);
  border: 1px solid rgba(218,165,32,0.4);
  border-radius: 12px;
  padding: 24px 32px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
============================================ */
.section-features {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.section-features .section-heading {
  color: var(--cream);
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

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

.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,119,34,0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255,119,34,0.2), rgba(218,165,32,0.2));
  border: 1px solid rgba(218,165,32,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card h5 {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,248,220,0.65);
  font-size: 0.87rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   GLIMPSES / GALLERY SECTION
============================================ */
.section-glimpses {
  background: var(--cream);
}

.glimpse-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(139,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.glimpse-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139,0,0,0.18);
}

.glimpse-inner { position: relative; }

.glimpse-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Gradient backgrounds for each glimpse */
.g1 { background: linear-gradient(145deg, #8B0000, #3D0000, #1A0000); }
.g2 { background: linear-gradient(145deg, #1A2B5A, #0D1A3D, #050D1F); }
.g3 { background: linear-gradient(145deg, #1A3A1A, #0D2010, #000); }
.g4 { background: linear-gradient(145deg, #3D2800, #1A1000, #000); }
.g5 { background: linear-gradient(145deg, #2A0A3A, #150520, #000); }
.g6 { background: linear-gradient(145deg, #0A2A2A, #051515, #000); }

.glimpse-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(218,165,32,0.08) 0%, transparent 70%);
}

.glimpse-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  width: 100%;
  transition: transform 0.3s;
}

.glimpse-card:hover .glimpse-overlay { transform: scale(1.03); }

.glimpse-title-marathi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  text-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.glimpse-edition {
  color: var(--saffron-lt);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.glimpse-ornament {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-top: 8px;
}

.glimpse-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.glimpse-title-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
}

.glimpse-sub-sm {
  color: rgba(255,248,220,0.7);
  font-size: 0.8rem;
  margin-top: 4px;
}

.glimpse-verse {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.1rem;
  color: var(--gold-lt);
  line-height: 2;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.glimpse-chapters { width: 100%; }

.ch-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 16px;
  border-bottom: 1px solid rgba(218,165,32,0.2);
}

.ch-row span:first-child {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--gold);
  font-size: 0.85rem;
}

.ch-row span:last-child {
  color: rgba(255,248,220,0.7);
  font-size: 0.8rem;
}

.glimpse-typo-sample {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 2.2;
  text-align: center;
}

.glimpse-pasaydan { text-align: center; }

.p-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.p-text {
  color: rgba(255,248,220,0.8);
  font-size: 0.85rem;
  margin: 8px 0;
}

.p-lotus { font-size: 2rem; }

.glimpse-caption {
  background: var(--dark);
  color: var(--cream);
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-box {
  background: var(--dark);
  border: 1px solid rgba(218,165,32,0.4);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  position: relative;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.lightbox-close:hover { background: var(--saffron); }

.lightbox-content {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 20px;
}

.lightbox-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.lightbox-nav button {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(218,165,32,0.4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.lightbox-nav button:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

/* ============================================
   VISION SECTION
============================================ */
.section-vision {
  background: linear-gradient(180deg, #FFF8F0 0%, var(--cream) 100%);
}

.vision-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(218,165,32,0.2);
  box-shadow: 0 8px 30px rgba(139,0,0,0.06);
  height: 100%;
  transition: all 0.3s;
}

.vision-card:hover {
  box-shadow: 0 16px 45px rgba(255,119,34,0.12);
  transform: translateY(-6px);
  border-color: var(--saffron);
}

.vision-card-center {
  background: linear-gradient(145deg, var(--dark), var(--dark2));
  border-color: rgba(218,165,32,0.5);
}

.vision-card-center h4,
.vision-card-center p { color: var(--cream); }

.vision-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
}

.vision-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.vision-card p {
  font-size: 0.9rem;
  color: #5A3820;
  line-height: 1.8;
  margin: 0;
}

.sacred-offering-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border: 2px solid rgba(218,165,32,0.4);
  border-radius: 16px;
  padding: 36px 40px;
}

.sacred-lotus-big { font-size: 3rem; }

.sacred-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.sacred-text {
  color: rgba(255,248,220,0.8);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   QUOTES SECTION
============================================ */
.section-quotes {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
}

.section-quotes .section-heading { color: var(--cream); }

.quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 16px;
  padding: 30px 24px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

.quote-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(218,165,32,0.5);
  transform: translateY(-4px);
}

.quote-marks {
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  opacity: 0.7;
}

.quote-marathi {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.05rem;
  color: var(--gold-lt);
  line-height: 1.9;
  margin-bottom: 10px;
}

.quote-trans {
  color: rgba(255,248,220,0.7);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-author {
  color: var(--saffron-lt);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================
   BUY SECTION
============================================ */
.section-buy {
  background: linear-gradient(180deg, var(--cream), #FFF8F0);
}

.buy-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(139,0,0,0.12);
  overflow: hidden;
  border: 1px solid rgba(218,165,32,0.2);
}

.book-detail-panel {
  background: linear-gradient(160deg, var(--dark), var(--dark2));
  padding: 40px 30px;
  height: 100%;
  text-align: center;
}

.mini-book {
  width: 120px;
  height: 155px;
  margin: 0 auto 16px;
  position: relative;
}

.mini-book-front {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #8B0000, #5A0000);
  border-radius: 3px 8px 8px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(218,165,32,0.4);
  box-shadow: 4px 4px 15px rgba(0,0,0,0.4), inset 0 0 30px rgba(0,0,0,0.3);
}

.mini-book-title {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-lt);
}

.mini-book-sub {
  font-size: 0.6rem;
  color: var(--cream);
  letter-spacing: 1px;
}

.mini-book-year {
  font-size: 0.55rem;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.detail-subtitle {
  color: rgba(255,248,220,0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.dtag {
  background: rgba(255,119,34,0.15);
  border: 1px solid rgba(255,119,34,0.4);
  color: var(--saffron-lt);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.book-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255,119,34,0.18), rgba(255,165,0,0.12));
  border: 1.5px solid rgba(255,119,34,0.5);
  border-radius: 12px;
  padding: 12px 18px;
}
.book-price-labels {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.book-price-label-mr {
  color: rgba(255,248,220,0.9);
  font-size: 0.95rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}
.book-price-label-en {
  color: rgba(255,248,220,0.6);
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.3;
}
.book-price-sep {
  color: rgba(255,119,34,0.7);
  font-size: 1.2rem;
  font-weight: 300;
}
.book-price-values {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.book-price-value-mr {
  color: var(--saffron);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1.3;
}
.book-price-value-en {
  color: rgba(255,165,0,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

.detail-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.detail-list li {
  color: rgba(255,248,220,0.8);
  font-size: 0.85rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-list li i {
  color: var(--saffron);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.donate-note {
  background: rgba(255,119,34,0.1);
  border: 1px solid rgba(255,119,34,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: rgba(255,248,220,0.9);
  font-size: 0.82rem;
  text-align: left;
}

/* ── Order Form ── */
.order-form-panel {
  padding: 40px 36px;
}

.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-sub {
  color: #6B4226;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.fc-custom {
  border: 1.5px solid rgba(218,165,32,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-body);
  background: #FFFBF5;
  transition: all 0.25s;
}

.fc-custom:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,119,34,0.12);
  background: #fff;
}

.fc-custom::placeholder { color: #BBA080; }

.form-check-input:checked {
  background-color: var(--saffron);
  border-color: var(--saffron);
}

.form-check-label {
  font-size: 0.85rem;
  color: #5A3820;
}

.btn-order {
  background: linear-gradient(135deg, var(--saffron), #C95E00);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255,119,34,0.35);
}

.btn-order:hover {
  background: linear-gradient(135deg, #E06600, #A84E00);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,119,34,0.5);
  color: #fff;
}

.btn-order:active { transform: translateY(0); }

/* ============================================
   CONTACT STRIP
============================================ */
.contact-strip {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-top: 1px solid rgba(218,165,32,0.2);
  border-bottom: 1px solid rgba(218,165,32,0.2);
}

.cstrip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.cstrip-item > i {
  font-size: 1.4rem;
  color: var(--saffron);
  width: 40px;
  height: 40px;
  background: rgba(255,119,34,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cstrip-label {
  font-size: 0.72rem;
  color: rgba(255,248,220,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cstrip-value {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
  background: #0E0500;
  border-top: 2px solid rgba(218,165,32,0.2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.brand-om-footer {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.brand-text-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-desc {
  color: rgba(255,248,220,0.55);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social .fsoc {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(218,165,32,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,248,220,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-social .fsoc:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: rgba(255,248,220,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--saffron); }

.footer-dedication {
  text-align: center;
}

.fd-om {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-dedication p {
  color: rgba(255,248,220,0.55);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.fd-name {
  color: var(--cream) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}

.fd-small { color: var(--saffron) !important; font-size: 0.8rem !important; }

.footer-divider { border-color: rgba(218,165,32,0.15); }

.footer-copy {
  color: rgba(255,248,220,0.4);
  font-size: 0.8rem;
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,119,34,0.4);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255,119,34,0.6);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
  .book-scene { transform: scale(0.85); }
  .order-form-panel { padding: 30px 20px; }
  .book-detail-panel { padding: 30px 20px; }
}

@media (max-width: 768px) {
  .hero-section { padding: 90px 0 50px; }
  .hero-title-marathi { font-size: 3rem; }
  .book-3d { width: 190px; height: 255px; }
  .book-front { width: 190px; height: 255px; transform: translateZ(24px); }
  .book-title-marathi-cover { font-size: 1.7rem; }
  .book-spine { height: 255px; }
  .book-back { width: 190px; height: 255px; transform: translateZ(-24px); }
  .book-top { width: 190px; transform: rotateX(90deg) translateZ(0px) translateY(-24px); }
  .book-bottom { width: 190px; transform: rotateX(-90deg) translateZ(0px) translateY(24px); }
  .book-pages { height: 255px; transform: rotateY(90deg) translateZ(143px) translateX(24px); }
}

@media (max-width: 576px) {
  .book-scene { transform: scale(0.75); }
  .sacred-offering-banner { padding: 24px 20px; }
  .buy-wrapper { border-radius: 12px; }
}

/* ============================================
   INAUGURATION SECTION
============================================ */
.section-inauguration {
  background: linear-gradient(180deg, var(--dark) 0%, #2D1600 100%);
}

.section-inauguration .section-heading { color: var(--cream); }
.section-inauguration .section-text    { color: rgba(255,248,220,0.7); }

.inauguration-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  border: 2px solid rgba(218,165,32,0.4);
}

.inaug-photo-wrap {
  position: relative;
  overflow: hidden;
  background: #000;
}

.inaug-main-photo {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
  max-height: 480px;
}

.inauguration-photo-card:hover .inaug-main-photo {
  transform: scale(1.04);
}

/* Golden corner ornaments */
.inaug-photo-frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  pointer-events: none;
}
.inaug-photo-frame-corner.tl { top:12px; left:12px;  border-width:3px 0 0 3px; }
.inaug-photo-frame-corner.tr { top:12px; right:12px; border-width:3px 3px 0 0; }
.inaug-photo-frame-corner.bl { bottom:12px; left:12px;  border-width:0 0 3px 3px; }
.inaug-photo-frame-corner.br { bottom:12px; right:12px; border-width:0 3px 3px 0; }

.inaug-caption-bar {
  background: linear-gradient(135deg, var(--dark), #2D1600);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 2px solid rgba(218,165,32,0.3);
  flex-wrap: wrap;
}

.inaug-caption-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.inaug-om {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.inaug-caption-title {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.inaug-caption-sub {
  color: rgba(255,248,220,0.6);
  font-size: 0.78rem;
  margin-top: 2px;
}

.inaug-caption-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,119,34,0.2), rgba(218,165,32,0.2));
  border: 1px solid rgba(218,165,32,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Thumbnail in glimpse card ── */
.inauguration-photo-thumb {
  padding: 0 !important;
  height: 220px;
}

.inauguration-photo-thumb .inauguration-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.glimpse-card:hover .inauguration-thumb-img {
  transform: scale(1.06);
}

.inauguration-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.inauguration-thumb-overlay i {
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.glimpse-card:hover .inauguration-thumb-overlay {
  background: rgba(0,0,0,0.3);
}

.glimpse-card:hover .inauguration-thumb-overlay i {
  opacity: 1;
}

/* ── PARTICLE DOTS ── */
.particle-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFade var(--dur) ease-in-out infinite;
  opacity: 0;
}

@keyframes particleFade {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  30%  { opacity: 0.6; transform: translateY(-20px) scale(1); }
  70%  { opacity: 0.3; transform: translateY(-50px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

/* ============================================
   NAVBAR DROPDOWN (Policy)
============================================ */
.dropdown-menu {
  background: var(--dark2);
  border: 1px solid rgba(255,119,34,0.3);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.dropdown-item {
  color: rgba(255,248,220,0.85);
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  padding: 9px 20px;
  transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: rgba(255,119,34,0.18);
  color: var(--saffron);
}
.dropdown-item i {
  width: 18px;
  color: var(--saffron);
}
.nav-link.dropdown-toggle::after {
  margin-left: 6px;
}

/* ============================================
   POLICY PAGES
============================================ */
.policy-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #3D1000 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: 'ॐ';
  position: absolute;
  font-size: 18rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: rgba(255,119,34,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.policy-hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.policy-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.policy-hero-sub {
  color: rgba(255,248,220,0.55);
  font-size: 0.92rem;
}
.policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.policy-breadcrumb a {
  color: var(--saffron);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.policy-breadcrumb a:hover { opacity: 0.75; }
.policy-breadcrumb span {
  color: rgba(255,248,220,0.4);
  font-size: 0.82rem;
}

.policy-body {
  background: #fdf6ee;
  padding: 60px 0 80px;
}
.policy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(139,0,0,0.08);
  padding: 44px 48px;
  border-top: 4px solid var(--saffron);
}
@media (max-width: 576px) {
  .policy-card { padding: 28px 20px; }
}
.policy-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--maroon);
  margin-bottom: 8px;
}
.policy-card .policy-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 28px;
  display: block;
}
.policy-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 700;
  margin: 32px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,119,34,0.2);
}
.policy-card p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: #4A3020;
  margin-bottom: 14px;
}
.policy-card ol, .policy-card ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-card ol li, .policy-card ul li {
  font-size: 0.93rem;
  line-height: 1.85;
  color: #4A3020;
  margin-bottom: 10px;
}
.policy-card strong {
  color: var(--maroon);
  font-weight: 600;
}
.policy-highlight {
  background: linear-gradient(135deg, rgba(255,119,34,0.08), rgba(218,165,32,0.06));
  border-left: 4px solid var(--saffron);
  border-radius: 0 10px 10px 0;
  padding: 14px 20px;
  margin: 20px 0;
  font-size: 0.92rem;
  color: #4A3020;
  line-height: 1.7;
}
.policy-contact-box {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 20px;
  color: rgba(255,248,220,0.85);
  font-size: 0.9rem;
  line-height: 1.8;
}
.policy-contact-box strong {
  color: var(--saffron) !important;
}

.policy-sidenav {
  position: sticky;
  top: 90px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(139,0,0,0.08);
  padding: 24px;
  border-top: 3px solid var(--gold);
}
.policy-sidenav h6 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 14px;
  font-weight: 700;
}
.policy-sidenav ul {
  list-style: none;
  padding: 0; margin: 0;
}
.policy-sidenav ul li {
  margin-bottom: 4px;
}
.policy-sidenav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #5A3820;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.policy-sidenav ul li a:hover,
.policy-sidenav ul li a.active {
  background: rgba(255,119,34,0.1);
  color: var(--saffron);
}
.policy-sidenav ul li a i {
  font-size: 0.8rem;
  width: 16px;
  color: var(--saffron);
}

.policy-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.policy-nav-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(139,0,0,0.15);
  color: #5A3820;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.policy-nav-pills a:hover,
.policy-nav-pills a.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}
.policy-nav-pills a i { font-size: 0.78rem; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-info-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(139,0,0,0.08);
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--saffron);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(139,0,0,0.13);
}
.contact-info-card-center {
  border-top-color: var(--gold);
}
.contact-info-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,119,34,0.35);
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-label {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  margin-bottom: 10px;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-info-value:hover { color: var(--saffron); }
.contact-info-timing {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0;
}

.contact-quick-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(139,0,0,0.07);
  padding: 24px;
  border-top: 3px solid var(--saffron);
}
.contact-quick-heading {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-quick-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  background: rgba(255,119,34,0.04);
  border: 1px solid rgba(255,119,34,0.12);
  transition: background 0.2s, border-color 0.2s;
}
.contact-quick-row:hover {
  background: rgba(255,119,34,0.1);
  border-color: rgba(255,119,34,0.3);
}
.contact-quick-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,119,34,0.12);
  color: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-quick-label {
  font-size: 0.72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.contact-quick-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-policy-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(139,0,0,0.07);
  padding: 24px;
  border-top: 3px solid var(--gold);
}
.contact-policy-list {
  list-style: none;
  padding: 0; margin: 0;
}
.contact-policy-list li { margin-bottom: 4px; }
.contact-policy-list li a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: #5A3820;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.contact-policy-list li a:hover {
  background: rgba(255,119,34,0.1);
  color: var(--saffron);
}
.contact-policy-list li a i {
  width: 18px;
  color: var(--saffron);
}
