/* ═══════════════════════════════════════════════════════════════════════════
   COMPONENTS — Buttons, Cards, Sections & Shared Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Section Styles ──────────────────────────────────────────────────────── */

.section-padding {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(230, 81, 0, 0.9);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  color: rgba(33, 33, 33, 0.82);
  max-width: 620px;
  line-height: 1.85;
  font-size: clamp(1rem, 1.1vw + 0.85rem, 1.08rem);
  font-weight: 400;
}

/* ─── Section Backgrounds ─────────────────────────────────────────────────── */

.bg-texture-light {
  position: relative;
}

.bg-texture-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}

.bg-ornament {
  position: relative;
}

.bg-ornament::before {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 40vw, 600px);
  font-family: serif;
  color: rgba(33, 33, 33, 0.02);
  pointer-events: none;
  line-height: 1;
}

.bg-gradient-warm {
  background: linear-gradient(180deg, #FCF9F2 0%, #FFF8F0 50%, #FCF9F2 100%);
}

.bg-gradient-cool {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF9F2 100%);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--saffron) 0%, #d14700 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-ease);
  box-shadow: 0 4px 20px rgba(230, 81, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 81, 0, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s var(--transition-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary .play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.btn-secondary:hover .play-icon {
  background: rgba(212, 175, 55, 0.4);
  transform: scale(1.1);
}

.btn-saffron {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--saffron) 0%, #d14700 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-ease);
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.2);
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  background: white;
  color: var(--charcoal);
  border: 1.5px solid rgba(33, 33, 33, 0.08);
  cursor: pointer;
  transition: all 0.35s var(--transition-ease);
}

.btn-outline:hover {
  border-color: rgba(230, 81, 0, 0.25);
  color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ─── Social Buttons ────────────────────────────────────────────────────── */

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--transition-ease);
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1DA851);
}

.social-btn-telegram {
  background: linear-gradient(135deg, #0088cc, #0077b3);
}

/* ─── Cards ───────────────────────────────────────────────────────────────── */

.premium-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--transition-ease);
  overflow: hidden;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.04);
  border-color: rgba(212, 175, 55, 0.15);
}

.premium-card-inner {
  padding: 32px;
}

@media (max-width: 768px) {
  .premium-card-inner {
    padding: 24px;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.4s var(--transition-ease);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
}

/* ─── Darshan Card ─────────────────────────────────────────────────────── */

.darshan-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.darshan-card-inner {
  padding: 40px;
}

@media (max-width: 768px) {
  .darshan-card-inner {
    padding: 24px;
  }
}

/* ─── Image Hover Zoom ──────────────────────────────────────────────────── */

.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.6s var(--transition-ease);
}

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

/* ─── Divine Form Cards ─────────────────────────────────────────────────── */

.form-card {
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
  transition: all 0.5s var(--transition-ease);
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.18);
}

.form-card-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.form-card-icon {
  font-size: 4.5rem;
  transition: transform 0.6s var(--transition-ease);
  position: relative;
  z-index: 1;
}

.form-card:hover .form-card-icon {
  transform: scale(1.15) rotate(-3deg);
}

.form-card-time {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--saffron);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-card-body {
  padding: 28px;
}

.form-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.form-card-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(230, 81, 0, 0.6);
  margin-bottom: 12px;
}

.form-card-desc {
  font-size: 0.88rem;
  color: rgba(33, 33, 33, 0.55);
  line-height: 1.7;
}

.form-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Reveal Animations ──────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--transition-ease),
              transform 0.9s var(--transition-ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.stagger-children > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ─── FAQ Accordion ──────────────────────────────────────────────────────── */

.faq-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  overflow: hidden;
  transition: all 0.3s var(--transition-ease);
}

.faq-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.faq-toggle {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.faq-toggle:hover {
  color: var(--saffron);
}

.faq-toggle svg {
  flex-shrink: 0;
  transition: transform 0.4s var(--transition-ease);
  color: var(--gold);
}

.faq-toggle.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--transition-ease);
}

.faq-answer.active {
  max-height: 500px !important;
  padding-bottom: 20px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
