/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #8B1A4A;
  --primary-vivid: #A02060;
  --primary-bright: #C4527A;
  --primary-pale: #FDF0F5;
  --primary-deep: #6A1238;
  --gold: #C8900A;
  --gold-light: #E8B84B;
  --gold-pale: #FFFBEE;
  --cream: #F5EDD8;
  --warm-white: #FAF5EC;
  --light-bg: #FDF8F0;
  --white: #FFFFFF;
  --dark: #2A0D1A;
  --dark-2: #3D1528;
  --text: #3D1228;
  --text-muted: #7A3550;
  --text-light: #B07080;
  --border: rgba(139,26,74,0.12);
  --saffron: #C8900A;
  --saffron-light: #E8B84B;
  --terracotta: #8B1A4A;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-med: 0 8px 40px rgba(139,26,74,0.12);
  --shadow-strong: 0 20px 60px rgba(139,26,74,0.18);
}

/* ========== GLASSMORPHISM ========== */
:root {
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.70);
  --glass-bg-dark: rgba(26, 14, 5, 0.55);
  --glass-blur: blur(16px);
  --glass-blur-strong: blur(24px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.45);
  --glass-border-warm: 1px solid rgba(139, 26, 74, 0.20);
  --glass-shadow: 0 8px 32px rgba(139, 26, 74, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  --glass-shadow-dark: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ========== BASE & RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(139,26,74,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(200,144,10,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(139,26,74,0.04) 0%, transparent 55%);
  color: var(--text);
  overflow-x: hidden;
}

/* ========== KEYFRAMES (only used ones) ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes rippleFull {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(40); opacity: 0; }
}
@keyframes petalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
@keyframes waveIn {
  0% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139,26,74,0.3); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(139,26,74,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139,26,74,0); }
}
@keyframes logoFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(50px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-55px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(55px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.85);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ========== HEADER ========== */
header {
  background: linear-gradient(135deg, #FDF8F0 0%, #FAF0E6 50%, #FDF8F0 100%);
  border-bottom: 2px solid rgba(139,26,74,0.18);
  padding: 2px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(139,26,74,0.10);
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139,26,74,0.04) 0%, transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(200,144,10,0.04) 0%, transparent 60%);
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.header-logo-left {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.header-logo-right {
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
.header-logo-left img,
.header-logo-right img {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(139,26,74,0.18));
  transition: transform 0.3s;
}
.header-logo-left img:hover,
.header-logo-right img:hover {
  transform: scale(1.05);
}
.trust-name h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-deep);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.trust-name .marathi-name {
  font-family: 'Baloo 2', cursive;
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 3px;
  line-height: 1.5;
}
.trust-name .manacha {
  font-size: 10.5px;
  color: var(--primary);
  letter-spacing: 1.5px;
  margin-top: 3px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ========== NAVBAR ========== */
nav {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border-warm);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(232,98,26,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 15px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  border-bottom: 3px solid transparent;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%; right: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: all 0.3s;
  border-radius: 2px;
}
nav a:hover::after, nav a.active::after { left: 0; right: 0; }
nav a:hover, nav a.active {
  color: var(--primary);
  background: rgba(232,98,26,0.04);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, #F5EDD8 0%, #FDF8F0 35%, #FAF0E6 65%, #FDF5E8 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 50px 5%;
  border-bottom: 1px solid rgba(232,98,26,0.08);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(232,98,26,0.10), transparent);
  top: -180px; left: -180px;
  animation: float 7s ease-in-out infinite;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,150,10,0.08), transparent);
  bottom: -120px; right: -120px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,160,103,0.07), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float 13s ease-in-out infinite;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232,98,26,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,98,26,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.petal {
  position: absolute;
  font-size: 20px;
  opacity: 0.35;
  pointer-events: none;
  animation: petalFall linear infinite;
}
.petal:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.petal:nth-child(2) { left: 25%; animation-duration: 11s; animation-delay: 2s; }
.petal:nth-child(3) { left: 60%; animation-duration: 9s; animation-delay: 4s; }
.petal:nth-child(4) { left: 80%; animation-duration: 12s; animation-delay: 1s; }
.petal:nth-child(5) { left: 45%; animation-duration: 10s; animation-delay: 6s; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 870px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-size: 68px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  animation: fadeUp 0.9s ease 0.35s both;
  padding-top: 10px;
  overflow: visible;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-vivid), var(--gold-light), var(--primary-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.4;
  padding-top: 4px;
  vertical-align: middle;
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
}
.hero-marathi {
  font-family: 'Baloo 2', cursive;
  color: var(--text-muted);
  font-size: 22px;
  margin: 22px 0 8px;
  line-height: 1.8;
  animation: fadeUp 0.9s ease 0.45s both;
}
.hero-tagline {
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  margin-top: -60px;
  animation: fadeUp 0.9s ease 0.5s both;
  font-weight: 700;
}

