/* ===== SERVICES PAGE STYLES ===== */

/* Pricing Packages */
.pricing-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid var(--border-color);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.pricing-card-featured {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 0.5rem 3rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.pricing-header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: var(--bg-light);
}

.pricing-card-featured .pricing-header {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.pricing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.pricing-body {
  padding: 2rem;
  flex-grow: 1;
}

.pricing-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pricing-price {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: super;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.price-period {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-features-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--bg-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--success-color);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footer {
  padding: 2rem;
  background: var(--bg-light);
}

.pricing-note {
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-note i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* Counseling Areas Cards */
.counseling-area-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 2px solid var(--border-color);
  text-align: center;
  height: 100%;
}

.counseling-area-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-10px);
}

.area-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  transition: var(--transition-base);
}

.counseling-area-card:hover .area-icon {
  background: var(--gradient-primary);
  color: var(--bg-white);
  transform: scale(1.1);
}

.area-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.area-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Process Steps */
.process-step {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition-base);
  border: 2px solid var(--border-color);
}

.process-step:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.75rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ Accordion */
.accordion-item {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-base);
}

.accordion-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-white);
  padding: 1.25rem 1.5rem;
  border: none;
  font-size: 1.05rem;
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: var(--transition-base);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-light);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .pricing-body {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .pricing-footer {
    padding: 1.5rem;
  }
}
