/* ========================================
   PRICING PAGE CSS FIXES
   ======================================== */

/* ===== REMOVE HOVER MOVEMENT EFFECTS ===== */

/* Remove translateY effect on hero badge */
.pricing-hero-badge:hover {
  transform: none !important;
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.15) !important;
}

/* Remove translateY effect on hero buttons */
.pricing-hero-cta .btn-primary-hero:hover {
  transform: none !important;
  box-shadow: 0 12px 35px rgba(229, 84, 0, 0.4) !important;
}

.pricing-hero-cta .btn-secondary-hero:hover {
  transform: none !important;
  box-shadow: 0 8px 25px rgba(229, 84, 0, 0.3) !important;
}

/* Remove translateY and scale effects on pricing cards */
.pricing-card-modern:hover {
  transform: none !important;
  box-shadow: 0 8px 30px rgba(229, 84, 0, 0.12) !important;
}

.pricing-card-modern.featured:hover {
  transform: none !important;
  box-shadow: 0 12px 40px rgba(229, 84, 0, 0.25) !important;
}

/* Keep only icon scale and rotation */
.pricing-card-modern:hover .pricing-icon-modern {
  transform: scale(1.1) rotate(-5deg) !important;
  box-shadow: 0 4px 10px rgba(229, 84, 0, 0.12) !important;
}

/* Remove translateY effect on CTA buttons */
.pricing-cta-modern:hover {
  transform: none !important;
  box-shadow: 0 12px 30px rgba(229, 84, 0, 0.4) !important;
}

/* Remove translateY effect on trust badge items */
.trust-badge-item:hover {
  transform: none !important;
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03) !important;
}

/* Remove translateY effect on why plan cards */
.why-plan-card:hover {
  transform: none !important;
  box-shadow: 0 2px 8px rgba(229, 84, 0, 0.04) !important;
}

/* Keep only icon scale and rotation for why plan cards */
.why-plan-card:hover .why-plan-icon {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0)) !important;
  transform: scale(1.1) rotate(5deg) !important;
}

/* Remove translateY effect on testimonial cards */
.testimonials .testimonial-card:hover {
  transform: none !important;
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03) !important;
}

.testimonials .testimonial-item.featured .testimonial-card:hover {
  transform: none !important;
  box-shadow: 0 6px 20px rgba(229, 84, 0, 0.35) !important;
}

/* Remove translateY effect on included feature cards */
.included-feature-card:hover {
  transform: none !important;
  box-shadow: 0 2px 6px rgba(229, 84, 0, 0.03) !important;
}

/* Keep only scale effect for feature number */
.included-feature-card:hover .feature-number {
  color: rgba(229, 84, 0, 0.15) !important;
  transform: scale(1.1) !important;
}

/* Keep only scale effect for feature icon circle */
.included-feature-card:hover .feature-icon-circle {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 0)) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 15px rgba(229, 84, 0, 0.3) !important;
}

/* Remove translateY effect on consultation info cards */
.consultation-info .info-card:hover {
  transform: none !important;
  box-shadow: 0 8px 30px rgba(229, 84, 0, 0.15) !important;
}

/* Keep only scale effect for method icon */
.consultation-info .method-icon:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 18px rgba(229, 84, 0, 0.35) !important;
}

/* Responsive - Mobile view fixes */
@media (max-width: 991px) {
  .pricing-card-modern.featured:hover {
    transform: none !important;
  }
}


/* ========================================
   PRICING FAQ — 2-column accordion
   ======================================== */
.pricing-faq-section {
  padding: 90px 0;
  background: #f9f9fb;
}

/* Header */
.pfaq-header {
  text-align: center;
  margin-bottom: 52px;
}