/* UPCOMING EVENT — matches original inline style exactly */
.hero-event-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 10px;
  animation: fadeUp 0.9s ease 0.3s both;
  display: block;
}
.hero-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 42px;
  line-height: 1.8;
  animation: fadeUp 0.9s ease 0.55s both;
}
.hero-tip-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(158, 27, 77, 0.35);
  border-left: 4px solid var(--primary, #9e1b4d);
  border-radius: 10px;
  padding: 12px 18px;
  margin: 0 auto 18px auto;
  max-width: 620px;
  text-align: center;
  justify-content: center;
  font-size: 0.97rem;
  color: var(--primary-deep, #6b0f30);
  font-weight: 600;
  line-height: 1.6;
  animation: fadeUp 0.9s ease 0.62s both;
  backdrop-filter: blur(4px);
}
.hero-tip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.65s both;
}

/* HERO LOGO */
.hero-logo-img {
  display: block;
  margin: -30px 0 0 16px;
  width: 550px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  animation: logoFloat 3s ease-in-out infinite, fadeUp 0.8s ease-out 0.4s both;
  position: relative;
  top: -10px;
}
.hero-logo-img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: none;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
  border: none;
  padding: 15px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(232,98,26,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  animation: pulse-ring 2.5s infinite;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(232,98,26,0.5);
}
.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid rgba(232,98,26,0.3);
  padding: 15px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.btn-secondary:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,98,26,0.18);
}
.btn-orange {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
  border: none;
  padding: 17px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 6px 22px rgba(232,98,26,0.35);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232,98,26,0.5);
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: white;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(232,98,26,0.08);
  border-bottom: 1px solid rgba(232,98,26,0.08);
}
.stats-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 38px 22px;
  border-right: 1px solid rgba(232,98,26,0.1);
  transition: background 0.3s;
  cursor: default;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--primary-pale); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
  font-weight: 600;
}
.stat-label-mr {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ========== MARQUEE ========== */
.marquee-wrap {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), var(--terracotta));
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Baloo 2', cursive;
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== GENERAL SECTIONS ========== */
.section { padding: 90px 6%; }
.section.alt-bg { background: var(--warm-white); }
.sec-header {
  text-align: center;
  margin-bottom: 64px;
}
.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  border: 1px solid rgba(232,98,26,0.2);
  margin-bottom: 16px;
}
.sec-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.sec-header .marathi-heading {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.7;
}
.sec-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 18px auto 0;
  border-radius: 2px;
  animation: waveIn 0.8s ease 0.3s both;
}

/* ========== ABOUT SECTION ========== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1150px;
  margin: 0 auto;
}
.about-visual { position: relative; }
.temple-img-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(232,98,26,0.1), var(--shadow-strong);
  position: relative;
  height: 620px;
  background: linear-gradient(135deg, var(--primary-pale), #fff);
}
.temple-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.temple-img-card:hover img { transform: scale(1.05); }
.temple-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,5,0.75) 0%, transparent 55%);
}
.temple-img-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: white;
  border: 1px solid rgba(232,98,26,0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.temple-img-caption {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  color: white;
}
.temple-img-caption h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
}
.temple-img-caption p {
  font-family: 'Baloo 2', cursive;
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  margin-top: 5px;
}
.fact-pill {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
  border: 1px solid rgba(232,98,26,0.12);
}
.fact-pill-1 { bottom: -22px; right: -22px; animation-delay: 0s; }
.fact-pill-2 { top: -22px; right: 22px; animation-delay: 1.8s; }
.fact-pill .pill-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.about-text-wrap .sec-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(212,150,10,0.25);
  margin-bottom: 14px;
}
.about-text-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.about-text-wrap .marathi-title {
  font-family: 'Baloo 2', cursive;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 22px;
  line-height: 1.6;
}
.about-text-wrap p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.88;
  margin-bottom: 16px;
}
.about-text-wrap .marathi-para {
  font-family: 'Baloo 2', cursive;
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 2;
  margin-bottom: 22px;
}
.about-list { list-style: none; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(232,98,26,0.07);
  font-size: 14px;
  color: var(--text);
}
.about-list li:last-child { border-bottom: none; }
.about-list li .list-dot {
  width: 32px; height: 32px; min-width: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  margin-top: 1px;
}
.about-list li .list-text strong {
  display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px;
}
.about-list li .list-text span {
  font-family: 'Baloo 2', cursive;
  font-size: 13px; color: var(--text-muted);
}

/* ========== HISTORY SECTION ========== */
.history-section {
  background: linear-gradient(135deg, #FFF6F0 0%, #FFFAF5 50%, #FFF8F0 100%);
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232,98,26,0.08);
  border-bottom: 1px solid rgba(232,98,26,0.08);
}
.history-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232,98,26,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,98,26,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.timeline-snake {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 10px 0;
}
.tl-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 0;
  position: relative;
}
.tl-h-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.tl-h-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  position: relative;
}
.tl-h-dot {
  width: 18px; height: 18px; min-width: 18px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(232,98,26,0.35);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s;
}
.tl-v-connector {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  height: 60px;
  position: relative;
}
.tl-v-connector.snake-right .tl-v-line-wrap {
  grid-column: 3;
  display: flex; align-items: center; justify-content: center;
}
.tl-v-connector.snake-left .tl-v-line-wrap {
  grid-column: 1;
  display: flex; align-items: center; justify-content: center;
}
.tl-v-line {
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
}
.tl-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 18px;
  padding: 26px 30px;
  box-shadow: var(--glass-shadow);
  transition: all 0.35s;
  margin: 8px 0;
}
.tl-card:hover {
  border-color: rgba(232,98,26,0.35);
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}
.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.tl-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.tl-marathi {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.tl-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== ACTIVITIES SECTION ========== */
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}
.act-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: var(--glass-border);
  position: relative;
  overflow: hidden;
}
.act-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.act-card:hover::before { transform: scaleX(1); }
.act-card:hover {
  transform: translateY(-13px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(232,98,26,0.18);
}
.act-icon-wrap {
  width: 86px; height: 86px;
  background: var(--primary-pale);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  margin: 0 auto 22px;
  transition: all 0.4s;
  border: 1px solid rgba(232,98,26,0.1);
}
.act-card:hover .act-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  transform: scale(1.14) rotate(6deg);
  border-color: transparent;
}
.act-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}
.act-card .act-marathi {
  font-family: 'Baloo 2', cursive;
  font-size: 13px; color: var(--primary); margin-bottom: 10px;
}
.act-card p { color: var(--text-muted); font-size: 14px; line-height: 1.78; }
.act-card .act-marathi-desc {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  color: rgba(122,79,46,0.65);
  margin-top: 9px;
  line-height: 1.7;
  border-top: 1px dashed rgba(232,98,26,0.12);
  padding-top: 9px;
}

