/*TABLO
  /* ---------- Keyframes (kullanılan) ---------- */
  @keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(102, 128, 255, 0.25); }
    50% { box-shadow: 0 12px 40px rgba(102, 128, 255, 0.4); }
  }

  /* ---------- Reset / Global ---------- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* ---------- Temel layout / container ---------- */
  .sunucu-barindirma-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    padding: 40px 20px;
    min-height: 100vh;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* ---------- Server Table / Toggle / Switch ---------- */
  .server-table {
    display: grid;
    grid-template-columns: 280px repeat(4, 1fr);
    gap: 0;
    background: rgba(225, 239, 255, .6);
    border-radius: 20px;
    overflow: hidden;
    font-family: "Segoe UI", sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 102, 219, .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(206, 220, 233, .5);
    animation: fadeInUp 0.8s ease-out;
  }

  .server-table .table-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 700px;
    position: relative;
  }

  /* İlk kolon (özellik listesi) özel stil */
  .server-table .table-col:first-child {
    background: linear-gradient(135deg, #0b1016 0%, rgba(9, 80, 161, .89) 100%);
    color: white;
    border-right: 2px solid rgba(102, 128, 255, 0.3);
  }

  .server-table .table-col:first-child .head {
    background: rgba(24, 104, 250, .24);
    padding: 25px 20px;
    margin: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .server-table .table-col:first-child .title {
    background: rgba(102, 128, 255, 0.8);
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(206, 220, 233, .3);
  }

  .server-table .table-col:first-child ul li {
    background: rgba(225, 239, 255, .1);
    color: rgba(225, 239, 255, .95);
    border-top: 1px solid rgba(206, 220, 233, .2);
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  /* fiyat toggle görünümü (AYLIK / YILLIK) */
  .banner-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(24, 104, 250, .24);
    backdrop-filter: blur(15px);
    font-weight: 700;
    color: white;
    gap: 15px;
    margin: 0 auto 15px;
    border: 1px solid rgba(102, 128, 255, 0.3);
    box-shadow: 0 8px 25px rgba(102, 128, 255, 0.2);
  }

  /* switch (kısmi, checkbox tabanlı) */
  .switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 28px;
    background: linear-gradient(135deg, #6680ff, #5fb3fb);
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.4);
  }

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(206, 220, 233, .3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 28px;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, white, #f8fafc);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  input:checked + .slider {
    background: linear-gradient(135deg, rgba(0, 102, 219, .84), rgba(9, 80, 161, .89));
  }

  input:checked + .slider:before {
    transform: translateX(27px);
    background: linear-gradient(135deg, white, #e1efff);
    box-shadow: 0 4px 15px rgba(102, 128, 255, 0.4);
  }

  /* ---------- Table Column Card (.table-col) - Paket Kolonları ---------- */
  .table-col:not(:first-child) {
    background: linear-gradient(135deg, white 0%, rgba(225, 239, 255, .8) 100%);
    border-radius: 0;
    box-shadow: inset 0 0 0 1px rgba(206, 220, 233, .3);
    padding: 0;
    color: #0b1016;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .table-col:not(:first-child):hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 128, 255, 0.3);
    z-index: 10;
    border-radius: 20px;
  }

  .table-col:not(:first-child):hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 128, 255, 0.05), rgba(95, 178, 251, 0.1));
    z-index: 1;
  }

  /* head (başlık) - Paket kolonları */
  .table-col:not(:first-child) .head {
    background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    margin: 0;
    padding: 20px 15px;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 128, 255, 0.3);
  }

  .table-col:not(:first-child) .head span {
    font-weight: 800;
    font-size: 14px;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .table-col:not(:first-child) .head li {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 8px;
    text-transform: none;
  }

  /* title / fiyat kutusu */
  .table-col:not(:first-child) .title {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 102, 219, .84), rgba(9, 80, 161, .89));
    color: white;
    padding: 20px 10px;
    margin: 0;
    border-radius: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(206, 220, 233, .3);
  }

  /* Fiyat elementlerinin başlangıç durumu */
  .title.price-first {
    display: flex;
    background: linear-gradient(135deg, rgba(0, 102, 219, .84), rgba(9, 80, 161, .89));
  }

  .title.price-second {
    display: none;
    background: linear-gradient(135deg, #0b1016, rgba(9, 80, 161, .89));
    box-shadow: 0 6px 20px rgba(11, 16, 22, 0.7);
  }

  /* liste (özellikler) - Paket kolonları */
  .table-col:not(:first-child) ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .table-col:not(:first-child) ul li {
    padding: 18px 15px;
    border-top: 1px solid rgba(206, 220, 233, .3);
    background: linear-gradient(135deg, rgba(225, 239, 255, .6) 0%, rgba(225, 239, 255, .8) 100%);
    font-size: 14px;
    font-weight: 600;
    color: #0b1016;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 55px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .table-col:not(:first-child) ul li:hover {
    background: linear-gradient(135deg, rgba(102, 128, 255, 0.1), rgba(95, 178, 251, 0.15));
    transform: translateX(3px);
  }

  .table-col:not(:first-child) ul li:last-child {
    border-bottom: none;
  }

  .table-col:not(:first-child) ul li b {
    font-weight: 800;
    color: #6680ff;
    font-size: 0.9rem;
  }

  /* ---------- Hover tooltip (hover-pop) ---------- */
  .hover-pop {
    position: relative;
    cursor: help;
    margin-left: 8px;
    display: inline-block;
  }

  .hover-pop i {
    color: #6680ff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .hover-pop:hover i {
    color: #5fb3fb;
    transform: scale(1.4) rotate(10deg);
  }

  .hover-pop::after {
    content: attr(data-content);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0b1016, rgba(9, 80, 161, .89));
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 200px;
    white-space: normal;
    line-height: 1.4;
  }

  .hover-pop::before {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #0b1016;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .hover-pop:hover::after,
  .hover-pop:hover::before {
    opacity: 1;
    visibility: visible;
  }

  /* ---------- CTA / butonlar ---------- */
  .col-btn {
    margin: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(102, 128, 255, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 140px;
    border: 2px solid transparent;
  }

  .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .primary-btn:hover::before {
    left: 100%;
  }

  .primary-btn:hover {
    background: linear-gradient(135deg, rgba(0, 102, 219, .84), rgba(9, 80, 161, .89));
    box-shadow: 0 15px 45px rgba(102, 128, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .primary-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 128, 255, 0.4);
  }

  /* Teklif al butonu için farklı stil */
  .primary-btn:contains("TEKLİF AL"),
  a[href*="21U"]:contains("TEKLİF AL"),
  a[href*="42U"] {
    background: linear-gradient(135deg, rgba(95, 178, 251, .682) 0%, rgba(0, 102, 219, .84) 100%);
    border: 2px solid rgba(95, 178, 251, .4);
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 1200px) {
    .server-table {
      grid-template-columns: 250px repeat(4, 1fr);
      max-width: 100%;
    }
    
    .container {
      max-width: 100%;
      padding: 0 10px;
    }
  }

  @media (max-width: 992px) {
    .server-table {
      grid-template-columns: 220px repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      gap: 2px;
    }
    
    .server-table .table-col:first-child {
      grid-column: 1;
      grid-row: 1 / -1;
    }
    
    .table-col:not(:first-child) {
      min-height: 600px;
    }
  }

  @media (max-width: 768px) {
    .sunucu-barindirma-page {
      padding: 20px 10px;
    }
    
    .server-table {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto;
      gap: 20px;
      border-radius: 15px;
    }

    .server-table .table-col:first-child {
      grid-column: 1;
      grid-row: 1;
      border-radius: 15px;
      margin-bottom: 10px;
    }
    
    .table-col {
      border-radius: 15px !important;
      min-height: auto !important;
    }

    .table-col:not(:first-child) .title {
      font-size: 22px;
      padding: 15px;
    }

    .banner-switch {
      padding: 10px 18px;
      font-size: 14px;
      gap: 12px;
    }
    
    .switch {
      width: 50px;
      height: 24px;
    }
    
    .slider:before {
      height: 20px;
      width: 20px;
    }
    
    input:checked + .slider:before {
      transform: translateX(26px);
    }

    .primary-btn {
      width: 100%;
      padding: 14px 24px;
      font-size: 13px;
      min-width: auto;
    }

    .table-col:not(:first-child):hover {
      transform: translateY(-2px) scale(1.01);
    }
  }

  @media (max-width: 480px) {
    .table-col:not(:first-child) .head {
      padding: 15px 10px;
      min-height: 100px;
    }
    
    .table-col:not(:first-child) .head span {
      font-size: 13px;
    }
    
    .table-col:not(:first-child) ul li {
      padding: 15px 12px;
      font-size: 13px;
      min-height: 50px;
    }
    
    .table-col:not(:first-child) .title {
      font-size: 20px;
      padding: 12px;
    }
  }

  /* ---------- JavaScript ile fiyat değişimi için gizleme/gösterme ---------- */
  .price-toggle-active .price-first {
    display: none !important;
  }

  .price-toggle-active .price-second {
    display: flex !important;
    background: linear-gradient(135deg, #0b1016, rgba(9, 80, 161, .89));
  }








/* SUNUCU BARINDIRMA  */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.section-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
  opacity: 0.8;
}

/* Specs Container */
.specs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

.spec-cell {
  background: linear-gradient(135deg, rgba(225, 239, 255, .95) 0%, rgba(225, 239, 255, .8) 100%);
  border: 2px solid rgba(206, 220, 233, .4);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(102, 128, 255, 0.1);
}

.spec-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 128, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.spec-cell:hover::before {
  left: 100%;
}

.spec-cell:hover {
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.15), rgba(95, 178, 251, 0.2));
  border-color: rgba(102, 128, 255, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 128, 255, 0.25);
  color: #1e293b;
}

