/* ============================================================
   KAAN HOSTING – Ana Stil Dosyası
   ============================================================ */

/* ---------- CSS Değişkenleri ---------- */
:root {
  --brand: #D9001A;
  --brand-dark: #A80015;
  --text: #1a1a1a;
  --text-muted: #555;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --border: #e9ecef;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
}

/* ---------- Temel ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Sayfa Loader ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* SVG logo wrapper */
.loader-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: loader-pop 0.5s cubic-bezier(.22, .97, .58, 1.25) both;
}

@keyframes loader-pop {
  from {
    opacity: 0;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Dot Pulse */
.loader-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loader-dots span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D9001A;
  animation: dot-pulse 1.2s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-pulse {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- Sayfa Yüklenme Animasyonu ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-fade {
  animation: fadeInUp 0.4s ease both;
}

/* ============================================================
   ÜST ÇUBUK — PCB Trace Geçiş
   ============================================================ */
@keyframes trace-pulse {

  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes center-glow {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.top-bar {
  position: relative;
  font-size: 13px;
  overflow: hidden;
  /* Fallback: arka plan siyah */
  background: #111111;
  padding-top: 0.9rem !important;
  padding-bottom: 0.9rem !important;
}

/* === PCB trace SVG — tüm arka planı kaplar === */
.top-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/topbar-trace.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  animation: trace-pulse 3s ease-in-out infinite;
  will-change: opacity;
}

/* === Merkez ışık süpürmesi (pulse) === */
.top-bar::after {
  content: '';
  position: absolute;
  /* Sadece orta bölge: %40-%60 arası */
  left: 38%;
  right: 38%;
  top: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center,
      rgba(255, 100, 120, 0.28) 0%,
      rgba(217, 0, 26, 0.12) 55%,
      transparent 100%);
  animation: center-glow 2.5s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}

.top-bar .container {
  position: relative;
  z-index: 2;
}

/* Sol iletişim linkleri — kalın beyaz */
.top-bar .top-contact a {
  color: #ffffff;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  transition: color var(--transition);
}

.top-bar .top-contact a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar .top-contact i {
  color: #ffffff;
  font-size: 15px;
}

/* ===== MÜŞTERİ PANELİ BUTONU ===== */
.btn-musteri {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #fff !important;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-musteri i {
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.btn-musteri:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
}

/* Bize Ulaşın — siyah alan */
.top-bar .btn-outline-secondary {
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.top-bar .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff !important;
}

@media (max-width: 576px) {
  .top-bar .top-contact {
    display: none !important;
  }

  .top-bar::after {
    display: none;
  }
}



/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 3px solid var(--brand);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.site-logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---------- Navigasyon ---------- */
.main-navigation {
  font-size: 15px;
  font-weight: 500;
}

.main-navigation .nav-link {
  color: var(--text);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.main-navigation .nav-link:hover,
.main-navigation .nav-link.active {
  color: var(--brand);
  background: rgba(196, 30, 58, 0.06);
}

.main-navigation .dropdown-item:hover {
  color: var(--brand);
  background: rgba(196, 30, 58, 0.06);
}

/* Mobil: dropdown açıkken linke padding ekle */
@media (max-width: 991px) {
  .main-navigation .nav-link {
    padding: 0.5rem 0.5rem;
  }

  #navbarMain {
    padding: 0.5rem 0;
  }
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn-kaan {
  background: var(--brand);
  color: #fff !important;
  border: none;
  padding: 0.48rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.btn-kaan:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

/* Header Giriş Yap — Kayıt Ol ile aynı boyut (border telafisi dahil) */
.site-header .btn-outline-secondary {
  padding: calc(0.48rem - 1px) calc(1.1rem - 1px);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel-section {
  position: relative;
  /* overflow:hidden kaldırıldı — banner'in tamamı görünsün */
  overflow: clip;
}

/* Her slide ortak */
.hero-slide {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

/* Slide 1 – Hosting */
.hero-slide--hosting {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 40%, #1a0008 100%);
}

/* Slide 2 – VDS */
.hero-slide--vds {
  background: linear-gradient(135deg, #05080f 0%, #111827 45%, #0a0f1a 100%);
}

/* Slide 3 – DDoS */
.hero-slide--ddos {
  background: linear-gradient(135deg, #0a0012 0%, #1a0a2e 45%, #060010 100%);
}

/* Slide – Görsel Banner (1536×419)
   Padding-top trick ile aspect ratio kilitlenir;
   Bootstrap'in overflow:hidden'i artık kesamaz. */
.hero-slide--banner {
  min-height: unset !important;
  padding: 0;
  display: block;
  background: #000;
  overflow: visible !important;
  line-height: 0;
  /* 419/1536 = %27.28 — bu kutu her zaman doğru oranda yüksek olur */
  padding-top: calc(419 / 1536 * 100%);
  position: relative;
}

.slide-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Tüm alanı doldur, kırpma olmaz çünkü oran zaten kilitledi */
  display: block;
}

/* İçerik – sol */
.hero-slide-content {
  flex: 1;
  max-width: 560px;
  z-index: 2;
  position: relative;
}

.slide-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slide-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-slide--hosting .slide-title {
  color: #fff;
}

.hero-slide--vds .slide-title {
  color: #fff;
}

.hero-slide--ddos .slide-title {
  color: #fff;
}

.slide-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.slide-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.slide-price-tag span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(196, 30, 58, 0.4);
}

.slide-btn:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

/* Sağ grafik */
.hero-slide-gfx {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  position: relative;
  z-index: 2;
}

.gfx-shape {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gfx-shape i {
  font-size: 5rem;
  z-index: 2;
  position: relative;
}

/* Hosting: kırmızı */
.gfx-shape--server {
  background: radial-gradient(circle, rgba(196, 30, 58, 0.3) 0%, rgba(196, 30, 58, 0) 70%);
  border: 2px solid rgba(196, 30, 58, 0.25);
}

.gfx-shape--server i {
  color: #c41e3a;
}

.gfx-dots {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 30, 58, 0.25);
  animation: spin 12s linear infinite;
  will-change: transform;
}

/* VDS: mavi */
.gfx-shape--chip {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 70%);
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.gfx-shape--chip i {
  color: #60a5fa;
}

.gfx-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1.5px solid rgba(96, 165, 250, 0.2);
  animation: spin 10s linear infinite reverse;
  will-change: transform;
}

.gfx-ring::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(96, 165, 250, 0.15);
}

/* DDoS: mor */
.gfx-shape--shield {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
  border: 2px solid rgba(139, 92, 246, 0.25);
}

.gfx-shape--shield i {
  color: #a78bfa;
}

.gfx-pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(139, 92, 246, 0.3);
  animation: pulsate 2.5s ease-out infinite;
  will-change: transform, opacity;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Carousel overrides */
#heroCarousel .carousel-indicators button {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: background 0.3s, width 0.3s;
}

#heroCarousel .carousel-indicators .active {
  background: var(--brand);
  width: 48px;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 48px;
  opacity: 0.6;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    padding: 2.5rem 1.25rem;
    min-height: 400px;
    text-align: center;
  }

  .hero-slide-gfx {
    width: 140px;
    height: 140px;
  }

  .gfx-shape {
    width: 110px;
    height: 110px;
  }

  .gfx-shape i {
    font-size: 3rem;
  }

  .slide-desc {
    max-width: 100%;
  }
}

/* ============================================================
   DOMAIN HERO SECTION (arama + kartlar)
   ============================================================ */
.domain-hero-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 3.5rem;
}

.domain-hero-title {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
}

.domain-hero-title i {
  color: var(--brand);
}

.domain-hero-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.domain-search-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-domain-cards {
  margin-top: 2.5rem;
}



/* ============================================================
   SAYFA BAŞLIĞI (iç sayfalar)
   ============================================================ */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
}