.pfaq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e55400;
  background: rgba(229, 84, 0, 0.08);
  border: 1px solid rgba(229, 84, 0, 0.18);
  border-radius: 50px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.pfaq-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.pfaq-title-grad {
  background: linear-gradient(135deg, #e55400, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pfaq-header-sub {
  font-size: 0.97rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

.pfaq-header-sub a {
  color: #e55400;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 84, 0, 0.3);
  transition: border-color 0.2s;
}

.pfaq-header-sub a:hover {
  border-color: #e55400;
}

/* 2-column grid */
.pfaq-cols-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin-bottom: 44px;
}

.pfaq-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Item */
.pfaq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid #efefef;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pfaq-item:hover {
  border-color: rgba(229, 84, 0, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pfaq-item.active {
  border-color: rgba(229, 84, 0, 0.28);
  box-shadow: 0 8px 32px rgba(229, 84, 0, 0.09);
}

/* Question button */
.pfaq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

/* Icon wrap */
.pfaq-q-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229, 84, 0, 0.08);
  border: 1px solid rgba(229, 84, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e55400;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pfaq-item.active .pfaq-q-icon-wrap {
  background: linear-gradient(135deg, #e55400, #FF8C00);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(229, 84, 0, 0.3);
}

.pfaq-q-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.pfaq-item.active .pfaq-q-text {
  color: #e55400;
}

/* Chevron */
.pfaq-q-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #9ca3af;
  flex-shrink: 0;
  background: #fafafa;
  transition: all 0.3s cubic-bezier(.22, .68, 0, 1.2);
}

.pfaq-item.active .pfaq-q-toggle {
  background: linear-gradient(135deg, #e55400, #FF8C00);
  border-color: transparent;
  color: #fff;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(229, 84, 0, 0.28);
}

/* Answer */
.pfaq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.22, .68, 0, 1.1), padding 0.3s ease;
  padding: 0 20px 0 70px;
}

.pfaq-item.active .pfaq-answer {
  max-height: 300px;
  padding: 0 20px 18px 70px;
}

.pfaq-answer p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

/* Bottom CTA */
.pfaq-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pfaq-bottom-cta p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.pfaq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #e55400, #FF8C00);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(229, 84, 0, 0.28);
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.pfaq-cta-btn:hover {
  color: #ffffff;
  opacity: 0.9;
  box-shadow: 0 10px 32px rgba(229, 84, 0, 0.38);
}

.pfaq-cta-btn i {
  transition: transform 0.3s ease;
}

.pfaq-cta-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .pfaq-cols-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-faq-section {
    padding: 70px 0;
  }
}

@media (max-width: 576px) {
  .pfaq-title {
    font-size: 1.8rem;
  }

  .pfaq-question {
    padding: 15px 16px;
    gap: 12px;
  }

  .pfaq-item.active .pfaq-answer {
    padding: 0 16px 16px 64px;
  }

  .pfaq-bottom-cta {
    flex-direction: column;
    gap: 10px;
  }
}


/* ========================================
   PRICING CARDS — EQUAL HEIGHT FIX (Issue 11)
   Cards stretch to equal height; CTA button always at bottom.
   ======================================== */
.pricing-cards-wrapper {
  display: flex !important;
  gap: 24px;
  align-items: stretch !important;
}

.pricing-card-modern {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  flex: 1;
}

/* Feature list grows to fill available space, pushing CTA to bottom */
.pricing-card-modern .pricing-features-list,
.pricing-card-modern ul {
  flex-grow: 1 !important;
}

/* CTA button always at bottom */
.pricing-card-modern .pricing-cta-modern,
.pricing-card-modern .card-cta,
.pricing-card-modern>a:last-child,
.pricing-card-modern>button:last-child {
  margin-top: auto !important;
}

@media (max-width: 991px) {
  .pricing-cards-wrapper {
    flex-wrap: wrap !important;
  }

  .pricing-card-modern {
    flex: 1 1 calc(50% - 12px) !important;
    min-width: 280px;
  }
}

@media (max-width: 640px) {
  .pricing-card-modern {
    flex: 1 1 100% !important;
  }
}