/* ========== HOW IT WORKS ========== */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px 44px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 82px; height: 82px;
  background: white;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 0 0 9px rgba(232,98,26,0.07), var(--shadow-soft);
  transition: all 0.35s;
}
.step:hover .step-num {
  background: var(--primary);
  color: white;
  transform: scale(1.14);
  box-shadow: 0 0 0 14px rgba(232,98,26,0.1), 0 10px 30px rgba(232,98,26,0.35);
}
.step h4 { font-family: 'Playfair Display', serif; font-size: 16.5px; color: var(--dark); margin-bottom: 9px; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.72; }

/* ========== DARSHAN STRIP ========== */
.darshan-strip {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary), #c94a00);
  padding: 52px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.darshan-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.07) 0%, transparent 70%);
}
.darshan-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.darshan-item { text-align: center; }
.darshan-item .d-icon {
  font-size: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.darshan-item h5 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}
.darshan-item p { color: rgba(255,255,255,0.75); font-size: 14.5px; }
.darshan-item .mr {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

/* ========== PRICING ========== */
.pricing-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(255,255,255,0.4);
  position: relative;
  border: var(--glass-border);
}
.pricing-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
  padding: 46px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 22px, rgba(255,255,255,0.03) 22px, rgba(255,255,255,0.03) 23px);
}
.pricing-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.price-period {
  opacity: 0.8;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-top: 9px;
}
.pricing-body { padding: 40px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(232,98,26,0.06);
  font-size: 15px;
}
.pricing-feature:last-of-type { border-bottom: none; margin-bottom: 24px; }
.pricing-check {
  width: 27px; height: 27px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 52px;
}
.contact-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s;
  border: var(--glass-border);
}
.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary);
}
.contact-icon {
  width: 68px; height: 68px;
  background: var(--primary-pale);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
  border: 1px solid rgba(232,98,26,0.12);
}
.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-card p { color: var(--text-muted); font-size: 14px; line-height: 1.72; }
.contact-card .marathi-p {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  color: rgba(122,79,46,0.6);
  margin-top: 5px;
}
.contact-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  margin-top: 8px;
  transition: all 0.22s;
}
.contact-phone-link:hover { color: var(--primary-deep); transform: scale(1.04); }
.social-links-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 42px;
  flex-wrap: wrap;
}
.social-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: 15px;
  padding: 14px 26px;
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s;
}
.social-link-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
  border-color: var(--primary);
  color: var(--primary);
}
.social-link-btn .sl-icon { font-size: 22px; }

