/* Pricing Section CSS */
:root {
  --basic-header: #001f52;
  --economy-header: #ff6a00;
  --business-header: #001f52;
  --pro-header: #001f52;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.plan-card-header {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.plan-card.basic .plan-card-header {
  background-color: var(--basic-header);
}
.plan-card.economy .plan-card-header {
  background-color: var(--economy-header);
}
.plan-card.business .plan-card-header {
  background-color: var(--business-header);
}
.plan-card.pro .plan-card-header {
  background-color: var(--pro-header);
}

.feature-list {
  direction: rtl;
  text-align: right;
  padding-right: 0.3rem;
}

.feature-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.feature-list li i {
  font-size: 0.8rem;
  color: #11a949;
  margin-left: 7px;
  margin-right: 0;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.price .amount {
  font-size: 1.5rem;
  color: #ff5722;
  line-height: 1;
}

.price .unit {
  font-size: 1rem;
  color: #666;
}

.sms-cost {
  font-size: 0.75rem;
  color: #444;
  background: #f9f9f9;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px dashed #ccc;
}

.plan-btn {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem;
  border: none;
  border-radius: 0 0 16px 16px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
}

.plan-btn.basic {
  background: var(--basic-header);
  color: #fff;
}
.plan-btn.economy {
  background: linear-gradient(135deg, #ff6a00, #ff851a);
  color: #fff;
}
.plan-btn.business {
  background: var(--business-header);
  color: #fff;
}
.plan-btn.pro {
  background: var(--pro-header);
  color: #fff;
}

.plan-btn:hover {
  filter: brightness(0.95);
}

@media (max-width: 576px) {
  .plan-card-header {
    font-size: 1rem;
  }
  .feature-list li {
    font-size: 0.85rem;
  }
  .plan-btn {
    font-size: 0.88rem;
    padding: 0.75rem;
  }
  .price .amount {
    font-size: 1.7rem;
  }
  .price .unit {
    font-size: 0.9rem;
  }
}