/* Container genel ayarları */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-header h1 {
    font-size: 36px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .specs-container {
    gap: 15px;
  }
  
  .spec-cell {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
    padding: 30px 0;
  }
  
  .section-header h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .specs-container {
    gap: 12px;
    justify-content: center;
  }
  
  .spec-cell {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 40px;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 28px;
  }
  
  .specs-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .spec-cell {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 20px;
  }
}

/* Animasyon eklentileri */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header,
.specs-container {
  animation: fadeInUp 0.8s ease-out;
}

.spec-cell {
  animation: fadeInUp 0.8s ease-out;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

/* Her spec-cell için farklı gecikme (JavaScript ile ayarlanabilir) */
.spec-cell:nth-child(1) { --delay: 1; }
.spec-cell:nth-child(2) { --delay: 2; }
.spec-cell:nth-child(3) { --delay: 3; }
.spec-cell:nth-child(4) { --delay: 4; }
.spec-cell:nth-child(5) { --delay: 5; }















/* TARİFELER
/* Tarifeler Wrapper */
.tarifeler-wrapper {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Tarife Container */
.tarife {
  background: linear-gradient(135deg, rgba(225, 239, 255, .95) 0%, rgba(225, 239, 255, .8) 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(102, 128, 255, 0.15);
  border: 1px solid rgba(206, 220, 233, .3);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tarife:hover {
  box-shadow: 0 12px 35px rgba(102, 128, 255, 0.25);
  transform: translateY(-2px);
}

/* Tarife Header */
.tarife-head {
  background: linear-gradient(135deg, #6680ff 0%, rgba(0, 102, 219, .84) 100%);
  color: white;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tarife-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.tarife-head:hover::before {
  left: 100%;
}

.tarife-head:hover {
  background: linear-gradient(135deg, #6680ff 0%,  rgba(0, 102, 219, .84) 100%);
  transform: scale(1.02);
}

.tarife-head.active {
  background: linear-gradient(135deg,  rgba(0, 102, 219, .84) 0%, rgba(9, 80, 161, .89) 100%);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.15);
}

.tarife-head .title p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tarife-head span {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tarife-head span:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.tarife-head span i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.tarife-head.active span i[class*="arrow-up"] {
  transform: rotate(180deg);
}

/* Tarife Body */
.tarife-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: white;
  opacity: 0;
}

.tarife-body.show-body {
  max-height: 2000px;
  opacity: 1;
  transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              opacity 0.3s ease 0.1s;
}

/* Tabs Wrapper */
.tabs-wrapper {
  padding: 0;
}

.tab-item {
  padding: 30px 25px;
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(225, 239, 255, .6) 0%, rgba(225, 239, 255, .8) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 128, 255, 0.1);
  margin-bottom: 25px;
}

table thead {
  background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
  color: white;
}

table thead th {
  padding: 18px 15px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

table thead th:last-child {
  border-right: none;
}

table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(206, 220, 233, .3);
}

table tbody tr:hover {
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.08), rgba(95, 178, 251, 0.12));
  transform: scale(1.01);
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody td {
  padding: 18px 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  border-right: 1px solid rgba(206, 220, 233, .2);
}

table tbody td:last-child {
  border-right: none;
}

table tbody td b {
  font-weight: 700;
  color: #1e293b;
}

/* Span Badge */
.span-badge {
  background: linear-gradient(135deg,  #6680ff, rgba(0, 102, 219, .84));
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 8px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Icon Styling */
.fa-check {
  color:  #6680ff;
  font-size: 16px;
  font-weight: 900;
}

.fa-times {
  color: #e74c3c;
  font-size: 16px;
  font-weight: 900;
}

/* Primary Button */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6680ff 0%, rgba(0, 102, 219, .84) 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 20px rgba(9, 80, 161, .89);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.primary-btn:hover::before {
  left: 100%;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #6680ff 0%, rgba(0, 102, 219, .84) 100%);
  box-shadow: 0 10px 30px rgba(9, 80, 161, .89);
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.primary-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(9, 80, 161, .89);
}

/* Hover Popup */
.hover-pop {
  position: relative;
  cursor: help;
  margin-left: 8px;
  display: inline-block;
}

.hover-pop i {
  color: #6680ff;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-pop:hover i {
  color: #5fb3fb;
  transform: scale(1.3) rotate(10deg);
}

.hover-pop::after {
  content: attr(data-content);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0b1016, rgba(9, 80, 161, .89));
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 250px;
  white-space: normal;
  line-height: 1.4;
}

.hover-pop::before {
  content: '';
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0b1016;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.hover-pop:hover::after,
.hover-pop:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Bilgilendirme Section */
.bilgilendirme {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 25px;
}

.bilgilendirme .title {
  color: #f39c12;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bilgilendirme .title i {
  font-size: 18px;
}

.bilgilendirme ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bilgilendirme ul li {
  color: #8b4513;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.bilgilendirme ul li:last-child {
  margin-bottom: 0;
}

.bilgilendirme ul li i {
  color: #f39c12;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .tarifeler-wrapper {
    padding: 0 15px;
  }
  
  .tarife-head {
    padding: 18px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .tarife-head .title p {
    font-size: 16px;
  }
  
  .tab-item {
    padding: 25px 20px;
  }
  
  table thead th,
  table tbody td {
    padding: 15px 10px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .tarife-head {
    padding: 15px 18px;
  }
  
  .tarife-head .title p {
    font-size: 15px;
  }
  
  .tarife-head span {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .tab-item {
    padding: 20px 15px;
  }
  
  table {
    font-size: 12px;
  }
  
  table thead th,
  table tbody td {
    padding: 12px 8px;
  }
  
  .primary-btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .bilgilendirme {
    padding: 15px;
  }
  
  .bilgilendirme .title {
    font-size: 14px;
  }
  
  .bilgilendirme ul li {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  table,
  table tbody,
  table thead,
  table tr,
  table th,
  table td {
    display: block;
  }
  
  table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  table tr {
    background: linear-gradient(135deg, rgba(225, 239, 255, .6) 0%, rgba(225, 239, 255, .8) 100%);
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(102, 128, 255, 0.1);
  }
  
  table td {
    border: none !important;
    padding: 8px 0 !important;
    text-align: left !important;
    position: relative;
    padding-left: 40% !important;
    border-bottom: 1px solid rgba(206, 220, 233, .2) !important;
  }
  
  table td:last-child {
    border-bottom: none !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-top: 15px !important;
  }
  
  table td:before {
    content: attr(data-label) ": ";
    position: absolute;
    left: 6px;
    width: 35%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: 700;
    color: #6680ff;
  }
  
  table td:last-child:before {
    display: none;
  }
}

/* Animation Keyframes */
@keyframes slideDown {
  0% {
    max-height: 0;
    opacity: 0;
  }
  100% {
    max-height: 2000px;
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    max-height: 2000px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    opacity: 0;
  }
}
















/* DDOS Service Page */
.web-tasarim-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 60px 0;
}

.post-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.optimization-post {
  background: linear-gradient(135deg, white 0%, rgba(225, 239, 255, .8) 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(102, 128, 255, 0.15);
  border: 1px solid rgba(206, 220, 233, .3);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

.optimization-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
}

.container {
  padding: 50px 40px;
  position: relative;
}

/* Image Box - Dekoratif Element */
.img-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.1), rgba(95, 178, 251, 0.15));
  border-radius: 50%;
  opacity: 0.6;
  z-index: 1;
}

.img-box::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.2), rgba(95, 178, 251, 0.25));
  border-radius: 50%;
}

.img-box::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.3), rgba(95, 178, 251, 0.35));
  border-radius: 50%;
}

