/* ============================================
   ADDITIONAL SERVICES PAGE — PREMIUM SPIRITUAL CSS
   Maintains: Same palette, typography, branding, 
   animations, and spacing as main website.
   ============================================ */

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107, 26, 26, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(255, 111, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 160, 23, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--maroon-dark) 0%, var(--dark-bg) 100%);
}

.page-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-mandala {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(212, 160, 23, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateMandala 60s linear infinite;
}

.page-hero-mandala::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(212, 160, 23, 0.04);
  border-radius: 50%;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.page-hero-om {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--font-hindi);
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.5), 0 0 80px rgba(212, 160, 23, 0.2);
  animation: pulseGlow 3s ease-in-out infinite;
}

.page-hero-sanskrit {
  font-family: var(--font-hindi);
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 5px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.page-hero-title {
  font-family: var(--font-hindi);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.3;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(212, 160, 23, 0.2);
}

.page-hero-subtitle {
  font-family: var(--font-english-heading);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero-desc {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.9;
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
.as-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.as-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

/* Section tagline */
.section-tagline {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: -30px auto 0;
  opacity: 0.8;
  line-height: 1.8;
}

.section-tagline .tagline-en {
  display: block;
  font-family: var(--font-english-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 4px;
  font-style: italic;
}

/* Sub-heading */
.as-sub-heading {
  text-align: center;
  margin-bottom: 40px;
}

.as-sub-title {
  font-family: var(--font-hindi);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.as-sub-english {
  font-family: var(--font-english-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================
   SERVICE CARDS — UNIVERSAL STYLES
   ============================================ */
.as-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.as-card {
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  cursor: default;
}

.as-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.as-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 160, 23, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 23, 0.1);
}

.as-card:hover::before {
  opacity: 1;
}

/* Image Placeholder */
.as-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(74, 14, 14, 0.6), rgba(45, 10, 10, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.as-card-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
}

.as-card-img-placeholder::after {
  content: '🕉️';
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.placeholder-label {
  font-family: var(--font-english-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.5;
  z-index: 1;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 1px dashed rgba(212, 160, 23, 0.2);
  border-radius: 8px;
}

/* Card Content */
.as-card-content {
  padding: 20px;
  text-align: center;
}

.as-card-hindi {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
  line-height: 1.4;
}

.as-card-english {
  font-family: var(--font-english-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Card CTA Button */
.as-card-cta {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--saffron), var(--divine-orange));
  color: var(--white);
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2);
}

.as-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.4);
}

/* ============================================
   SECTION 1 — ASTROLOGY (Cosmic Golden Theme)
   ============================================ */
.as-astrology {
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 15, 5, 1) 50%, var(--dark-bg) 100%);
}

.cosmic-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 160, 23, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.as-card-astrology .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(42, 30, 10, 0.9), rgba(26, 15, 5, 0.95));
}

.as-card-astrology .as-card-img-placeholder::after {
  content: '☿';
}

.as-card-astrology:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 23, 0.15);
}

/* ============================================
   SECTION 2 — MARRIAGE (Soft Gold + White)
   ============================================ */
.as-marriage {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface), var(--dark-bg));
}

.as-card-marriage .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(60, 20, 20, 0.7), rgba(40, 15, 15, 0.8));
}

.as-card-marriage .as-card-img-placeholder::after {
  content: '💕';
}

.as-card-marriage:hover {
  border-color: rgba(245, 208, 96, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 208, 96, 0.1);
}

.as-card-marriage .as-card-cta {
  background: linear-gradient(135deg, #D4A017, #B8860B);
}

.as-card-marriage .as-card-cta:hover {
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

/* ============================================
   SECTION 3 — GRAH DOSH (Mahakal Aesthetic)
   ============================================ */
.as-dosh {
  background: linear-gradient(180deg, var(--dark-bg), rgba(30, 8, 8, 1), var(--dark-bg));
}

.sacred-energy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 30, 58, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 20%, rgba(212, 160, 23, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.as-card-dosh .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(50, 12, 12, 0.9), rgba(30, 8, 8, 0.95));
}

.as-card-dosh .as-card-img-placeholder::after {
  content: '🪐';
}

.as-card-dosh:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(196, 30, 58, 0.1);
}

.as-dosh::before {
  background: linear-gradient(90deg, transparent, var(--temple-red) 50%, transparent);
}

/* ============================================
   SECTION 4 — CAREER (Dark Maroon + Gold)
   ============================================ */
.as-career {
  background: linear-gradient(180deg, var(--dark-bg), rgba(25, 10, 5, 1), var(--dark-bg));
}

