/* ============================================
   SERVICES PAGE — Premium Styles
   Acharya Pandit Shubham Sharma Ji
   ============================================ */

/* ==================== SERVICES PAGE HERO ==================== */
.svc-page-hero {
  position: relative;
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

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

.svc-hero-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--saffron) 50%, var(--gold) 80%, transparent);
  z-index: 2;
}

.svc-hero-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  z-index: 2;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.svc-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;
}

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

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

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

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

.svc-hero-desc-en {
  font-family: var(--font-english-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ==================== SERVICES DETAIL SECTION ==================== */
.svc-detail-section {
  padding: 80px 0 60px;
  position: relative;
  background: var(--dark-bg);
}


/* ==================== SERVICE CARD ==================== */
.svc-card {
  position: relative;
  margin-bottom: 60px;
  border-radius: 24px;
  overflow: visible;
}

/* Outer glow on hover */
.svc-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--gold), var(--saffron), var(--gold));
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease;
  filter: blur(1px);
}

.svc-card:hover .svc-card-glow {
  opacity: 1;
}

/* Inner card */
.svc-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  background: linear-gradient(145deg, var(--dark-card), var(--dark-surface));
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-card:hover .svc-card-inner {
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 160, 23, 0.08);
  transform: translateY(-4px);
}

/* Reverse layout for alternating cards */
.svc-card-reverse {
  grid-template-columns: 1fr 380px;
}

.svc-card-reverse .svc-card-image {
  order: 2;
}

.svc-card-reverse .svc-card-content {
  order: 1;
}


/* ==================== CARD IMAGE AREA ==================== */
.svc-card-image {
  position: relative;
  overflow: hidden;
}

.svc-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(145deg, rgba(74, 14, 14, 0.6), rgba(42, 15, 15, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  transition: all 0.5s ease;
}

/* Decorative temple arch pattern on placeholder */
.svc-img-placeholder::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: 16px;
}

/* Corner ornaments */
.svc-img-placeholder::after {
  content: '⊹';
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.8rem;
  color: rgba(212, 160, 23, 0.2);
}

.svc-card:hover .svc-img-placeholder {
  background: linear-gradient(145deg, rgba(74, 14, 14, 0.7), rgba(42, 15, 15, 0.9));
}

.svc-img-actual {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.svc-card:hover .svc-img-actual {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

.svc-img-icon {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(212, 160, 23, 0.3));
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-img-icon {
  transform: scale(1.15) rotate(5deg);
}

.svc-img-text {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.svc-img-text-en {
  font-family: var(--font-english-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.3;
}

/* Badge */
.svc-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(255, 111, 0, 0.9), rgba(212, 160, 23, 0.9));
  color: var(--white);
  font-family: var(--font-hindi);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.svc-card-reverse .svc-card-badge {
  right: auto;
  left: 20px;
}


/* ==================== CARD CONTENT AREA ==================== */
.svc-card-content {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header with number */
.svc-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.svc-card-number {
  font-family: var(--font-english-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 160, 23, 0.1);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  transition: color 0.4s ease;
}

.svc-card:hover .svc-card-number {
  color: rgba(212, 160, 23, 0.2);
}

.svc-card-titles {
  flex: 1;
}

.svc-card-hindi {
  font-family: var(--font-hindi);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  margin-bottom: 4px;
  transition: text-shadow 0.4s ease;
}

.svc-card:hover .svc-card-hindi {
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.3);
}

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

/* Divider */
.svc-card-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.svc-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.3), transparent);
}

.svc-card-reverse .svc-divider-line:first-child {
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3));
}

.svc-divider-om {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.5;
}

/* Descriptions */
.svc-card-desc-hi {
  font-family: var(--font-hindi);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 12px;
  opacity: 0.9;
}