/* Detail Section */
.detail {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Decorative Icon */
.decor-icon {
  display: inline-block;
  width: 60px;
  height: 6px;
  background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
  border-radius: 3px;
  margin-bottom: 20px;
  position: relative;
}

.decor-icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  width: 30px;
  height: 6px;
  background: linear-gradient(135deg, rgba(0, 102, 219, .84), rgba(9, 80, 161, .89));
  border-radius: 3px;
}

.decor-icon::after {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 40px;
  height: 6px;
  background: linear-gradient(135deg, rgba(95, 178, 251, .682), #5fb3fb);
  border-radius: 3px;
}

/* Başlık */
.detail h2 {
  font-size: 42px;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.detail h2 b {
  font-weight: 800;
  color: #6680ff;
  position: relative;
}

.detail h2 b::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #6680ff, #5fb3fb);
  border-radius: 2px;
  opacity: 0.7;
}

/* Açıklama Paragraph */
.lead {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 700px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(225, 239, 255, .6) 0%, rgba(225, 239, 255, .95) 100%);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(206, 220, 233, .3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 128, 255, 0.05), transparent);
  transition: left 0.5s ease;
}

.service-list li:hover::before {
  left: 100%;
}

.service-list li:hover {
  background: linear-gradient(135deg, rgba(102, 128, 255, 0.08), rgba(95, 178, 251, 0.12));
  border-color: rgba(102, 128, 255, 0.3);
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 128, 255, 0.2);
}

