﻿.vds-section {
  padding: 10px 0px;
  background-color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.vds-container {
  max-width: 1350px;
  margin: auto;
}

.vds-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.vds-subtitle {
  color: #555;
  margin-bottom: 5px;
  font-size: 1rem;
}

.plans-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  margin-left: 30px;
  margin-right: 30px;
}

.plan-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.plan-card.dc-1 { background: #f0f8ff; }
.plan-card.dc-2 { background: #eef3ff; }
.plan-card.dc-3 { background: #f0fff5; }
.plan-card.dc-4 { background: #fff5f0; }
.plan-card.dc-5 { background: #fdf0ff; }
.plan-card.dc-6 { background: #fff0f5; }
.plan-card.dc-7 { background: #f5fff0; }

.plan-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.plan-icon {
  background: rgba(0, 0, 0, 0.05);
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  min-width: 80px;
  color: #222;
}

.plan-info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  margin: 10px 0;
}

.info-item {
  flex: 1 1 8%;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}

.info-item i {
  font-size: 24px;
  color: #333;
  margin-bottom: 8px;
}

.info-text {
  font-weight: 500;
  line-height: 1.3;
}

.info-text small {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 2px;
}

.plan-price {
  text-align: right;
  min-width: 130px;
}

.plan-price strong {
  font-size: 20px;
  color: #1a1a1a;
  display: block;
}

.plan-price small {
  font-size: 13px;
  color: #888;
}

.plan-button {
  display: inline-block;
  text-decoration: none;
  margin-top: 10px;
  border: none;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #fff;
}

.plan-card.dc-1 .plan-button { background: #1e90ff; }
.plan-card.dc-1 .plan-button:hover { background: #0066cc; }

.plan-card.dc-2 .plan-button { background: #2f3e9e; }
.plan-card.dc-2 .plan-button:hover { background: #1f2d80; }

.plan-card.dc-3 .plan-button { background: #28a745; }
.plan-card.dc-3 .plan-button:hover { background: #1e7e34; }

.plan-card.dc-4 .plan-button { background: #fd7e14; }
.plan-card.dc-4 .plan-button:hover { background: #e8590c; }

.plan-card.dc-5 .plan-button { background: #9c27b0; }
.plan-card.dc-5 .plan-button:hover { background: #7b1fa2; }

.plan-card.dc-6 .plan-button { background: #e91e63; }
.plan-card.dc-6 .plan-button:hover { background: #c2185b; }

.plan-card.dc-7 .plan-button { background: #4caf50; }
.plan-card.dc-7 .plan-button:hover { background: #388e3c; }

.sunucu-features {
  max-width: 1200px;
  margin: 1px auto;
  padding: 0 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.sunucu-features h2 {
  font-size: 26px;
  font-weight: bold;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.sunucu-features .subtitle {
  color: #5c5c77;
  font-size: 18px;
  margin-bottom: 40px;
}

.sunucu-features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sunucu-features .feature-box {
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: left;
}

.sunucu-features .feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #3e3e5e;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sunucu-features .feature-title i {
  font-size: 24px;
  color: #3e3e5e;
  margin-right: 10px;
}

.sunucu-features .feature-desc {
  font-size: 15px;
  color: #5c5c77;
  line-height: 1.5;
}


/* Mobil görünüm (max-width: 768px) */
@media (max-width: 768px) {
  .plan-card {
    flex-direction: column;
    align-items: stretch;
  }
  
  .plan-left {
    flex-direction: column;
    gap: 20px;
  }
  
  .plan-info {
    width: 100%;
    gap: 10px;
  }
  
  .info-item {
    flex: 0 0 calc(50% - 5px) !important;
    min-width: unset !important;
    margin-bottom: 10px;
  }
  
  .plan-price {
    text-align: center;
    margin-top: 20px;
    width: 100%;
  }
  .sunucu-features h2 {
    font-size: 22px;
  }

  .sunucu-features .feature-title {
    font-size: 18px;
  }

  .sunucu-features .feature-desc {
    font-size: 14px;
  }
}