.as-card-career .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(45, 20, 10, 0.9), rgba(25, 10, 5, 0.95));
}

.as-card-career .as-card-img-placeholder::after {
  content: '💼';
}

.as-card-career:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(255, 215, 0, 0.1);
}

.as-card-career .as-card-cta {
  background: linear-gradient(135deg, var(--deep-maroon), var(--maroon));
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.as-card-career .as-card-cta:hover {
  box-shadow: 0 8px 25px rgba(74, 14, 14, 0.5);
  border-color: rgba(212, 160, 23, 0.5);
}

/* ============================================
   SECTION 5 — HEALTH (Calm, Peaceful)
   ============================================ */
.as-health {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface), var(--dark-bg));
}

.as-card-health .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(20, 35, 20, 0.7), rgba(15, 25, 15, 0.8));
}

.as-card-health .as-card-img-placeholder::after {
  content: '🙏';
}

.as-card-health:hover {
  border-color: rgba(144, 238, 144, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(144, 238, 144, 0.05);
}

.as-card-health .as-card-cta {
  background: linear-gradient(135deg, #2d6a4f, #1b4332);
}

.as-card-health .as-card-cta:hover {
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

/* ============================================
   SECTION 6 — POOJA (Temple Inspired)
   ============================================ */
.as-pooja {
  background: linear-gradient(180deg, var(--dark-bg), rgba(30, 12, 5, 1), var(--dark-bg));
}

.as-card-pooja .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(60, 20, 5, 0.8), rgba(35, 12, 5, 0.9));
}

.as-card-pooja .as-card-img-placeholder::after {
  content: '🔥';
}

.as-card-pooja:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 111, 0, 0.1);
}

.as-pooja::before {
  background: linear-gradient(90deg, transparent, var(--saffron) 50%, transparent);
}

/* ============================================
   SECTION 7 — TANTRA (Sacred Fire)
   ============================================ */
.as-tantra {
  background: linear-gradient(180deg, var(--dark-bg), rgba(35, 8, 8, 1), var(--dark-bg));
}

.sacred-fire-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 111, 0, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 20%, rgba(74, 14, 14, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.as-card-tantra .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(55, 10, 10, 0.9), rgba(35, 5, 5, 0.95));
}

.as-card-tantra .as-card-img-placeholder::after {
  content: '🔱';
}

.as-card-tantra:hover {
  border-color: rgba(196, 30, 58, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(196, 30, 58, 0.08);
}

.as-card-tantra .as-card-cta {
  background: linear-gradient(135deg, #6B1A1A, #4A0E0E);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.as-card-tantra .as-card-cta:hover {
  border-color: rgba(212, 160, 23, 0.5);
  box-shadow: 0 8px 25px rgba(107, 26, 26, 0.5);
}

.as-tantra::before {
  background: linear-gradient(90deg, transparent, var(--maroon) 30%, var(--temple-red) 50%, var(--maroon) 70%, transparent);
}

/* ============================================
   SECTION 8 — ONLINE SERVICES (Modern Spiritual)
   ============================================ */
.as-online {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface), var(--dark-bg));
}

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

.as-card-online .as-card-img-placeholder {
  background: linear-gradient(135deg, rgba(15, 15, 40, 0.8), rgba(10, 10, 30, 0.9));
}

.as-card-online .as-card-img-placeholder::after {
  content: '📱';
}