.page-hero p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================================
   İÇERİK BÖLÜM
   ============================================================ */
.content-section {
  padding: clamp(1.5rem, 3vw, 3rem) 0;
}

/* ============================================================
   KARTLAR
   ============================================================ */
.card-kaan {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition),
    transform var(--transition);
}

.card-kaan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #ff6b6b);
  opacity: 0;
  transition: opacity 0.25s;
}

.card-kaan:hover::before {
  opacity: 1;
}

.card-kaan .card-body {
  padding: clamp(1rem, 2vw, 1.6rem);
}

.card-kaan:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.35);
  transform: translateY(-4px);
}

/* Başlık */
.card-kaan .card-title {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.3rem;
}

/* Açıklama */
.card-kaan .card-text {
  font-size: clamp(0.75rem, 1vw, 0.84rem);
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
  text-align: center;
}

/* Fiyat bölümü */
.card-kaan .my-3 {
  margin-top: 0.6rem !important;
  margin-bottom: 0.5rem !important;
  padding: 0.55rem 0 0.6rem;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  text-align: center;
}

.card-kaan .price {
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  display: block;
  text-align: center;
}

.card-kaan .price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 2px;
}

.card-kaan .price-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.15rem;
}

/* Öne çıkan kart (Popular) */
.card-kaan.featured {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(160deg, #fff 85%, rgba(196, 30, 58, 0.03) 100%);
}

.card-kaan.featured::before {
  opacity: 1;
  height: 4px;
}

.badge-popular {
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============================================================
   ÖZELLİK LİSTESİ
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: clamp(0.2rem, 0.42vw, 0.3rem) 0;
  font-size: clamp(0.76rem, 1.05vw, 0.86rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: var(--brand);
  width: 0.9rem;
  font-size: 0.7em;
  flex-shrink: 0;
}

/* Ana özellikler — ortalı, kalın, biraz büyük */
.feature-list li.feature-main {
  justify-content: center;
  text-align: center;
  font-size: clamp(0.82rem, 1.15vw, 0.94rem);
  font-weight: 700;
  color: var(--text);
  border-bottom: none;
  padding: clamp(0.22rem, 0.45vw, 0.32rem) 0;
}

.feature-list li.feature-main i {
  font-size: 0.75em;
}

/* Kırmızı ayırıcı çizgi */
.feature-list li.feature-divider {
  display: block;
  padding: 0.5rem 0 0.4rem;
  border: none;
}

.feature-list li.feature-divider span {
  display: block;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--brand) 0px,
      var(--brand) 8px,
      transparent 8px,
      transparent 14px);
  border-radius: 0;
  opacity: 0.8;
}

