/* Kundli Pricing Section */
.pricing-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-family: var(--font-cinzel);
  color: var(--saffron);
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Pricing Card */
.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 149, 0, 0.2);
  border-color: var(--saffron);
}

/* Popular Card */
.pricing-card--popular {
  border-color: var(--saffron);
  box-shadow: 0 0 20px rgba(255, 149, 0, 0.15);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 149, 0, 0.3);
}

/* Badge */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-badge--best {
  background: var(--gold);
}

/* Card Header */
.pricing-card-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card-header h3 {
  font-family: var(--font-cinzel);
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--saffron);
}

/* Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-features li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 149, 0, 0.05);
}

/* WhatsApp Button */
.pricing-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.pricing-btn:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Notice Box */
.pricing-notice {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 40px;
}

.pricing-notice h3 {
  color: var(--saffron);
  font-family: var(--font-cinzel);
  margin-bottom: 12px;
}

.pricing-notice ol {
  padding-left: 20px;
  color: var(--text-secondary);
  line-height: 2;
}

/* Astrologer Profile */
.pricing-astrologer {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 30px;
  margin-top: 20px;
  text-align: center;
}

.pricing-astrologer h3 {
  color: var(--saffron);
  font-family: var(--font-cinzel);
  margin-bottom: 8px;
}

.pricing-astrologer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--popular {
    transform: none;
  }
  .pricing-card--popular:hover {
    transform: translateY(-6px);
  }
}
