/* Pricing Section Styles */
.pricing-section {
  margin: 70px auto;
  padding: 40px 0;
  background-color: var(--light-color);
}

.pricing-section-home {
    margin-top: 2px;
  }

.pricing-section-private-home {
    margin-top: -70px;
  }

.section-title {
  text-align: center;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 2.2rem;
  background: var(--callout-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 20px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(29, 54, 97, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
}

.pricing-card.featured:hover {
  border-color: var(--secondary-color);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--red-gradient);
  color: white;
  padding: 5px 30px;
  font-weight: bold;
  transform: rotate(45deg);
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-header {
  padding: 30px;
  text-align: center;
  background: rgba(29, 54, 97, 0.03);
  border-bottom: 1px solid rgba(29, 54, 97, 0.1);
}

.plan-name {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  color: var(--secondary-color);
  font-weight: bold;
}

.amount {
  font-size: 2.5rem;
}

.period {
  font-size: 1rem;
  color: var(--text-light);
}

.card-body {
  padding: 30px;
}

.features-private {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features li {
  padding: 10px 0;
  color: var(--text-color);
  border-bottom: 1px dashed rgba(108, 117, 125, 0.2);
  display: flex;
  align-items: center;
}

.feature-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.features .silik {
  color: rgb(175, 175, 175);
}

.features li:last-child {
  border-bottom: none;
}

.features i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.features .fa-check {
  color: var(--accent-color);
}

.features .fa-times {
  color: var(--accent-red);
}

.card-footer {
  padding: 20px 30px;
  text-align: center;
  background: rgba(29, 54, 97, 0.03);
  border-top: 1px solid rgba(29, 54, 97, 0.1);
}

.btn-purchase {
  background: var(--blue-gradient);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.pricing-card:hover .btn-purchase {
  background: var(--red-gradient);
  transform: scale(1.05);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
  .pricing-section-mobil {
    margin-top: 10px;
  }
  
  .pricing-section-private-mobil {
    margin-top: -45px;
  }

  .pricing-section {
    margin: 140px auto;
    margin-bottom: 10px;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  
}

@media (max-width: 576px) {
  .pricing-section-mobil {
    margin-top: 2px;
  }
  .pricing-section-private-mobil {
    margin-top: -65px;
  }
  .section-title {
    font-size: 1.8rem;
  }

  .card-header,
  .card-body,
  .card-footer {
    padding: 20px;
  }
}
