/* =====================================================================
   AAKASHVANI (आकाशवाणी) - Premium Frontend Stylesheet
   Luxury black / gold / white / cream theme
   ===================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-2: #121110;
  --bg-3: #1a1816;
  --cream: #f5ecd9;
  --cream-2: #efe4c8;
  --gold: #d4af37;
  --gold-2: #c9a227;
  --gold-soft: #e8d9a8;
  --white: #ffffff;
  --muted: #b8b0a0;
  --muted-2: #8a8275;
  --line: rgba(212, 175, 55, 0.18);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --gold-grad: linear-gradient(135deg, #f5e6c8 0%, #d4af37 45%, #b8901f 100%);
  --font-en: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-hi: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hi { font-family: var(--font-hi); }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  padding-inline-end: 0.12em;
}

a { color: var(--gold-soft); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

::selection { background: rgba(212,175,55,0.3); color: #fff; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader .brand-mark {
  font-family: var(--font-hi);
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-inline: 0.15em;
  animation: pulseGlow 2s ease-in-out infinite;
}
.preloader .ring {
  width: 54px; height: 54px;
  border: 2px solid rgba(212,175,55,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseGlow {
  0%,100% { filter: drop-shadow(0 0 6px rgba(212,175,55,0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(212,175,55,0.6)); }
}

/* ---------- Navbar ---------- */
.navbar-custom {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  box-shadow: 0 10px 40px -20px rgba(0,0,0,0.8);
  border-bottom: 1px solid var(--line);
}
.navbar-brand-custom {
  font-family: var(--font-hi);
  font-size: 1.6rem; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
  display: inline-block; padding-right: 0.14em;
}
.navbar-brand-custom .sub {
  display: block; font-family: var(--font-en); font-size: 0.62rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); -webkit-text-fill-color: var(--muted);
  font-weight: 500; margin-top: 2px;
}
.nav-link-custom {
  color: var(--cream) !important;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 0.9rem !important;
  position: relative;
}
.nav-link-custom::after {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 1.5px; background: var(--gold-grad);
  transition: width .3s var(--ease), left .3s var(--ease);
}
.nav-link-custom:hover::after, .nav-link-custom.active::after { width: 60%; left: 20%; }
.nav-link-custom:hover { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold-grad); color: #1a1408 !important;
  border: none; border-radius: 50px;
  padding: 0.55rem 1.4rem; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 8px 24px -8px rgba(212,175,55,0.5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(212,175,55,0.7); color: #1a1408; }

.navbar-toggler-custom {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 0.4rem 0.6rem; color: var(--gold);
}
.navbar-toggler-custom:focus { box-shadow: 0 0 0 2px rgba(212,175,55,0.3); }

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold-grad); color: #1a1408;
  border: none; border-radius: 50px;
  padding: 0.85rem 2.2rem; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 10px 30px -10px rgba(212,175,55,0.55);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(212,175,55,0.75); color: #1a1408; }

.btn-ghost {
  background: var(--glass); color: var(--cream);
  border: 1px solid var(--glass-border); border-radius: 50px;
  padding: 0.85rem 2.2rem; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: all .25s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 50px;
  padding: 0.7rem 1.8rem; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all .25s var(--ease);
}
.btn-outline-gold:hover { background: var(--gold); color: #1a1408; }

/* ---------- Section helpers ---------- */
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-cream { background: var(--cream); color: #1a1408; }
.section-cream h2, .section-cream h3 { color: #1a1408; }
.section-dark-2 { background: var(--bg-2); }

.eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  position: relative; padding-left: 2.4rem;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 1.8rem; height: 1px; background: var(--gold-grad);
}
.section-cream .eyebrow { color: var(--gold-2); }

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.section-cream .section-sub { color: #6b5d3e; }

.divider-gold {
  width: 80px; height: 2px; background: var(--gold-grad);
  margin: 1.5rem auto; border: none; border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212,175,55,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.08), transparent 50%),
    var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 70% 40%, rgba(212,175,55,0.15), transparent 60%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.6;
  box-shadow: 0 0 8px rgba(212,175,55,0.8);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(0.4); opacity: 0; }
}
.hero-content { position: relative; z-index: 3; }
.hero-brand {
  font-family: var(--font-hi);
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1.18; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.15em; padding-bottom: 0.06em;
  margin-bottom: 0.5rem;
  animation: heroIn 1s var(--ease) both;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream); font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: heroIn 1s var(--ease) .15s both;
}
.hero-headline {
  font-family: var(--font-hi);
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--cream); font-weight: 500; line-height: 1.4;
  margin-bottom: 1rem; max-width: 620px;
  animation: heroIn 1s var(--ease) .3s both;
}
.hero-support {
  font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 2.5rem;
  animation: heroIn 1s var(--ease) .45s both;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; animation: heroIn 1s var(--ease) .6s both; }