/* Check Icon */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6680ff 0%, #5fb3fb 100%);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(102, 128, 255, 0.3);
}

.check::before {
  content: '✓';
  color: white;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

/* List Item Text */
.service-list li span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
}

/* Gallery - Boş alanlar için */
.gallery {
  height: 60px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .container {
    padding: 40px 30px;
  }
  
  .detail h2 {
    font-size: 36px;
  }
  
  .lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .service-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .img-box {
    width: 120px;
    height: 120px;
    top: -15px;
    right: -15px;
  }
}

@media (max-width: 768px) {
  .web-tasarim-page {
    padding: 30px 0;
  }
  
  .post-wrapper {
    padding: 0 15px;
  }
  
  .container {
    padding: 30px 25px;
  }
  
  .detail h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .lead {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .service-list li {
    padding: 15px 18px;
  }
  
  .service-list li span:last-child {
    font-size: 15px;
  }
  
  .check {
    width: 22px;
    height: 22px;
    margin-right: 12px;
  }
  
  .check::before {
    font-size: 12px;
  }
  
  .img-box {
    width: 100px;
    height: 100px;
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .detail h2 {
    font-size: 28px;
  }
  
  .lead {
    font-size: 14px;
  }
  
  .service-list li {
    padding: 12px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .check {
    margin-right: 0;
  }
  
  .service-list li span:last-child {
    font-size: 14px;
  }
  
  .decor-icon {
    width: 50px;
    height: 5px;
  }
  
  .img-box {
    display: none;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Applications */
.optimization-post {
  animation: fadeInUp 0.8s ease-out;
}

.detail h2 {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.lead {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.service-list li {
  animation: slideInRight 0.6s ease-out calc(var(--delay, 0) * 0.1s) both;
}

.service-list li:nth-child(1) { --delay: 6; }
.service-list li:nth-child(2) { --delay: 7; }
.service-list li:nth-child(3) { --delay: 8; }
.service-list li:nth-child(4) { --delay: 9; }
.service-list li:nth-child(5) { --delay: 10; }
.service-list li:nth-child(6) { --delay: 11; }