.svc-card-desc-en {
  font-family: var(--font-english-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  padding-left: 16px;
  border-left: 2px solid rgba(212, 160, 23, 0.2);
}


/* ==================== BENEFITS ==================== */
.svc-benefits {
  margin-bottom: 28px;
}

.svc-benefits-title {
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 600;
  color: var(--saffron-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-icon {
  font-size: 1.1rem;
}

.svc-benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.svc-benefits-list li {
  font-family: var(--font-hindi);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(212, 160, 23, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(212, 160, 23, 0.06);
  transition: all 0.3s ease;
}

.svc-benefits-list li:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.15);
  transform: translateX(4px);
}

.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 6px rgba(212, 160, 23, 0.4);
}

.benefit-en {
  font-family: var(--font-english-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}


/* ==================== CARD CTA BUTTONS ==================== */
.svc-card-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.svc-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.svc-btn:hover::before {
  width: 300px;
  height: 300px;
}

.svc-btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--divine-orange));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 111, 0, 0.25);
}

.svc-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 111, 0, 0.4);
}

.svc-btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(212, 160, 23, 0.4);
}

.svc-btn-outline:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.15);
}


/* ==================== CONTACT CTA STRIP ==================== */
.svc-contact-strip {
  padding: 70px 0;
  position: relative;
  background: linear-gradient(145deg, var(--maroon-dark), var(--dark-surface));
  overflow: hidden;
}

.svc-contact-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--saffron) 50%, var(--gold) 70%, transparent);
}

.svc-contact-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

/* Decorative background element */
.svc-strip-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.svc-strip-hindi {
  font-family: var(--font-hindi);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(212, 160, 23, 0.2);
}

.svc-strip-english {
  font-family: var(--font-english-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.svc-strip-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.svc-btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.25);
}

.svc-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.4);
}

.svc-btn-call-strip {
  background: linear-gradient(135deg, var(--saffron), var(--divine-orange));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 111, 0, 0.25);
}

.svc-btn-call-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 111, 0, 0.4);
}

.svc-btn-contact-strip {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid rgba(212, 160, 23, 0.4);
}

.svc-btn-contact-strip:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}


/* ============================================
   RESPONSIVE — Services Page
   ============================================ */

@media (max-width: 1024px) {
  .svc-card-inner {
    grid-template-columns: 320px 1fr;
  }

  .svc-card-reverse {
    grid-template-columns: 1fr 320px;
  }

  .svc-card-content {
    padding: 32px 30px;
  }

  .svc-benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svc-page-hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

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

  .svc-hero-om {
    font-size: 2.2rem;
  }

  .svc-card-inner,
  .svc-card-reverse {
    grid-template-columns: 1fr;
  }

  .svc-card-reverse .svc-card-image {
    order: 0;
  }

  .svc-card-reverse .svc-card-content {
    order: 0;
  }

  .svc-card-reverse .svc-card-badge {
    left: auto;
    right: 20px;
  }

  .svc-img-placeholder {
    min-height: 260px;
  }

  .svc-card-content {
    padding: 28px 24px;
  }

  .svc-card-header {
    gap: 12px;
  }

  .svc-card-number {
    font-size: 2.2rem;
  }

  .svc-card-hindi {
    font-size: 1.4rem;
  }

  .svc-card-cta {
    flex-direction: column;
  }

  .svc-btn {
    width: 100%;
  }

  .svc-strip-hindi {
    font-size: 1.5rem;
  }

  .svc-strip-buttons {
    flex-direction: column;
    align-items: center;
  }

  .svc-strip-buttons .svc-btn {
    width: 100%;
    max-width: 320px;
  }

  .svc-card {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .svc-hero-title {
    font-size: 1.6rem;
  }

  .svc-card-number {
    font-size: 1.8rem;
  }

  .svc-card-hindi {
    font-size: 1.25rem;
  }

  .svc-card-desc-hi {
    font-size: 0.92rem;
  }

  .svc-card-desc-en {
    font-size: 0.82rem;
  }

  .svc-benefits-list li {
    font-size: 0.82rem;
    padding: 6px 10px;
  }

  .svc-img-placeholder {
    min-height: 200px;
  }

  .svc-img-icon {
    font-size: 3rem;
  }
}