.hero-social { margin-top: 2.5rem; display: flex; gap: 0.8rem; animation: heroIn 1s var(--ease) .75s both; }
.hero-social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--cream); font-size: 1.05rem;
  transition: all .3s var(--ease);
}
.hero-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-portrait {
  position: relative; z-index: 3;
  animation: heroIn 1.1s var(--ease) .3s both;
}
.hero-portrait .frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gold-grad);
  padding: 3px;
  box-shadow: var(--shadow), 0 0 60px -10px rgba(212,175,55,0.3);
}
.hero-portrait .frame-inner {
  width: 100%; height: 100%; border-radius: 21px; overflow: hidden;
  background: linear-gradient(160deg, #2a2418, #121110);
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.hero-portrait .frame-inner::after {
  content: 'आकाशवाणी';
  position: absolute; bottom: 1.5rem; left: 0; right: 0;
  text-align: center; font-family: var(--font-hi);
  font-size: 1.4rem; color: var(--gold-soft);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-portrait .placeholder-glyph {
  font-size: 8rem; color: rgba(212,175,55,0.25);
  font-family: var(--font-hi); margin-bottom: 3rem;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--muted); font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-cue .mouse {
  width: 24px; height: 40px; border: 1.5px solid var(--muted);
  border-radius: 14px; position: relative;
}
.scroll-cue .mouse::after {
  content: ''; position: absolute; top: 7px; left: 50%;
  width: 3px; height: 7px; background: var(--gold);
  border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---------- Glass cards ---------- */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

/* ---------- Stats ---------- */
.stat-card { text-align: center; padding: 2rem 1rem; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700; background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  margin-top: 0.6rem; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.section-cream .stat-num { background: linear-gradient(135deg, #b8901f, #8a6a14); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-cream .stat-label { color: #6b5d3e; }

/* ---------- Poetry cards ---------- */
.poetry-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; height: 100%;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.poetry-card::before {
  content: '"'; position: absolute; top: -1rem; right: 1rem;
  font-family: var(--font-display); font-size: 6rem; color: rgba(212,175,55,0.12);
  line-height: 1;
}
.poetry-card:hover {
  transform: translateY(-6px); border-color: var(--gold);
  box-shadow: 0 20px 50px -20px rgba(212,175,55,0.25);
}
.poetry-card .cat-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.poetry-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--cream); }
.poetry-card .body {
  font-family: var(--font-hi); white-space: pre-line;
  color: var(--cream); font-size: 1.05rem; line-height: 1.9;
  margin-bottom: 1rem;
}
.poetry-card .desc { color: var(--muted); font-size: 0.92rem; }

/* ---------- Event cards ---------- */
.event-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7); }
.event-card .img-wrap {
  aspect-ratio: 16/10; background: linear-gradient(160deg, #2a2418, #121110);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.event-card .img-wrap .glyph { font-size: 3rem; color: rgba(212,175,55,0.3); font-family: var(--font-hi); }
.event-card .img-wrap .date-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 0.5rem 0.8rem; text-align: center; line-height: 1;
}
.event-card .img-wrap .date-badge .d { font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.event-card .img-wrap .date-badge .m { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.event-card .body { padding: 1.5rem; }
.event-card .cat { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.event-card h3 { font-size: 1.25rem; margin: 0.6rem 0 0.8rem; }
.event-card .meta { color: var(--muted); font-size: 0.88rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.event-card .meta i { color: var(--gold); margin-right: 0.3rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden; position: relative; cursor: pointer;
  background: linear-gradient(160deg, #2a2418, #121110);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .glyph { font-size: 2.5rem; color: rgba(212,175,55,0.25); font-family: var(--font-hi); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .cap {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  color: var(--cream); font-weight: 600; z-index: 2;
  opacity: 0; transform: translateY(10px); transition: all .35s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }
@media (max-width: 991px) { .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

/* ---------- Video cards ---------- */
.video-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.video-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7); }
.video-thumb { aspect-ratio: 16/9; position: relative; background: #000; cursor: pointer; }
.video-thumb img, .video-thumb .thumb-bg { width: 100%; height: 100%; object-fit: cover; }
.video-thumb .thumb-bg {
  background: linear-gradient(160deg, #2a2418, #121110);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb .thumb-bg .glyph { font-size: 3rem; color: rgba(212,175,55,0.3); }
.video-thumb .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); transition: background .3s var(--ease);
}
.video-thumb:hover .play { background: rgba(0,0,0,0.15); }
.video-thumb .play i {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-grad); color: #1a1408;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; padding-left: 4px;
  box-shadow: 0 10px 30px -8px rgba(212,175,55,0.6);
}
.video-card .body { padding: 1.3rem; }
.video-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.video-card .platform { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Reels — vertical 9:16 cards in a snap-scroll row */
.reels-scroll {
  display: flex; gap: 1.1rem; overflow-x: auto; padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.reels-scroll::-webkit-scrollbar { height: 6px; }
.reels-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }
.reel-card {
  flex: 0 0 240px; scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-2);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.reel-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7); }
.video-thumb.reel { aspect-ratio: 9/16; }
.video-thumb .reel-title {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 0.9rem 0.9rem;
  font-size: 0.82rem; font-weight: 600; color: var(--cream); line-height: 1.35;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  pointer-events: none;
}
@media (max-width: 575px) { .reel-card { flex-basis: 180px; } }

/* ---------- Brand collab ---------- */
.brand-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  height: 100%; transition: all .35s var(--ease);
}
.brand-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 50px -20px rgba(212,175,55,0.25); }
.brand-card .logo-circle {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: var(--gold-grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #1a1408;
}
.brand-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.brand-card .campaign { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
.brand-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem; height: 100%;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: rgba(212,175,55,0.25); position: absolute; top: 1rem; left: 1.5rem;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 1rem; }
.testimonial-card .text { font-size: 1.05rem; color: var(--cream); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-grad); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #1a1408;
}
.testimonial-card .author .name { font-weight: 700; color: var(--cream); }
.testimonial-card .author .role { color: var(--muted); font-size: 0.85rem; }

/* ---------- Packages ---------- */
.package-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem 2rem; height: 100%;
  position: relative; transition: all .35s var(--ease);
  display: flex; flex-direction: column;
}
.package-card .btn-gold { margin-top: auto; }
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px -10px rgba(212,175,55,0.3);
  transform: scale(1.02);
}
.package-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.package-card .feat-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #1a1408;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.35rem 1.2rem; border-radius: 50px;
}
.package-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.package-card .cat { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; }
.package-card .price {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin: 1rem 0;
}
.package-card .price .label { display: block; font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); -webkit-text-fill-color: var(--muted); font-weight: 600; }
.package-card ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.package-card ul li { padding: 0.5rem 0; color: var(--cream); font-size: 0.92rem; border-bottom: 1px solid var(--line); }
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li i { color: var(--gold); margin-right: 0.6rem; }
.package-card ul li.not-included { color: var(--muted-2); text-decoration: line-through; }
.package-card ul li.not-included i { color: var(--muted-2); }

/* ---------- Press ---------- */
.press-logo {
  display: flex; align-items: center; justify-content: center;
  height: 90px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700; color: var(--cream);
  transition: all .3s var(--ease);
}
.press-logo:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; padding: 5rem 0; text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.15), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Newsletter ---------- */
.newsletter-wrap {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 3rem; text-align: center;
  backdrop-filter: blur(12px);
}
.newsletter-wrap input {
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
  color: var(--cream); border-radius: 50px; padding: 0.8rem 1.4rem;
}
.newsletter-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.2); outline: none; }