.as-card-online:hover {
  border-color: rgba(100, 149, 237, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(100, 149, 237, 0.08);
}

.as-card-online .as-card-cta {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.as-card-online .as-card-cta:hover {
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ============================================
   SECTION 9 — REVIEWS / TESTIMONIALS
   ============================================ */
.as-reviews {
  background: linear-gradient(180deg, var(--dark-bg), rgba(20, 10, 5, 1), var(--dark-bg));
  padding-bottom: 80px;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding: 0 60px;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.review-card {
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  font-family: var(--font-decorative);
  color: rgba(212, 160, 23, 0.06);
  line-height: 1;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron), var(--gold));
}

.review-card:hover {
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 160, 23, 0.08);
  transform: translateY(-4px);
}

.review-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.review-text-hindi {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.9;
}

.review-text-english {
  font-family: var(--font-english-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(255, 111, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(212, 160, 23, 0.2);
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
}

.review-location {
  font-family: var(--font-english-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Carousel Navigation */
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.review-nav:hover {
  background: rgba(212, 160, 23, 0.25);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}

.review-nav-prev {
  left: 0;
}

.review-nav-next {
  right: 0;
}

/* Review Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid rgba(212, 160, 23, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.4);
  transform: scale(1.2);
}

/* ============================================
   SECTION 10 — SOCIAL MEDIA
   ============================================ */
.as-social {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface), var(--dark-bg));
  padding-bottom: 80px;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.social-platform-card {
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: 24px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.social-platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.social-youtube::before {
  background: linear-gradient(90deg, transparent, #FF0000 50%, transparent);
}

.social-instagram::before {
  background: linear-gradient(90deg, #FFDC80, #F77737, #C13584, #833AB4, #5851DB);
}

.social-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.social-platform-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social-platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.youtube-icon {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.instagram-icon {
  background: linear-gradient(135deg, rgba(255, 220, 128, 0.1), rgba(131, 58, 180, 0.1));
  border: 1px solid rgba(193, 53, 132, 0.2);
}

.social-platform-name {
  font-family: var(--font-english-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 600;
}

.social-platform-handle {
  font-family: var(--font-english-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.social-platform-desc-hindi {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 6px;
  opacity: 0.85;
}

.social-platform-desc-en {
  font-family: var(--font-english-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.6;
}

/* Video Preview Grid */
.social-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.video-preview-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(30, 5, 5, 0.8), rgba(20, 3, 3, 0.9));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-preview-placeholder:hover {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.video-play-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #FF4444;
}

.video-placeholder-text {
  font-family: var(--font-english-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Gallery Grid */
.social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(20, 10, 30, 0.8), rgba(15, 5, 20, 0.9));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 53, 132, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-placeholder:hover {
  border-color: rgba(193, 53, 132, 0.3);
  box-shadow: 0 0 20px rgba(193, 53, 132, 0.1);
}

.gallery-placeholder-text {
  font-size: 1.5rem;
  opacity: 0.3;
}

/* Social CTA Buttons */
.social-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.youtube-cta {
  background: linear-gradient(135deg, #CC0000, #990000);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.2);
}

.youtube-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(204, 0, 0, 0.4);
}

.instagram-cta {
  background: linear-gradient(135deg, #C13584, #833AB4);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(193, 53, 132, 0.2);
}

.instagram-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(193, 53, 132, 0.4);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .as-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .review-card {
    min-width: calc(50% - 12px);
  }

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

  .page-hero-title {
    font-size: 2.5rem;
  }
}

/* ============================================
   RESPONSIVE — MOBILE LARGE
   ============================================ */
@media (max-width: 768px) {
  .page-hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-om {
    font-size: 2.5rem;
  }

  .page-hero-mandala {
    width: 300px;
    height: 300px;
  }

  .as-section {
    padding: 70px 0;
  }

  .as-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

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

  .as-card-img-placeholder {
    height: 140px;
  }

  .as-card-content {
    padding: 16px;
  }

  .as-card-hindi {
    font-size: 0.95rem;
  }

  .as-card-cta {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  /* Reviews */
  .reviews-carousel {
    padding: 0 40px;
  }

  .review-card {
    min-width: calc(100% - 0px);
    padding: 24px 20px;
  }

  .review-nav {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Social */
  .social-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-platform-card {
    padding: 24px;
  }

  .social-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .social-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .section-tagline {
    font-size: 0.92rem;
    margin-top: -20px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE SMALL
   ============================================ */
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 1.7rem;
  }

  .page-hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .as-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .as-grid-online {
    grid-template-columns: 1fr;
  }

  .as-card-img-placeholder {
    height: 120px;
  }

  .as-card-hindi {
    font-size: 0.88rem;
  }

  .as-card-english {
    font-size: 0.72rem;
  }

  .as-card-cta {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  .reviews-carousel {
    padding: 0 30px;
  }

  .review-text-hindi {
    font-size: 0.88rem;
  }

  .social-platform-card {
    padding: 20px;
  }

  .social-platform-name {
    font-size: 1.2rem;
  }

  .social-cta-btn {
    font-size: 0.88rem;
    padding: 14px 20px;
  }

  .as-sub-title {
    font-size: 1.3rem;
  }
}

/* ============================================
   SMOOTH SHIMMER ANIMATIONS FOR CARDS
   ============================================ */
@keyframes cardShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.as-card-img-placeholder {
  position: relative;
}

.as-card-img-placeholder .placeholder-label {
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.05), transparent);
  background-size: 200% 100%;
  animation: cardShimmer 4s ease-in-out infinite;
}

/* Subtle glow pulse for review stars */
@keyframes starPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4)); }
}

.review-stars {
  animation: starPulse 3s ease-in-out infinite;
}
