:root {
    --bg: #07070b;
    --accent: #ff007a;
    --muted: #9aa0a6;
    --ice: #00c7ff;
}

/* =============== GENEL =============== */
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #e9eef6;
    background: #000;
    overflow-x: hidden;
}

/* =============== ARKA PLAN =============== */
#bg-overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: url("/static/img/bg-neon-datacenter.jpg") center/cover no-repeat;
  filter: brightness(0.34) saturate(1.22) blur(1.3px);
  z-index:-3;
}

/* Particles */
#particles-js {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  z-index:-1;
  pointer-events:none;
}

/* =============== NAVBAR =============== */
.navbar {
    padding:14px 22px;
    background:rgba(0,0,0,0.55);
    border-bottom:1px solid rgba(255,255,255,0.05);
    backdrop-filter:blur(6px);
}
.nav-inner { display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; }

/* Logo - profesyonel */
.logo {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.05;
}
.logo-strong {
  font-weight:900;
  font-size:24px;
  color:var(--accent);
  letter-spacing:1.3px;
  text-shadow:0 0 12px rgba(255,0,122,0.65);
}
.logo-small {
  font-size:14px;
  color:#e2e2e2;
  margin-top:-2px;
  letter-spacing:0.6px;
  opacity:0.85;
}

.nav-links a { color:#dfe7ee; margin-left:18px; text-decoration:none; font-weight:600; }
.nav-links a:hover { color:var(--accent); transition:0.2s; }

/* =============== HERO (INDEX) =============== */
.hero { padding:130px 20px 80px; text-align:center; }

/* Başlık güçlendirme + alt neon çizgi */
.hero-title {
  font-size:52px;
  color:#ffffff;
  font-weight:900;
  position:relative;
  display:inline-block;
  text-shadow:
    0 0 28px rgba(255,0,122,0.55),
    0 0 14px rgba(0,0,0,0.85),
    0 0 3px rgba(0,0,0,1);
}
.hero-title::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  transform:translateX(-50%);
  width:70%;
  height:3px;
  border-radius:6px;
  background:linear-gradient(90deg,#ff007a,#ff92c4);
  box-shadow:0 0 14px rgba(255,0,122,0.85);
}
.hero-slogan {
  color:#f2f2f2;
  font-style:italic;
  font-weight:700;
  margin-top:10px;
  text-shadow:0 0 12px rgba(0,0,0,0.85);
}
.hero-desc {
  margin-top:18px;
  color:#ffffff;
  max-width:750px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
  font-weight:600;
  text-shadow:0 0 10px rgba(0,0,0,1);
}
.hero-ctas { margin-top:34px; display:flex; justify-content:center; gap:18px; }
.btn-main {
    background:linear-gradient(90deg,#ff007a,#ff7aa2);
    padding:14px 30px;
    border-radius:8px;
    color:#000;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 0 22px rgba(255,0,122,0.35);
}
.btn-ghost {
    padding:14px 28px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,0.25);
    text-decoration:none;
    color:#eee;
}

/* =============== INDEX HİZMET ÖZET GRID =============== */
.services { text-align:center; padding:100px 20px; }
.services-title {
  font-size:36px;
  font-weight:700;
  text-shadow:0 0 20px rgba(255,0,122,0.4);
}
.feature-grid {
  max-width:1100px;
  margin:60px auto;
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  justify-content:center;
}
.feature-card {
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(6px);
  border-radius:18px;
  padding:32px;
  width:300px;
  text-align:center;
  border:1px solid rgba(255,255,white,0.08);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
  box-shadow:0 0 35px rgba(0,0,0,0.65);
}
.feature-card:hover {
  transform:translateY(-6px);
  border-color:var(--accent);
  box-shadow:0 0 45px rgba(255,0,122,0.55);
}
.feature-icon { font-size:40px; margin-bottom:14px; }
/* hover varyantları */
.feature-card.ai-core:hover { box-shadow:0 0 75px rgba(0,160,255,0.75); }
.feature-card.cyber-shield:hover { box-shadow:0 0 75px rgba(255,70,90,0.75); }

/* =============== REFERANSLAR (INDEX) =============== */
.references { text-align:center; padding:100px 20px; max-width:1200px; margin:0 auto; }
.ref-title { font-size:36px; font-weight:700; text-shadow:0 0 18px rgba(255,0,122,0.4); }
.ref-sub { color:#c9c9c9; margin-top:6px; font-style:italic; opacity:0.9; }
.refs-grid { margin-top:50px; display:flex; flex-wrap:wrap; justify-content:center; gap:32px; }
.ref-card {
  width:180px;
  height:180px;
  background:rgba(0,0,0,0.45);
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 0 28px rgba(0,0,0,0.6);
  backdrop-filter:blur(3px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-decoration:none; transition:0.3s;
}
.ref-card:hover {
  transform:translateY(-10px);
  border-color:var(--accent);
  box-shadow:0 0 45px rgba(255,0,122,0.45);
}
.ref-card img { width:70px; height:70px; object-fit:contain; margin-bottom:10px; }
.ref-card span { font-weight:600; color:#fff; }

/* =============== HİZMETLER SAYFASI (B ŞIKKI) =============== */
.services-hero {
  text-align:center;
  padding:110px 20px 30px;
}
.neon-title {
  font-size:42px;
  font-weight:900;
  text-shadow:
    0 0 32px rgba(255,0,122,0.85),
    0 0 12px rgba(255,0,122,0.55),
    0 0 4px rgba(0,0,0,1);
}
.neon-sub {
  margin-top:8px;
  opacity:0.9;
  font-weight:600;
  letter-spacing:0.4px;
}

.service-cards {
  max-width:1300px;
  margin:60px auto 110px;
  padding:0 30px;
  display:flex;
  flex-wrap:wrap;
  gap:36px;
  justify-content:center;
}

.service {
  width:400px;
  padding:42px 34px;
  border-radius:14px;
  text-align:left;
  background:rgba(0,0,0,0.55);
  border:2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 24px rgba(0,0,0,0.8),
    inset 0 0 14px rgba(255,255,255,0.06);
  transition:0.30s;
}
.service:hover {
  transform:translateY(-6px);
  border-color:var(--accent);
  box-shadow:
    0 0 45px rgba(255,0,122,0.55),
    inset 0 0 25px rgba(255,0,122,0.50);
}
.service.ai-core:hover {
  border-color:var(--ice);
  box-shadow:
    0 0 55px rgba(0,180,255,0.75),
    inset 0 0 28px rgba(0,180,255,0.65);
}
.service.cyber-shield:hover {
  border-color:#ff4d4d;
  box-shadow:
    0 0 60px rgba(255,60,60,0.75),
    inset 0 0 28px rgba(255,60,60,0.60);
}
.service h2 {
  font-size:24px;
  margin-bottom:16px;
  font-weight:800;
  letter-spacing:0.7px;
}
.service p { opacity:0.96; line-height:1.65; }
.service-list { margin-top:18px; padding-left:20px; }
.service-list li { margin-bottom:8px; line-height:1.45; }
.service-note { margin-top:18px; font-size:14px; opacity:0.9; font-style:italic; }

/* =============== FİYATLAR =============== */
.pricing-hero { text-align:center; padding:110px 20px 40px; }
.pricing-title { font-size:42px; font-weight:700; }
.pricing-sub { opacity:0.75; margin-top:6px; }

.pricing-cards {
  max-width:1200px; margin:60px auto; padding:0 20px;
  display:flex; flex-wrap:wrap; gap:28px; justify-content:center;
}
.price-card {
  background:rgba(0,0,0,0.45);
  border-radius:18px;
  padding:32px;
  width:330px;
  border:1px solid rgba(255,255,255,0.09);
  transition:0.28s;
  backdrop-filter:blur(4px);
}
.price-card:hover { transform:translateY(-8px); }
.price-card.highlight {
  border-color:var(--ice);
  box-shadow:0 0 42px rgba(0,200,255,0.35);
}
.price { font-size:22px; margin-top:10px; }
.price-small { font-size:14px; opacity:0.8; margin-top:4px; }
.badge {
  background:rgba(0,200,255,0.25);
  color:#bff6ff;
  padding:2px 8px;
  border-radius:6px;
  font-size:12px;
  margin-left:6px;
}
.price-features { margin-top:16px; line-height:1.55; padding-left:18px; color:#e9eef6; }
.price-btn {
  display:block; text-align:center;
  padding:14px 0;
  margin-top:22px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}
.price-btn.ice {
  background:linear-gradient(90deg,#00b6ff,#67e3ff);
  color:#000;
  box-shadow:0 0 22px rgba(0,200,255,0.4);
}
.price-btn.ice:hover { box-shadow:0 0 35px rgba(0,200,255,0.65); }

/* =============== DONANIMSAL =============== */
.hardware-section { text-align:center; padding:100px 20px; }
.hardware-title { font-size:32px; font-weight:700; }
.hardware-sub { opacity:0.75; margin-top:6px; }
.hardware-list { max-width:650px; margin:40px auto; display:flex; flex-direction:column; gap:16px; }
.hardware-item {
  background:rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 18px;
  border-radius:10px;
  display:flex; justify-content:space-between; align-items:center;
}
.hardware-btn {
  margin-top:26px;
  display:inline-block;
  padding:12px 28px;
  border-radius:8px;
  background:linear-gradient(90deg,#00b6ff,#67e3ff);
  color:#000;
  font-weight:700;
  text-decoration:none;
}

/* =============== İLETİŞİM FORMU =============== */
.contact-form-wrap form {
  max-width:480px;
  margin:60px auto;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-form-wrap label { font-weight:600; opacity:0.95; }
.contact-form-wrap input,
.contact-form-wrap textarea {
  background:rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  border-radius:10px;
  padding:12px 14px;
  outline:none;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color:var(--accent);
  box-shadow:0 0 16px rgba(255,0,122,0.35);
}
.send-btn {
  margin-top:8px;
  padding:12px 18px;
  border-radius:10px;
  border:none;
  font-weight:800;
  cursor:pointer;
  background:linear-gradient(90deg,#ff007a,#ff7aa2);
  color:#000;
  box-shadow:0 0 18px rgba(255,0,122,0.35);
}
.form-status { margin-top:8px; opacity:0.9; }

/* =============== FOOTER =============== */
.footer { margin-top:120px; padding:24px; text-align:center; color:#9ea6ad; border-top:1px solid rgba(255,255,255,0.05); }
.footer-contacts a { color:#cfe7ff; text-decoration:none; }
.footer-contacts a:hover { color:#fff; text-decoration:underline; }

/* =============== RESPONSIVE =============== */
@media (max-width:1100px){
  .service { width:45%; }
}
@media (max-width:900px){
  .hero-title { font-size:34px; }
  .hero-ctas { flex-direction:column; }
  .feature-card { width:100%; }
  .price-card { width:100%; }
  .service { width:100%; }
  .refs-grid { gap:22px; }
}

/* ==================== CONTACT PAGE – GLASS PANEL PATCH (append-only) ==================== */
.contact-hero {
  text-align:center;
  padding:120px 20px 30px;
}
.contact-title {
  font-size:42px;
  font-weight:900;
  text-shadow:0 0 26px rgba(255,0,122,0.65);
}
.contact-sub { opacity:0.9; margin-top:6px; }

/* Formu cam panel içine alıp okunurluğu artırıyoruz */
.contact-form-wrap .contact-panel {
  max-width:680px;
  margin:40px auto 120px;
  padding:40px 38px;
  border-radius:22px;
  background:rgba(0,0,0,0.50);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 0 55px rgba(0,0,0,0.55);
}

/* Yalnızca panel içindeki alanları hedefliyoruz (diğer sayfalara dokunmaz) */
.contact-form-wrap .contact-panel label {
  margin-top:16px;
  margin-bottom:6px;
  display:block;
  font-weight:600;
  opacity:0.95;
}

.contact-form-wrap .contact-panel input,
.contact-form-wrap .contact-panel textarea {
  width:100%;
  background:rgba(0,0,0,0.36);
  border:1px solid rgba(255,255,255,0.22);
  border-radius:12px;
  padding:14px 16px;
  color:#fff;
  font-size:15px;
  outline:none;
  transition:0.25s;
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
}

.contact-form-wrap .contact-panel input::placeholder,
.contact-form-wrap .contact-panel textarea::placeholder {
  color:rgba(255,255,255,0.65);
}

.contact-form-wrap .contact-panel input:focus,
.contact-form-wrap .contact-panel textarea:focus {
  border-color:var(--accent);
  box-shadow:0 0 18px rgba(255,0,122,0.55), inset 0 0 6px rgba(255,255,255,0.06);
}

/* Gönder butonunu panel içinde bir tık büyütüyoruz */
.contact-form-wrap .contact-panel .send-btn {
  margin-top:18px;
  padding:16px 18px;
  border-radius:12px;
  border:none;
  font-weight:800;
  cursor:pointer;
  background:linear-gradient(90deg,#ff007a,#ff7aa2);
  color:#000;
  box-shadow:0 0 24px rgba(255,0,122,0.45);
}
.contact-form-wrap .contact-panel .send-btn:hover {
  box-shadow:0 0 36px rgba(255,0,122,0.75);
}

/* Durum metni panel içinde */
.contact-form-wrap .contact-panel .form-status {
  margin-top:10px;
  opacity:0.95;
}

/* Mobil düzen */
@media (max-width:900px){
  .contact-form-wrap .contact-panel {
    margin:24px 16px 90px;
    padding:28px 20px;
    border-radius:16px;
  }
  .contact-title { font-size:34px; }
}



/* ========================================================= */
/* ✅ SENİN İSTEDİĞİN HOVER NEON EFEKTLERİ BURADA EKLENDİ ✅ */
/* ========================================================= */

/* Fiyat kartlarına güçlü hover neon */
.price-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 55px rgba(255,0,122,0.65);
}

/* Seçili (highlight) kart hover olduğunda daha parlak */
.price-card.highlight:hover {
  box-shadow: 0 0 95px rgba(0,200,255,0.85);
  transform: translateY(-10px);
}

/* Donanımsal hizmet satırları hover ışığı */
.hardware-item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 45px rgba(255,0,122,0.55);
  transform: translateY(-4px);
}

/* ======== EK OVERRIDE: highlight kartı normalde yanmasın ======== */
.pricing-cards .price-card.highlight {
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.pricing-cards .price-card.highlight:hover {
  border-color: var(--ice) !important;
  box-shadow: 0 0 95px rgba(0,200,255,0.85) !important;
  transform: translateY(-10px);
}

/* Donanımsal satırlara yumuşak geçiş */
.hardware-item { transition: border-color .25s, box-shadow .25s, transform .25s; }

/* 4 kartı yan yana sabitle */
.pricing-cards.pricing-4 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 28px;
}

/* Web kartı neon etiket */
.web-card {
  position: relative;
}

.web-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff007a, #ff77b7);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #000;
  box-shadow: 0 0 18px rgba(255,0,122,0.75);
}

/* 2 Ay Hediye Rozeti Hizalama Fix */
.price-small {
  display: flex;
  align-items: center;   /* Dikey hizalama */
  gap: 6px;              /* Yazı ile rozet arasındaki boşluk */
}

.badge {
  position: relative;
  top: 0px;              /* Gerekirse -1 / +1 yaparak mikro ayar */
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

/* === Neon Pulse Badge Efekti === */
.badge {
  position: relative;
  top: -1px; /* hizalı kalsın */
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  background: rgba(0, 200, 255, 0.28);
  color: #bff6ff;
  box-shadow: 0 0 10px rgba(0,200,255,0.6), 0 0 20px rgba(0,200,255,0.3);
  animation: badgePulse 2.6s ease-in-out infinite;
}

/* Animasyon */
@keyframes badgePulse {
  0% {
    box-shadow: 0 0 6px rgba(0,200,255,0.35), 0 0 14px rgba(0,200,255,0.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(0,200,255,0.75), 0 0 28px rgba(0,200,255,0.55);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 6px rgba(0,200,255,0.35), 0 0 14px rgba(0,200,255,0.18);
    transform: scale(1);
  }
}

/* Daha dengeli, profesyonel boyut */
.price strong,
.price-small strong {
    font-size: 1.45rem;
    font-weight: 700;
    color: #8beaff;
    text-shadow: 0 0 4px rgba(0, 234, 255, 0.55), 0 0 10px rgba(0, 234, 255, 0.25);
    transition: 0.25s ease;
}

/* Hover’da yine parlasın ama abartma yok */
.price-card:hover .price strong,
.price-card:hover .price-small strong {
    transform: scale(1.04);
    text-shadow: 0 0 14px rgba(0, 234, 255, 0.9), 0 0 26px rgba(0, 234, 255, 0.5);
    color: #c6faff;
}

/* === Web Site Yazılımı Kartındaki Fiyat Hizası === */
.price-card.web-price .price-small strong {
    display: inline-block;
    margin-top: 0px !important; /* aşağı kaymayı sabitliyoruz */
}

/* ===================================================== */
/* 🌊 Neon Ripple Hover + Click Effect for Buttons       */
/* ===================================================== */

.price-btn.ice {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.price-btn.ice::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.55);
  transform: translate(-50%, -50%);
  top: var(--y);
  left: var(--x);
  opacity: 0;
  transition: 0s;
}

.price-btn.ice:active::after {
  width: 260px;
  height: 260px;
  opacity: 0;
  transition: width 0.55s ease-out, height 0.55s ease-out, opacity 0.65s ease-out;
}

/* TL sağ yan hizalama */
.price strong,
.price-small strong {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

/* Rakam */
.price strong .amount,
.price-small strong .amount {
    font-size: 1.9rem;
    font-weight: 700;
}

/* TL */
.price strong .tl,
.price-small strong .tl {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    top: -1px;
}