/* ========== FOOTER ========== */
footer {
  background: #1A0E05;
  color: rgba(255,255,255,0.7);
  padding: 0;
}
.footer-top {
  background: linear-gradient(180deg, rgba(26,14,5,0.92), rgba(13,6,3,0.96));
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 72px 6% 52px;
  border-bottom: 1px solid rgba(232,98,26,0.15);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-logo {
  width: 54px; height: 54px;
  background: radial-gradient(circle, #ffe8c0, #E8621A);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 22px rgba(232,98,26,0.35);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--saffron-light);
  letter-spacing: 0.5px;
}
.footer-brand-sub {
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 42px;
}
.footer-about p {
  font-size: 13.5px; line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-bright);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,98,26,0.18);
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 11px;
  transition: all 0.22s;
}
.footer-col a::before { content: '›'; color: var(--primary); font-size: 18px; line-height: 1; }
.footer-col a:hover { color: var(--primary-bright); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13.5px;
}
.footer-contact-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(232,98,26,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; margin-top: 2px;
}
.footer-contact-item span { color: rgba(255,255,255,0.48); line-height: 1.65; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(232,98,26,0.1);
  border: 1px solid rgba(232,98,26,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-mid {
  background: rgba(232,98,26,0.05);
  border-top: 1px solid rgba(232,98,26,0.08);
  border-bottom: 1px solid rgba(232,98,26,0.08);
  padding: 26px 6%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
}
.fmid-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); }
.fmid-item strong { color: rgba(255,255,255,0.75); }
.fmid-sep { color: rgba(232,98,26,0.4); font-size: 20px; }
.footer-bottom {
  background: #0D0603;
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 20px;
  font-size: 12.5px;
  border-top: 1px solid rgba(139,26,74,0.2);
}
footer span { color: var(--primary-bright); font-weight: 600; }

/* ========== MODAL ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.3s ease both; }
.modal-box {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur-strong);
  -webkit-backdrop-filter: var(--glass-blur-strong);
  border-radius: 28px;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 44px 100px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.45);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  position: relative;
  border: var(--glass-border);
}
.modal-header {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  padding: 40px 42px 30px;
  border-radius: 28px 28px 0 0;
  position: relative;
  overflow: hidden;
}
.modal-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
.modal-close-btn {
  position: absolute; top: 18px; right: 20px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; z-index: 1;
}
.modal-close-btn:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }
.modal-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 5px 16px;
  font-size: 10px;
  letter-spacing: 2.5px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative; z-index: 1;
}
.modal-header h2 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 26px; font-weight: 800; line-height: 1.3;
  position: relative; z-index: 1;
}
.modal-header .modal-sub {
  font-family: 'Baloo 2', cursive;
  color: rgba(255,255,255,0.72); font-size: 14px; margin-top: 6px;
  position: relative; z-index: 1;
}
.modal-body { padding: 38px 42px; }
.modal-sec { margin-bottom: 36px; }
.modal-sec:last-child { margin-bottom: 0; }
.modal-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232,98,26,0.1);
  display: flex; align-items: center; gap: 9px;
}
.modal-sec-title span { font-size: 18px; }
.modal-reg-block {
  background: var(--primary-pale);
  border: 1px solid rgba(232,98,26,0.12);
  border-radius: 14px;
  padding: 22px 24px;
}
.modal-reg-block p {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.78; margin-bottom: 10px;
}
.modal-reg-block p:last-child { margin-bottom: 0; }
.modal-reg-block strong { color: var(--dark); }
.objectives-list { list-style: none; }
.objectives-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,98,26,0.06);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.objectives-list li:last-child { border-bottom: none; }
.objectives-list li::before { content: '✦'; color: var(--primary); font-size: 10px; margin-top: 5px; flex-shrink: 0; }

/* ========== NAVRATROTSAV SECTION ========== */
.navratri-section {
  background: white;
  padding: 90px 6%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232,98,26,0.08);
}
.navratri-section::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='%23E8621A' fill-opacity='0.025'%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");
}
.navratri-banner {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  margin-bottom: 72px;
  position: relative;
  border: 2px solid rgba(212,150,10,0.25);
}
.navratri-banner img {
  width: 100%;
  display: block;
  max-height: 650px;
  height: auto;
  object-fit: cover;
  object-position: center top;
}
.navratri-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,14,5,0.85) 0%, transparent 60%);
  padding: 36px 40px;
}
.navratri-banner-overlay h2 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 34px; font-weight: 800;
}
.navratri-banner-overlay p {
  color: rgba(255,255,255,0.82);
  font-family: 'Baloo 2', cursive;
  font-size: 15px; margin-top: 6px;
}
.navratri-schedule { margin-bottom: 80px; }

/* Each group: 2 cards left | 2 images right, same total height */
.schedule-row-group {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-bottom: 20px;
  align-items: stretch;
}

/* Left: 2 stacked cards filling full group height */
.schedule-cards-pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Right: 2 images side by side, stretching to match left height */
.schedule-imgs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.schedule-imgs-pair .sched-img-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 0;
}
.schedule-imgs-pair .sched-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s;
}
.schedule-imgs-pair .sched-img-card:hover img { transform: scale(1.05); }

/* Individual day card */
.schedule-day-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232,98,26,0.08);
  padding: 14px 18px;
  background: white;
  transition: all 0.3s;
  flex: 1;
}
.schedule-day-card:hover {
  box-shadow: var(--shadow-med);
  transform: translateY(-2px);
  border-color: rgba(232,98,26,0.2);
}

