/* Hesaplayıcı Kartı */
.pricing-calculator {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 40px 30px;
}

.dark-card {
  background-color: #0f1729;
  border: 1px solid #1e2a4a;
}

/* Yatay Düzen */
.pricing-horizontal-layout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.pricing-left-section,
.pricing-middle-section,
.pricing-right-section {
  padding: 0 15px;
  flex: 1;
  min-width: 250px;
}

.pricing-left-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Plan Başlığı */
.plan-header {
  margin-bottom: 20px;
}

.plan-badge-image {
  height: 60px;
  width: auto;
  margin-bottom: 10px;
  border-radius: 16px;
}

.pricing-one__tagline {
  color: #ff5722;
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

/* Açıklama */
.pricing-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

/* Fiyat Gösterimi */
.price-display {
  position: relative;
  margin-bottom: 20px;
}

.original-price {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  text-decoration: line-through;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-one__price {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.pricing-one__currency {
  font-size: 20px;
  font-weight: 600;
  vertical-align: super;
}

.pricing-one__period {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 5px;
}

/* Hesaplayıcı Başlık */
.calculator-title,
.features-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 20px;
  text-align: center;
}


/* Hesaplayıcı Öğeleri */
.pricing-calculator__items {
  margin: 0;
  padding: 0;
}

.pricing-calculator__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-calculator__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.pricing-calculator__item-info {
  text-align: left;
}

.pricing-calculator__item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
  cursor: help;
}

.pricing-calculator__item-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Sayaç */
.pricing-calculator__counter {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px;
}

.pricing-calculator__counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-calculator__counter-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.pricing-calculator__counter-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pricing-calculator__counter-value {
  margin: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  min-width: 25px;
  text-align: center;
}

/* Buton */
.pricing-one__btn-box {
  text-align: center;
  margin: 20px 0 0;
}

.pricing-one__btn {
  background-color: #ff5722;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.pricing-one__btn:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
}

/* Özellikler Kompakt Liste */
.features-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.feature-item {
  position: relative;
}

.feature-content {
  display: flex;
  align-items: center;
}

.feature-content:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #ff5722;
  border-radius: 50%;
  margin-right: 8px;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  position: relative;
  cursor: help;
    text-align: center;
}

.feature-text i {
  font-size: 11px;
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.5);
}

/* Tooltip */
.feature-tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 220px;
  background-color: #fff;
  color: #333;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 1.5;
  z-index: 10;
  margin-bottom: 10px;
  pointer-events: none;
}

.feature-tooltip:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 20px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Daha Fazla Göster Butonu */
.show-more-btn {
  background: none;
  border: none;
  color: #ff5722;
  font-size: 15px;
  cursor: pointer;
  margin-top: 15px;
  text-decoration: underline;
  padding: 0;
  align-items: center;
  text-align: center;
}

.show-more-btn:hover {
  color: #e64a19;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
  .pricing-horizontal-layout {
    flex-direction: column;
  }
  
  .pricing-left-section,
  .pricing-middle-section,
  .pricing-right-section {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .pricing-right-section {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .pricing-calculator {
    padding: 30px 15px;
  }
}