/* ========================================
   Pricing Page Styles - Housing Members
   ======================================== */

/* Pricing Cards Section */
.pricing-cards-section {
  padding: 50px 0;
}

.pricing-badge {
  display: inline-block;
  background: #CBCD30;
  color: #073B3A;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  color: #030E0F;
  line-height: 1.3;
}

.pricing-title .highlight {
  position: relative;
  display: inline-block;
}

.pricing-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #CBCD30;
  z-index: -1;
  border-radius: 4px;
}

/* Pricing Cards Wrapper */
.pricing-cards-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

/* Individual Pricing Card */
.pricing-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(7, 59, 58, 0.1);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-top: 4px solid #CBCD30;
}

.pricing-card .plan-name {
  font-size: 20px;
  font-weight: 700;
  color: #030E0F;
  margin-bottom: 8px;
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Plan Price */
.pricing-card .plan-price {
  margin-bottom: 20px;
}

.pricing-card .plan-price .currency {
  font-size: 20px;
  font-weight: 600;
  color: #030E0F;
  vertical-align: top;
}

.pricing-card .plan-price .amount {
  font-size: 48px;
  font-weight: 700;
  color: #030E0F;
  line-height: 1;
}

.pricing-card .plan-price .period {
  font-size: 16px;
  color: #6B7280;
}

/* Get Started Button */
.pricing-card .get-started-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 28px;
}

.pricing-card .get-started-btn.outline {
  background: #073B3A;
  color: #fff;
  border: 2px solid #073B3A;
}

.pricing-card .get-started-btn.outline:hover {
  background: transparent;
  color: #073B3A;
}

.pricing-card .get-started-btn.filled {
  background: #CBCD30;
  color: #073B3A;
  border: 2px solid #CBCD30;
}

.pricing-card .get-started-btn.filled:hover {
  background: #073B3A;
  color: #fff;
  border-color: #073B3A;
}

/* Features List */
.pricing-card .features-title {
  font-size: 14px;
  font-weight: 600;
  color: #030E0F;
  margin-bottom: 16px;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card .features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

.pricing-card .features-list li:last-child {
  margin-bottom: 0;
}

.pricing-card .features-list li .check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #CBCD30;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .features-list li .check-icon svg {
  width: 12px;
  height: 12px;
}

/* ========================================
   Trusted By Section
   ======================================== */
.trusted-by-section {
  padding: 20px 0;
}

.trusted-by-text {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #9CA3AF;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trusted-logo {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-size: 20px;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trusted-logo:hover {
  opacity: 1;
}

.trusted-logo svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-new-section {
  padding: 80px 0;
}

.faq-new-title {
  font-size: 42px;
  font-weight: 700;
  color: #030E0F;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 50px;
}

.faq-new-title .highlight {
  position: relative;
  display: inline-block;
}

.faq-new-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #CBCD30;
  z-index: -1;
  border-radius: 4px;
}

.faq-list-new {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item-new {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  border-color: #CBCD30;
}

.faq-item-new .faq-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item-new .faq-header:hover {
  background: #f9fafb;
}

.faq-item-new .faq-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #CBCD30;
  color: #073B3A;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.faq-item-new .faq-question {
  font-size: 16px;
  font-weight: 500;
  color: #030E0F;
  flex: 1;
  margin: 0;
}

.faq-item-new .faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: transform 0.3s ease;
}

.faq-item-new.active .faq-toggle {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-item-new .faq-answer {
  padding: 0 24px 20px 72px;
  display: none;
}

.faq-item-new.active .faq-answer {
  display: block;
}

.faq-item-new .faq-answer p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.7;
  margin: 0;
}

/* FAQ Contact Text */
.faq-contact-text {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #6B7280;
}

.faq-contact-text a {
  color: #073B3A;
  text-decoration: underline;
  font-weight: 500;
}

.faq-contact-text a:hover {
  color: #CBCD30;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
  .pricing-title,
  .faq-new-title {
    font-size: 32px;
  }
  
  .pricing-card {
    max-width: 100%;
  }
  
  .trusted-logos {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .pricing-cards-section {
    padding: 40px 0;
  }
  
  .faq-new-section {
    padding: 60px 0;
  }
  
  .pricing-title,
  .faq-new-title {
    font-size: 28px;
  }
  
  .pricing-card .plan-price .amount {
    font-size: 40px;
  }
  
  .faq-item-new .faq-answer {
    padding: 0 16px 16px 56px;
  }
}
