/* Yanıp Sönen Badge */
.blink,
.menu-badge,
.menu-badge-warning,
.menu-badge-success,
.menu-badge-danger {
    animation: blinkAnim 1.2s infinite;
}

@keyframes blinkAnim {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Tikli Liste */
.tik-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tik-list li {
    position: relative;
    padding-left: 22px !important; /* sola boşluk */
    margin: 4px 0 !important;     /* satır arası boşluk */
    font-size: 14px !important;
    color: #556b75 !important;
    line-height: 1.4 !important;
}

.tik-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 13px;
}

/* Sepete Ekle Butonu */
a.gonderbtn {
    border: 2px solid #002b80 !important;
    background-color: #fff !important;
    color: #002b80 !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

/* Hover efekti */
a.gonderbtn:hover {
    background-color: #002b80 !important;
    color: #fff !important;
}


/* Kart Hover Efekti */
.card-body,
.tablepaket {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.card-body:hover,
.tablepaket:hover {
    border: 2px dotted #002b80 !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

/* Paketler Kapsayıcı (4'lü hizalama ve ortalama için) */
.paket-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ortala */
    gap: 20px;
}

.paket-container .tablepaket {
    flex: 0 0 23%; /* yaklaşık %25, yan yana 4 tane */
    max-width: 23%;
}
/* Sadece Abone Ol butonunu düzelt */
a.aboneolbtn {
    background-color: #002b80 !important; /* istediğin renk */
    color: #fff !important;
    border: none !important;
    border-radius: 30px !important; /* köşeleri yuvarlat */
    padding: 10px 25px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

/* Hover efekti */
a.aboneolbtn:hover {
    background-color: #0040c0 !important;
    color: #fff !important;
}
.tablepopular {
  position: absolute;
  top: -18px; /* biraz yukarı aldım */
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0a2a66, #0044cc);
  color: #fff;
  font-size: 12px;       /* küçülttüm */
  font-weight: 600;      /* 700 yerine 600 yaptım */
  padding: 3px 12px;     /* daha ince yapsın diye padding azalttım */
  border-radius: 15px;
  animation: blink 1.8s infinite;
  box-shadow: 0 0 6px rgba(0, 68, 204, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10; /* diğer yazıların üstüne taşmasın */
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.08);
  }
}
.amount_spot_view {
  color: #000 !important;   /* fiyatlar dümdüz siyah */
  font-weight: 700;
}

.amount_spot_view .currposright {
  color: #0070f3 !important; /* TL işareti mavi */
}
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;   /* yazıları ortala */
}

.features li {
  margin: 3px 0;        /* satırlar arası boşluk */
  font-size: 14px;
  line-height: 1.3;     /* satır yüksekliği */
  display: inline-flex; /* ikon + yazı ortalı */
  align-items: center;
  justify-content: center;
}

.features li img {
  vertical-align: middle;
  margin: 0 4px;
}

/* ✔ olan satırlar */
.features li.check::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
  margin-right: 6px;
  font-size: 14px;
  line-height: 1;
}

/* ikonlu satırlarda boş */
.features li.no-check::before {
  content: "";
}.footer {
    background: #0d0d0d !important;   /* düz siyah */
    color: #ffffff !important;        /* yazılar beyaz */
}

.footer a {
    color: #ffffff !important;        /* linkler de beyaz */
    text-decoration: none;
}

.footer a:hover {
    color: #ff6600 !important;        /* üzerine gelince turuncu (marka rengi) */
    transition: 0.3s;
}

/* Hosting tanıtım bölümü */
.promo-section {
  position: relative;
  z-index: 5;
  background: #fff;
  margin-top: 0 !important;
  padding: 60px 20px;
}
.header {
  z-index: 10;
}
.headerwhite {
  margin-bottom: 0 !important;
}


.promo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.promo-text {
  flex: 1 1 50%;
}

.promo-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.promo-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.promo-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.promo-text ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.promo-text ul li::before {
  content: "✔️ ";
  color: #27ae60;
  margin-right: 5px;
}

.promo-btn {
  display: inline-block;
  background: #4CAF50;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.promo-btn:hover {
  background: #388E3C;
}

.promo-image {
  flex: 1 1 45%;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
}
.page-content {
    background: #fff !important;
    background-image: none !important;
}
/* Müşteri Paneli Footer Override */
.footer {
    background: #0d0d0d !important;   /* düz siyah */
    background-image: none !important; /* dünya haritasını kapat */
    color: #ffffff !important;
}

.footer a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.footer a:hover {
    color: #ff6600 !important;  /* Eva turuncusu */
}

