﻿/* Tabs Stilleri */
.vds-tabs {
  margin-bottom: 40px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.selected-tick {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tab-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative; /* Bunu ekliyoruz */
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 280px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tab-btn.active {
  background: #2e2e50;
  border-color: #2e2e50;
  color: #fff;
  box-shadow: 0 8px 25px rgba(46, 46, 80, 0.2);
}

.tab-btn.active .selected-tick {
  opacity: 1;
  transform: scale(1);
}

.tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(46, 46, 80, 0.1);
  color: #2e2e50;
  transition: all 0.3s ease;
}

.tab-btn.active .tab-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.tab-text {
  flex: 1;
}

.tab-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 3px;
}

.tab-subtitle {
  font-size: 13px;
  opacity: 0.8;
}

.tab-btn.active .tab-subtitle {
  opacity: 0.9;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-btn {
    max-width: 100%;
  }
}

.onellyy-services {
  padding: 40px 20px;
  background: #f5fafa;
  font-family: 'Inter', sans-serif;
}

.onellyy-container {
  max-width: 1200px;
  margin: auto;
}

.onellyy-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.onellyy-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.onellyy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3'lü grid yapısı */
  gap: 20px;
  align-items: flex-start; /* Bu satırı ekleyin */
}


.onellyy-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.onellyy-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.onellyy-card-header img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.onellyy-name {
  flex: 1;
  font-weight: 600;
}

.onellyy-badge {
  background: #05603a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.onellyy-toggle {
  background: #002b45;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
}

.onellyy-card-content {
  display: none;
  margin-top: 12px;
}

.onellyy-subitem {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vds-section {
  padding: 60px 20px;
  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: 40px;
  font-size: 1rem;
}

.vds-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.vds-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
}

.vds-card:hover {
  transform: translateY(-5px);
}

.vds-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}


.vds-card-popular {
  background: #fff;
  border: 3px solid #0d6efd; /* mavi parlak çerçeve */
  border-radius: 10px;
  padding: 20px;
  width: 260px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
  transform: scale(1.05);
}

.vds-card-popular:hover {
  transform: scale(1.08);
}

/* Popüler etiketi */
.vds-card-popular::before {
  content: "COM.TR HEDIYE!";
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #0d6efd;
  color: white;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.vds-card-popular h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}



.vds-specs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.vds-specs div {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
}

.vds-specs i {
  font-size: 1.4rem;
  color: #2e2e50;
  margin-bottom: 5px;
}

.vds-price {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.vds-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
}

.vds-btn {
  display: block;
  width: 100%;
  background-color: #2e2e50;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
}

.vds-btnn {
  display: block;
  width: 100%;
  background-color: #56aaff;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 15px;
}

.vds-features {
  list-style: none;
  padding-left: 0;
  font-size: 0.85rem;
  color: #2e2e2e;
}

.vds-features li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}

.vds-features li::before {
  content: "✔";
  color: #2ecc71;
  position: absolute;
  left: 0;
  top: 0;
}
.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;
}

@media (max-width: 768px) {
  .sunucu-features h2 {
    font-size: 22px;
  }

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

  .sunucu-features .feature-desc {
    font-size: 14px;
  }
  .onellyy-grid {
    grid-template-columns: 1fr; /* Tek sütun */
  }
}