.sdc-date-badge {
  display: block;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: 'Baloo 2', cursive;
  font-size: 13px; font-weight: 700;
  margin-bottom: 10px;
  width: fit-content;
}
.sdc-events { list-style: none; margin: 0; padding: 0; }
.sdc-events li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 4px 0; font-size: 13px; color: var(--text-muted);
  border-bottom: 1px dashed rgba(232,98,26,0.07); line-height: 1.5;
}
.sdc-events li:last-child { border-bottom: none; }
.sdc-time {
  font-size: 11px; font-weight: 700; color: var(--primary);
  white-space: nowrap; min-width: 90px; margin-top: 1px;
}

/* Day colour themes */
.day-color-1  .sdc-date-badge { background: #fff3e6; color: #c94a00; }
.day-color-2  .sdc-date-badge { background: #fdecea; color: #b52020; }
.day-color-3  .sdc-date-badge { background: #e8edf8; color: #2050a0; }
.day-color-4  .sdc-date-badge { background: #fdf6e0; color: #8a6500; }
.day-color-5  .sdc-date-badge { background: #e6f5ea; color: #1a6a30; }
.day-color-6  .sdc-date-badge { background: #f2ebfb; color: #5a1a9a; }
.day-color-7  .sdc-date-badge { background: #fdf0e8; color: #8a3000; }
.day-color-8  .sdc-date-badge { background: #fce8f4; color: #900050; }
.day-color-9  .sdc-date-badge { background: #f0e8f8; color: #4a006a; }
.day-color-10 .sdc-date-badge { background: #fdf3e6; color: #7a4000; }

.day-color-1  { border-left: 5px solid #ff6b00 !important; }
.day-color-2  { border-left: 5px solid #dc3c3c !important; }
.day-color-3  { border-left: 5px solid #3264c8 !important; }
.day-color-4  { border-left: 5px solid #c8a000 !important; }
.day-color-5  { border-left: 5px solid #288c3c !important; }
.day-color-6  { border-left: 5px solid #783cb4 !important; }
.day-color-7  { border-left: 5px solid #c85014 !important; }
.day-color-8  { border-left: 5px solid #c81478 !important; }
.day-color-9  { border-left: 5px solid #641e96 !important; }
.day-color-10 { border-left: 5px solid #b46400 !important; }

/* Mobile image inside card — hidden on desktop */
.sdc-mobile-img { display: none; }


.alankar-gallery { margin-bottom: 80px; }
.alankar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.alankar-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212,150,10,0.15);
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--warm-white);
}
.alankar-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold);
}
.alankar-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.4s;
}
.alankar-card:hover img { transform: scale(1.08); }
.navratri-photo-gallery { margin-bottom: 80px; }
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Full-width featured image on top */
.photo-card.pg-featured {
  grid-column: 1 / -1;
  height: 420px;
  background: #1a0e05;
}
.photo-card.pg-featured img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #1a0e05;
}
/* 3-per-row cards */
.photo-card.pg-third {
  height: 260px;
}
/* Keep old class names working */
.photo-card.pg-half  { height: 260px; }
.photo-card.pg-tall  { height: 420px; grid-column: 1 / -1; }
.photo-card.pg-normal { height: 260px; }
.photo-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s;
  background: var(--warm-white);
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; transition: transform 0.5s;
}
.photo-card:hover img { transform: scale(1.06); }
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.photo-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,14,5,0.88) 0%, transparent 100%);
  padding: 32px 16px 14px;
  font-family: 'Baloo 2', cursive;
  font-size: 13.5px; color: white; font-weight: 700; line-height: 1.4;
}
/* old size classes removed — now handled by grid rows */
.navratri-aarti-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; margin-bottom: 80px;
}
.aarti-card {
  background: linear-gradient(160deg, #fffbf5, #fff8ef);
  border: 1px solid rgba(232,98,26,0.15);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.aarti-card::before {
  content: '🌸';
  position: absolute; top: -10px; right: 20px;
  font-size: 72px; opacity: 0.06;
}
.aarti-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--primary-deep);
  margin-bottom: 6px; text-align: center;
}
.aarti-card .aarti-sub {
  text-align: center;
  font-family: 'Baloo 2', cursive;
  font-size: 13px; color: var(--primary); margin-bottom: 24px; letter-spacing: 1px;
}
.aarti-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px; margin: 0 auto 24px;
}
.aarti-stanza {
  font-family: 'Baloo 2', cursive;
  font-size: 14.5px; color: var(--text); line-height: 2.1;
  margin-bottom: 18px; padding: 14px 18px;
  border-radius: 12px; background: rgba(232,98,26,0.03);
  border-left: 3px solid rgba(232,98,26,0.18);
}
.aarti-stanza:last-child { margin-bottom: 0; }
.nav-durga-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 6px;
}
.nav-durga-info .mr-title {
  font-family: 'Baloo 2', cursive;
  font-size: 16px; color: var(--primary); margin-bottom: 24px;
}
.nav-durga-info p { font-size: 14.5px; color: var(--text-muted); line-height: 1.88; margin-bottom: 20px; }
.durga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.durga-item {
  background: white;
  border-radius: 14px; padding: 14px 10px; text-align: center;
  border: 1px solid rgba(232,98,26,0.08);
  box-shadow: var(--shadow-soft); transition: all 0.3s;
}
.durga-item:hover {
  border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-med);
}
.durga-item .d-num {
  width: 26px; height: 26px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  border-radius: 50%; color: white; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.durga-item .d-name { font-family: 'Baloo 2', cursive; font-size: 13px; color: var(--dark); font-weight: 600; line-height: 1.4; }
.durga-item .d-name-en { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ========== RESPONSIVE STYLES ========== */

/* Base fix for all devices – prevent horizontal overflow */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
* {
  max-width: 100%;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}

/* Large screens */
@media (max-width: 1100px) {
  .alankar-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Tablet landscape / small desktop */
@media (max-width: 1000px) {
  .about-wrap { grid-template-columns: 1fr; gap: 52px; }
  .fact-pill-1 { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrap::before { display: none; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .navratri-aarti-wrap { grid-template-columns: 1fr; gap: 36px; }
  .alankar-grid { grid-template-columns: repeat(3, 1fr); }
  /* Mobile: each group is just a flex column of cards */
  .schedule-row-group { display: flex; flex-direction: column; gap: 10px; }
  /* Hide the desktop image pair */
  .schedule-imgs-pair { display: none; }
  /* Each card: text left, image right */
  .schedule-day-card {
    display: grid;
    grid-template-columns: 1fr 110px;
    grid-template-rows: auto 1fr;
    padding: 0;
    overflow: hidden;
  }
  .schedule-day-card .sdc-date-badge {
    grid-column: 1 / 2;
    border-radius: 0;
    margin: 12px 12px 6px;
    font-size: 11.5px;
  }
  .schedule-day-card .sdc-events {
    grid-column: 1 / 2;
    padding: 0 12px 12px;
  }
  .sdc-mobile-img {
    display: block;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  .sdc-mobile-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
  }
  .schedule-layout { display: contents; }
  .schedule-img-col { display: none; }
  .schedule-img-grid { display: none; }
  .sdc-right { display: none; }
  .sdc-double-img { display: none; }
  .photo-gallery-grid { grid-template-columns: 1fr; }
  .photo-card.pg-featured { grid-column: auto; height: auto; aspect-ratio: 16/9; }
  .photo-card.pg-half { height: auto; aspect-ratio: 16/9; }
  .photo-card.pg-third { height: auto; aspect-ratio: 16/9; }
  .photo-card.pg-tall { height: auto; aspect-ratio: 16/9; grid-column: auto; }
  .photo-card.pg-normal { height: auto; aspect-ratio: 16/9; }
}

/* =========================================
   MOBILE — 768px and below
   KEY FIX: Remove min-height so hero
   collapses to content height, eliminating
   the giant empty gap above the content.
   Also: bigger logo, tighter top padding.
   ========================================= */
@media (max-width: 768px) {
  .tl-row { grid-template-columns: 1fr; gap: 16px; }
  .tl-h-connector { display: none; }
  .tl-v-connector { display: none; }
  .modal-body { padding: 24px 22px; }
  .modal-header { padding: 28px 24px 20px; }

  /* ---- HERO FIXES ---- */
  .hero {
    min-height: unset !important;   /* removes the 92vh gap */
    padding: 20px 5% 50px;
  }
  .hero-content {
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-logo-img {
    width: 220px;
    max-width: 80%;
    margin: 10px 65px 0 20px ;
    display: block;
    position: relative;
    top: 0;
  }
  .hero-tagline {
    margin-top: -16px;
    font-size: 11px;
    text-align: center;
  }
  .hero-title {
    font-size: 42px;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

/* =========================================
   MOBILE — 650px and below
   ========================================= */
@media (max-width: 650px) {
  /* Force no horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    width: 100%;
  }
  .hero, .hero-content, .hero * {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* ---- HERO FIXES ---- */
  .hero {
    min-height: unset !important;   /* critical: kills the empty space */
    padding: 12px 5% 40px !important;
  }
  .hero-title {
    font-size: 32px !important;
    word-break: break-word;
    padding: 0 10px !important;
    white-space: normal;
  }
  .hero-logo-img {
    width: 230px !important;
    max-width: 80% !important;
    margin: 10px 65px 0 20px ;
    display: block !important;
    position: static !important;
  }
  .hero-tagline {
    margin-top: -12px !important;
    font-size: 10px !important;
    letter-spacing: 2px;
    white-space: normal;
  }
  .hero-desc {
    font-size: 14px !important;
    padding: 0 15px !important;
    margin-bottom: 30px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 90% !important;
    margin: 0 auto !important;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .footer-mid { flex-direction: column; text-align: center; }
  .fmid-sep { display: none; }

  /* Stats & darshan */
  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 120px; padding: 20px 10px; }
  .stat-num { font-size: 32px; }
  .darshan-inner { gap: 24px; }
  .darshan-item .d-icon { font-size: 28px; }
  .darshan-item h5 { font-size: 11px; }
  .darshan-item p { font-size: 12px; }

  /* Hide floating pills */
  .fact-pill-2 { display: none; }

  /* Header logos */
  .header-logo-left img,
  .header-logo-right img { width: 60px; height: auto; }
  .trust-name h1 { font-size: 14px; }
  .trust-name .marathi-name { font-size: 10px; }
  .trust-name .manacha { display: none; }

  /* Navratri schedule & gallery */
  .alankar-grid { grid-template-columns: repeat(2, 1fr); }
  .durga-grid { grid-template-columns: repeat(3, 1fr); }
  .schedule-img-grid { grid-template-columns: 1fr 1fr; }
  .sdc-left { padding: 0; }
  .sdc-marathi-date { font-size: 12px; }
  .sdc-events li { font-size: 11px; }
  .sdc-time { min-width: 55px; font-size: 10px; }

  /* Marquee */
  .marquee-wrap { overflow-x: hidden; }
  .marquee-item { font-size: 12px; }
}

/* =========================================
   MOBILE — 480px and below
   ========================================= */
@media (max-width: 480px) {
  .hero {
    min-height: unset !important;   /* keep removing on all small breakpoints */
    padding: 8px 5% 40px !important;
  }
  .hero-title {
    font-size: 26px !important;
  }
  .hero-logo-img {
    width: 200px !important; 
    margin: 8px 65px 0 20px ;
  }
  .hero-tagline {
    font-size: 8px !important;
    margin-top: -10px !important;
  }
  .hero-desc {
    font-size: 12px !important;
  }
  .btn-primary, .btn-secondary {
    width: 95% !important;
    font-size: 12px;
    padding: 10px 16px;
  }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 9px; }
  .trust-name h1 { font-size: 12px; }
  .trust-name .marathi-name { font-size: 8px; }
  .alankar-grid { gap: 8px; }
}


/* ========== HAMBURGER MENU — MOBILE ONLY (≤768px) ==========
   Button + popup: position:fixed so hero overflow:hidden cannot clip them.
   Desktop: .hbg-wrap is hidden. Mobile: #desktopNav is hidden.
   ============================================================ */

.hbg-wrap { display: none; }

@media (max-width: 768px) {

  /* 1. Hide desktop nav */
  #desktopNav { display: none; }

  /* 2. Bigger header on mobile */
  header { padding: 14px 12px; min-height: 86px; }
  .header-logo-left img,
  .header-logo-right img { width: 65px; height: auto; }
  .trust-name h1 { font-size: 14px; }
  .trust-name .marathi-name { font-size: 10px; }
  .trust-name .manacha { display: none; }

  /* 3. Hamburger wrapper — fixed to viewport top-right */
  .hbg-wrap {
    display: block;
    position: fixed;
    top: 95px;
    right: 16px;
    z-index: 99999;
  }

  /* 4. The 3-bar button */
  .hbg-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 48px;
    height: 40px;
    padding: 8px 9px;
    background: #8B1A4A;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139,26,74,0.55);
    transition: background 0.2s, transform 0.2s;
  }
  .hbg-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .hbg-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hbg-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hbg-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* 5. Pop-up menu — fixed, below button */
  .hbg-popup {
    position: fixed;
    top: 145px;
    right: 16px;
    width: 230px;
    background: #ffffff;
    border: 1.5px solid rgba(139,26,74,0.22);
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(139,26,74,0.28), 0 4px 14px rgba(0,0,0,0.12);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.88) translateY(-10px);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.34,1.56,0.64,1);
    z-index: 99998;
  }
  .hbg-popup.open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }

  /* 6. Arrow notch */
  .hbg-arrow {
    position: absolute;
    top: -7px;
    right: 14px;
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-left: 1.5px solid rgba(139,26,74,0.22);
    border-top: 1.5px solid rgba(139,26,74,0.22);
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
    z-index: 1;
  }

  /* 7. Links inside popup */
  .hbg-popup a {
    display: block;
    padding: 14px 20px;
    color: #3D1228;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(139,26,74,0.08);
    transition: background 0.15s, padding-left 0.15s, color 0.15s;
  }
  .hbg-popup a:first-of-type { padding-top: 18px; }
  .hbg-popup a:last-child { border-bottom: none; padding-bottom: 18px; }
  .hbg-popup a:hover,
  .hbg-popup a:active {
    background: #FDF0F5;
    color: #8B1A4A;
    padding-left: 28px;
  }
}
/* ============================================================
   COMPREHENSIVE MOBILE AUDIT FIXES
   All users are primarily on mobile — these rules ensure
   correct alignment, sizing and spacing on ≤768px devices.
   ============================================================ */

/* ── SECTION PADDING ── */
@media (max-width: 768px) {
  .section { padding: 52px 5%; }
  .sec-header { margin-bottom: 36px; }
  .sec-header h3 { font-size: 26px; }
  .sec-header .marathi-heading { font-size: 16px; }
  .sec-badge { font-size: 9.5px; letter-spacing: 2px; padding: 5px 14px; }
}

/* ── HEADER ── */
@media (max-width: 768px) {
  header {
    padding: 10px 4%;
    gap: 8px;
  }
  .header-logo-left img,
  .header-logo-right img {
    width: 58px;
    height: auto;
  }
  .trust-name { text-align: center; }
  .trust-name h2 { font-size: 14px; line-height: 1.35; }
  .trust-name .marathi-name { font-size: 11px; }
  .trust-name .manacha { display: none; }
}
@media (max-width: 400px) {
  .header-logo-left img,
  .header-logo-right img { width: 44px; }
  .trust-name h2 { font-size: 12px; }
}

/* ── ABOUT SECTION ── */
@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; gap: 28px; }
  .temple-img-card { height: 260px; }
  .about-text-wrap h3 { font-size: 22px; }  /* was 34px */
  .about-text-wrap .marathi-title { font-size: 14px; }
  .about-list { gap: 12px; }
}

/* ── TIMELINE ── */
@media (max-width: 768px) {
  .tl-card { padding: 20px; }
  .tl-card h4 { font-size: 15px; }
  .tl-year { font-size: 11px; }
}

/* ── DARSHAN STRIP ── */
@media (max-width: 768px) {
  .darshan-strip { padding: 32px 5%; }
  .darshan-inner {
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .darshan-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    text-align: center;
  }
  .darshan-item .d-icon { font-size: 26px; margin-bottom: 6px; }
  .darshan-item h5 { font-size: 11px; letter-spacing: 1px; }
  .darshan-item p { font-size: 12px; }
  .darshan-item .mr { font-size: 11px; }
}
@media (max-width: 480px) {
  .darshan-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

/* ── ACTIVITIES GRID ── */
@media (max-width: 768px) {
  .act-grid { grid-template-columns: 1fr; gap: 18px; }
  .act-card { padding: 26px 20px; }
  .act-icon-wrap { width: 66px; height: 66px; font-size: 34px; margin-bottom: 14px; }
  .act-card h4 { font-size: 16px; }
  .act-card p { font-size: 13px; }
}

/* ── HOW IT WORKS ── */
@media (max-width: 768px) {
  .steps-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .steps-wrap::before { display: none; }
  .step { padding: 0 10px 20px; }
  .step-num { width: 60px; height: 60px; font-size: 22px; margin-bottom: 16px; }
  .step h4 { font-size: 14px; }
  .step p { font-size: 12.5px; }
}
@media (max-width: 480px) {
  .steps-wrap { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 0 0 16px; }
}

/* ── PRICING ── */
@media (max-width: 768px) {
  .pricing-header { padding: 28px 20px; }
  .pricing-header h3 { font-size: 16px; }
  .price-amount { font-size: 56px; }
  .price-period { font-size: 12px; letter-spacing: 1.5px; }
  .pricing-body { padding: 24px 20px; }
  .pricing-feature { font-size: 13px; gap: 10px; padding: 10px 0; }
  .pricing-check { width: 22px; height: 22px; font-size: 10px; }
}

/* ── CONTACT ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .contact-card { padding: 24px 20px; }
  .contact-icon { width: 52px; height: 52px; font-size: 22px; }
  .contact-card h4 { font-size: 15px; }
  .social-links-row { flex-direction: column; gap: 10px; }
  .social-link-btn { width: 100%; justify-content: flex-start; }
}

/* ── NAVRATRI / SCHEDULE SECTION ── */
@media (max-width: 768px) {
  .navratri-section { padding: 40px 4%; }
  .navratri-banner img { border-radius: 12px; }
  .schedule-day-card .sdc-date-badge { font-size: 11px; }
  .sdc-events li { font-size: 12px; line-height: 1.5; }
}

/* ── MARQUEE ── */
@media (max-width: 768px) {
  .marquee-wrap { overflow: hidden; }
  .marquee-item { font-size: 12.5px; gap: 8px; }
}

/* ── STATS STRIP ── */
@media (max-width: 768px) {
  .stats-inner { justify-content: flex-start; }
  .stat-item {
    flex: 0 0 50%;
    min-width: 0;
    padding: 22px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(232,98,26,0.08);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(232,98,26,0.08); }
  .stat-num { font-size: 34px; }
  .stat-label { font-size: 9px; margin-top: 8px; }
  .stat-label-mr { font-size: 11px; }
}

/* ── FOOTER ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 36px 5% 28px; }
  .footer-mid {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 14px 5%;
  }
  .fmid-sep { display: none; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 11px;
    padding: 14px 5%;
    gap: 6px;
    line-height: 1.8;
  }
  .footer-social { display: flex; gap: 12px; }
}

/* ── MODAL ── */
@media (max-width: 768px) {
  .modal-box { margin: 12px; width: calc(100% - 24px); max-width: 100%; border-radius: 18px; }
  .modal-header { padding: 22px 18px 16px; }
  .modal-body { padding: 20px 18px; }
  .modal-title-badge { font-size: 12px; }
  .modal-box h2 { font-size: 18px; }
}