/* Honeypot field — invisible to humans, bots fill it */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 4rem 0 2rem; color: var(--muted);
}
.footer h5 {
  font-family: var(--font-en); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer .brand-foot {
  font-family: var(--font-hi); font-size: 2rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 0.5rem;
  display: inline-block; padding-right: 0.14em;
}
.footer .role { color: var(--cream); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { color: var(--muted); font-size: 0.9rem; }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer .social-foot { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer .social-foot a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--glass-border); color: var(--cream);
  transition: all .3s var(--ease);
}
.footer .social-foot a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.5rem;
  font-size: 0.82rem; color: var(--muted-2);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; z-index: 1000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6);
  transition: transform .3s var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.whatsapp-float.bottom_right { right: 24px; }
.whatsapp-float.bottom_left { left: 24px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 8px 30px -4px rgba(37,211,102,0.9); }
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative; padding: 10rem 0 4rem; text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1rem; }
.page-header .crumb { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; }
.page-header .crumb a { color: var(--gold); }

/* ---------- Forms ---------- */
.form-control-custom, .form-select-custom {
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
  color: var(--cream); border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem; width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-control-custom:focus, .form-select-custom:focus {
  border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.18);
  outline: none; background: rgba(0,0,0,0.4); color: var(--cream);
}
.form-control-custom::placeholder { color: var(--muted-2); }
.form-label-custom { color: var(--cream); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.form-select-custom option { background: var(--bg-2); color: var(--cream); }
.section-cream .form-control-custom, .section-cream .form-select-custom {
  background: #fff; border-color: rgba(0,0,0,0.12); color: #1a1408;
}
.section-cream .form-control-custom::placeholder { color: #9a8a6a; }
.section-cream .form-label-custom { color: #1a1408; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ---------- Misc ---------- */
.text-muted-2 { color: var(--muted) !important; }
.tag-pill {
  display: inline-block; padding: 0.3rem 0.9rem; border-radius: 50px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--cream); font-size: 0.78rem; margin: 0.2rem;
  transition: all .25s var(--ease); cursor: pointer;
}
.tag-pill:hover, .tag-pill.active { background: var(--gold); color: #1a1408; border-color: var(--gold); }

/* =====================================================================
   RESPONSIVE — mobile-first breakpoints
   Targets: 360 / 375 / 390 / 414 / 576 / 768 / 991 / 1024 / 1200 / 1440 / 1920
   ===================================================================== */

/* ---------- Large desktop (1440+) ---------- */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero-brand { font-size: clamp(3rem, 8vw, 7rem); }
  .section { padding: 7rem 0; }
}

/* ---------- Laptop (992–1399) ---------- */
@media (max-width: 1399px) {
  .hero-brand { font-size: clamp(2.8rem, 8vw, 5.5rem); }
}

/* ---------- Tablet landscape / small laptop (≤991px) ---------- */
@media (max-width: 991.98px) {
  /* Navbar: hide desktop links, offcanvas takes over */
  .navbar-custom .collapse.navbar-collapse { display: none !important; }
  .navbar-custom .navbar-toggler-custom { display: inline-flex; }

  .hero { min-height: auto; padding: 7rem 0 3.5rem; }
  .hero-portrait { margin: 2.5rem auto 0; max-width: 380px; }
  .hero-headline { font-size: clamp(1.25rem, 4vw, 1.8rem); }
  .hero-cta-group .btn-gold, .hero-cta-group .btn-ghost { flex: 1 1 auto; min-width: 200px; text-align: center; }

  .section { padding: 4rem 0; }
  .section-title { font-size: clamp(1.7rem, 4.5vw, 2.4rem); }

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

  /* Fix overflow caused by featured package scale */
  .package-card.featured { transform: none; }
  .package-card:hover { transform: translateY(-5px); }

  .page-header { padding: 8rem 0 3rem; }
  .page-header h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .cta-banner { padding: 3.5rem 0; }

  /* Tilt/parallax disabled on touch */
  .tilt { transform: none !important; }
}

/* ---------- Tablet portrait (576–767) ---------- */
@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 3rem 0; }

  .hero { padding: 6.5rem 0 3rem; text-align: center; }
  .hero-headline { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-portrait { max-width: 320px; }

  .stat-card { padding: 1.4rem 0.8rem; }
  .stat-num { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .poetry-card, .event-card .body, .testimonial-card, .brand-card, .package-card { padding: 1.6rem; }
  .poetry-card .body { font-size: 1rem; }
  .package-card .price { font-size: 1.9rem; }

  .glass-card { padding: 1.5rem; }
  .newsletter-wrap { padding: 2rem 1.2rem; }
  .newsletter-wrap form { flex-direction: column; }
  .newsletter-wrap form .form-control-custom,
  .newsletter-wrap form .btn-gold { width: 100%; max-width: 100% !important; }

  .footer .row > div { margin-bottom: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; }
  .whatsapp-float.bottom_right { right: 18px; }
  .whatsapp-float.bottom_left { left: 18px; }

  .press-logo { height: 70px; font-size: 0.95rem; }
}

/* ---------- Mobile (360–575) ---------- */
@media (max-width: 575.98px) {
  body { font-size: 0.95rem; }

  .hero { padding: 6rem 0 2.5rem; }
  .hero-brand { font-size: clamp(2.6rem, 14vw, 4rem); }
  .hero-name { font-size: 1.1rem; }
  .hero-headline { font-size: 1.15rem; }
  .hero-support { font-size: 0.78rem; letter-spacing: 0.22em; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-gold, .hero-cta-group .btn-ghost { width: 100%; }
  .hero-portrait { max-width: 280px; }

  .section { padding: 3rem 0; }
  .eyebrow { font-size: 0.65rem; letter-spacing: 0.26em; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: 0.95rem; }

  .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  .event-card .img-wrap .date-badge { padding: 0.4rem 0.6rem; }
  .event-card .img-wrap .date-badge .d { font-size: 1.2rem; }

  .testimonial-card { padding: 2rem 1.4rem; }
  .package-card { padding: 2rem 1.4rem; }

  .btn-gold, .btn-ghost { padding: 0.8rem 1.6rem; font-size: 0.8rem; }

  .page-header { padding: 7rem 0 2.5rem; }
  .page-header h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .form-control-custom, .form-select-custom { padding: 0.7rem 1rem; font-size: 0.9rem; }

  .cta-banner { padding: 3rem 1rem; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* Tag pills wrap nicely */
  .tag-pill { padding: 0.35rem 0.8rem; font-size: 0.74rem; }

  /* Booking success check */
  .booking-success-icon { width: 70px !important; height: 70px !important; font-size: 2rem !important; }
}

/* ---------- Extra small (≤360px) ---------- */
@media (max-width: 360px) {
  .hero-brand { font-size: 2.4rem; }
  .section { padding: 2.5rem 0; }
  .glass-card, .poetry-card, .package-card { padding: 1.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-particles { display: none; }
}

/* ---------- Prevent horizontal overflow globally ---------- */
img, video, iframe { max-width: 100%; height: auto; }
.container { overflow-wrap: break-word; }
.table-responsive { -webkit-overflow-scrolling: touch; }

/* =====================================================================
   Bootstrap 5.3 Dark-Mode overrides — match site palette
   ===================================================================== */
:root, [data-bs-theme="dark"] {
  --bs-body-bg: #0a0a0a;
  --bs-body-color: #f5ecd9;
  --bs-emphasis-color: #f5ecd9;
  --bs-secondary-bg: #14110d;
  --bs-tertiary-bg: #1c1814;
  --bs-border-color: rgba(255,255,255,0.09);
  --bs-heading-color: #f5ecd9;
  --bs-link-color: #e8d9a8;
  --bs-link-hover-color: #d4af37;
  --bs-table-bg: transparent;
  --bs-table-color: #f5ecd9;
  --bs-table-striped-bg: rgba(255,255,255,0.02);
  --bs-table-hover-bg: rgba(212,175,55,0.05);
  --bs-table-border-color: rgba(255,255,255,0.06);
}

/* Modals / video lightbox */
.modal-content { background:#14110d; border:1px solid rgba(212,175,55,0.2); color:var(--cream); }
.modal-header, .modal-footer { border-color:rgba(255,255,255,0.08); }
.modal-title { color:var(--cream); }
.btn-close-white { filter:none; }
.modal .btn-close:not(.btn-close-white) { filter:invert(1); }

/* Offcanvas (nav + any) */
.offcanvas { background:#0a0a0a; color:var(--cream); border-color:rgba(212,175,55,0.18); }

/* Pagination */
.pagination .page-link { background:rgba(255,255,255,0.04); border-color:rgba(212,175,55,0.2); color:var(--cream); }
.pagination .page-link:hover { background:rgba(212,175,55,0.12); color:var(--gold); border-color:var(--gold); }
.pagination .page-item.active .page-link { background:linear-gradient(135deg,#f5e6c8,#d4af37); color:#1a1408; border-color:var(--gold); }
.pagination .page-item.disabled .page-link { background:rgba(255,255,255,0.02); color:#6b6356; }

/* Accordion (FAQ) */
.accordion { --bs-accordion-bg:#16130f; --bs-accordion-color:#f5ecd9; --bs-accordion-border-color:rgba(255,255,255,0.08); --bs-accordion-btn-bg:#16130f; --bs-accordion-btn-color:#f5ecd9; --bs-accordion-active-bg:#1c1814; --bs-accordion-active-color:#d4af37; --bs-accordion-btn-focus-box-shadow:0 0 0 2px rgba(212,175,55,0.15); }
.accordion-button::after { filter:invert(0.8); }
.accordion-body { color:#c9bfa8; }

/* Dropdowns */
.dropdown-menu { background:#16130f; border-color:rgba(255,255,255,0.1); }
.dropdown-item { color:var(--cream); }
.dropdown-item:hover, .dropdown-item:focus { background:rgba(212,175,55,0.1); color:var(--gold); }

/* Cards / list-group / toasts */
.card { background:#16130f; border-color:rgba(255,255,255,0.08); color:var(--cream); }
.list-group-item { background:#16130f; border-color:rgba(255,255,255,0.08); color:var(--cream); }
.toast { background:#16130f; border-color:rgba(255,255,255,0.1); color:var(--cream); }
.toast-header { background:#1c1814; color:var(--cream); border-color:rgba(255,255,255,0.08); }

/* Native selects & date pickers */
select.form-select, select.form-control { background-color:rgba(0,0,0,0.35); border-color:rgba(212,175,55,0.25); color:var(--cream); }
select.form-select option, select.form-control option { background:#16130f; color:var(--cream); }
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="number"] { background-color:rgba(0,0,0,0.35); color:var(--cream); }
input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator { filter:invert(0.8); }
.form-check-input { background-color:rgba(0,0,0,0.4); border-color:rgba(212,175,55,0.3); }
.form-check-input:checked { background-color:var(--gold); border-color:var(--gold); }

/* Rich admin-authored HTML content */
.rich-text p { margin: 0 0 1rem; line-height: 1.85; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text h2, .rich-text h3, .rich-text h4 { color: var(--cream); font-family: 'Playfair Display',serif; margin: 1.6rem 0 0.8rem; }
.rich-text h2:first-child, .rich-text h3:first-child { margin-top: 0; }
.rich-text ul, .rich-text ol { margin: 0 0 1rem 1.2rem; }
.rich-text li { margin-bottom: 0.4rem; }
.rich-text strong { color: var(--cream); }
.rich-text em { color: var(--gold-soft); }
.rich-text a { color: var(--gold); text-decoration: underline; }
.rich-text blockquote { border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1rem 0; font-style: italic; color: var(--gold-soft); }

/* Devanagari gradient-text fix — a trailing matra (the ी of आकाशवाणी) can
   overhang the text bounds and lose its clipped gradient paint. A solid
   underlay renders the full glyph; the larger background keeps the
   gradient's dark tail from making the last characters look faded. */
.hero-brand, .navbar-brand-custom, .preloader .brand-mark,
.footer .brand-foot, .gold-text, .package-card .price, .stat-num {
  background-size: 140%;
}
.hero-brand, .gold-text, .preloader .brand-mark, .footer .brand-foot {
  position: relative; isolation: isolate;
}
.hero-brand::after, .gold-text::after,
.preloader .brand-mark::after, .footer .brand-foot::after {
  content: attr(data-text);
  position: absolute; inset: 0; padding: inherit;
  z-index: -1; pointer-events: none;
  color: var(--gold); -webkit-text-fill-color: var(--gold);
}