/* ============================================================
   İKON KUTULARI (Neden biz)
   ============================================================ */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  transition: background var(--transition), border-color var(--transition);
}

.icon-box:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ============================================================
   SSS – ACCORDION
   ============================================================ */
.accordion-button:not(.collapsed) {
  color: var(--brand);
  background-color: rgba(196, 30, 58, 0.05);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: none;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(21%) sepia(82%) saturate(1200%) hue-rotate(330deg);
}

/* ============================================================
   İLETİŞİM FORMU
   ============================================================ */
.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.15);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.08);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   DOMAİN SORGULAMA – HERO
   ============================================================ */
.domain-search-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.domain-search-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.domain-input-group {
  display: flex;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.domain-input-group:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.12);
}

.domain-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}

.domain-input::placeholder {
  color: #aaa;
}

.domain-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  letter-spacing: 0.02em;
}

.domain-btn:hover {
  background: var(--brand-dark);
}

.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 1rem;
}

.tld-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: default;
}

.tld-badge:hover {
  background: rgba(196, 30, 58, 0.07);
  border-color: var(--brand);
  color: var(--brand);
}

@media (max-width: 576px) {
  .domain-search-wrap {
    padding: 1.25rem 1rem 1rem;
  }

  .domain-btn {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }
}

/* ============================================================
   KAMPANYA BANDI (Promo Strip)
   ============================================================ */
.promo-strip {
  background: linear-gradient(135deg, #c41e3a 0%, #a0162e 100%);
  color: #fff;
  padding: 0.85rem 0;
}

.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.promo-item i {
  font-size: 1rem;
  opacity: 0.9;
}

.promo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .promo-divider {
    display: none;
  }

  .promo-strip-inner {
    gap: 0.35rem 0;
    flex-direction: column;
  }
}

/* ============================================================
   İNDİRİM ŞERİDİ (Ribbon)
   ============================================================ */
.discount-ribbon {
  position: absolute;
  top: 14px;
  right: -4px;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.8rem 0.28rem 0.65rem;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.18);
}

.discount-ribbon::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  border-top: 11px solid var(--brand);
  border-bottom: 11px solid var(--brand);
  border-right: 6px solid transparent;
}

.free-ribbon {
  background: #1a8a44;
}

.free-ribbon::after {
  border-top-color: #1a8a44;
  border-bottom-color: #1a8a44;
}

/* ============================================================
   FİYAT BLOĞU
   ============================================================ */
.price-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.price-old {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.price-badge {
  display: inline-block;
  background: rgba(196, 30, 58, 0.1);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(196, 30, 58, 0.25);
  width: fit-content;
}

.price-promo-note {
  display: inline-block;
  background: rgba(26, 138, 68, 0.08);
  color: #1a8a44;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(26, 138, 68, 0.2);
  margin-top: 0.15rem;
}

/* ============================================================
   FİYAT TABLOSU BADGE
   ============================================================ */
.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #2d2d2d;
  color: #bbb;
  font-size: 14px;
  padding: 2.5rem 0 0;
  margin-top: 3rem;
}

.site-footer a {
  color: #ddd;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.site-footer ul.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul.footer-links li {
  margin-bottom: 0.35rem;
}

.site-footer ul.footer-links a {
  color: #bbb;
  font-size: 0.9rem;
}

.site-footer ul.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 13px;
  color: #888;
}

/* ============================================================
   YARDIMCI
   ============================================================ */
.text-brand {
  color: var(--brand) !important;
}

.bg-brand {
  background: var(--brand) !important;
}

.divider {
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ============================================================
   DOMAIN KAMPANYA KARTLARI (dcard)
   ============================================================ */
.dcard {
  position: relative;
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.dcard-red {
  background: #fff5f7;
  border: 2px solid rgba(196, 30, 58, 0.2);
}

.dcard-green {
  background: #f0faf4;
  border: 2px solid rgba(26, 138, 68, 0.25);
}

.dcard-gift {
  background: #fff8ee;
  border: 2px dashed #e8a020;
}

.dcard-ribbon {
  position: absolute;
  top: 14px;
  right: -4px;
  background: #1a8a44;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem 0.22rem 0.55rem;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.dcard-ribbon::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 0;
  border-top: 10px solid #1a8a44;
  border-bottom: 10px solid #1a8a44;
  border-right: 5px solid transparent;
}

.dcard-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--brand);
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dcard-green .dcard-icon {
  color: #1a8a44;
}

.dcard-gift .dcard-icon {
  color: #e8a020;
}

.dcard-tld {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.dcard-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.dcard-price span,
.dcard-price-gift {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.dcard-price-gift {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8a020;
  margin-bottom: 0.75rem;
}

.dcard-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.btn-success-kaan {
  background: #1a8a44;
  color: #fff !important;
  border: none;
  padding: 0.48rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-success-kaan:hover {
  background: #146b35;
  transform: translateY(-1px);
}

/* ============================================================
   AI DOMAIN KARTI
   ============================================================ */
.ai-domain-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #0d0d1a 0%, #111827 60%, #1a0a2e 100%);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.ai-domain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.ai-domain-left {
  flex: 1;
  min-width: 0;
}

.ai-domain-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c4b5fd;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}

.ai-domain-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.ai-domain-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.ai-domain-offers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ai-offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.ai-offer-item i {
  color: #86efac;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn-ai {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff !important;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-ai:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Sağ fiyat kutusu */
.ai-domain-right {
  flex-shrink: 0;
}

.ai-price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(4px);
  min-width: 160px;
}

.ai-tld {
  font-size: 1.8rem;
  font-weight: 900;
  color: #c4b5fd;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.ai-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.ai-price-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.ai-bonus-tag {
  background: rgba(134, 239, 172, 0.15);
  border: 1px solid rgba(134, 239, 172, 0.35);
  color: #86efac;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
}

.ai-total {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .ai-domain-card {
    flex-direction: column;
    padding: 1.5rem 1.25rem;
  }

  .ai-domain-right {
    width: 100%;
  }

  .ai-price-box {
    width: 100%;
  }
}

/* ============================================================
   DOMAIN TABLOSI
   ============================================================ */
.domain-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.93rem;
}

.domain-table thead {
  background: var(--brand);
  color: #fff;
}

.domain-table thead th {
  font-weight: 600;
  padding: 0.85rem 1rem;
  border: none;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.domain-table tbody td {
  padding: 0.8rem 1rem;
  vertical-align: middle;
  border-color: var(--border);
}

.domain-table tbody tr:hover {
  background: rgba(196, 30, 58, 0.03);
}

.table-highlight {
  background: rgba(26, 138, 68, 0.04) !important;
}

.table-highlight td {
  border-left: 3px solid #1a8a44;
}

.tld-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

/* Tablo badge'leri */
.tbl-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  white-space: nowrap;
}

.tbl-gift {
  background: rgba(196, 30, 58, 0.08);
  color: var(--brand);
  border: 1px solid rgba(196, 30, 58, 0.2);
}

.tbl-hot {
  background: rgba(26, 138, 68, 0.1);
  color: #1a8a44;
  border: 1px solid rgba(26, 138, 68, 0.25);
}

.tbl-ai {
  background: rgba(124, 58, 237, 0.12);
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.btn-ai-sm {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #fff !important;
  border: none;
  padding: 0.28rem 0.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: opacity 0.2s;
}

.btn-ai-sm:hover {
  opacity: 0.85;
}

/* ============================================================
   DOMAIN ARAMA KUTUSU
   ============================================================ */
.domain-search-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.domain-search-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-align: center;
}

.domain-search-form {
  width: 100%;
}

.domain-input-group {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}

.domain-input-group:focus-within {
  border-color: var(--brand);
}

.domain-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.85rem 1.1rem;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
}

.domain-input::placeholder {
  color: #bbb;
}

.domain-btn {
  white-space: nowrap;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.domain-btn:hover {
  background: var(--brand-dark);
}

.domain-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
  justify-content: center;
}

.tld-badge {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
}

@media (max-width: 576px) {
  .domain-search-wrap {
    padding: 1.25rem 1rem 1rem;
  }

  .domain-btn {
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
  }
}