/* =========================
   ECO Digital Dark Template
   ========================= */

:root{
  --bg:#070A12;
  --bg2:#0B1020;
  --card:rgba(255,255,255,0.06);
  --card2:rgba(255,255,255,0.08);
  --stroke:rgba(255,255,255,0.12);
  --text:#E8ECFF;
  --muted:rgba(232,236,255,0.72);

  /* Accent (dilersen değiştir) */
   --accent:#7C5CFF;
  --accent2:#16E6C1;
  --warning:#FFB020; 

 

  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin:0;
  color:var(--text);
  background: #070A12;    /* sadece düz renk */
  position: relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -3;

  background:
    radial-gradient(900px 500px at 10% 10%, rgba(124,92,255,0.18), transparent 55%),
    radial-gradient(800px 480px at 90% 20%, rgba(22,230,193,0.14), transparent 55%),
    radial-gradient(900px 520px at 40% 95%, rgba(255,176,32,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));

  background-repeat: no-repeat;
  background-size: cover;   /* kritik */
}

.site-main {
	flex: 1 0 auto;
}

/* Subtle grid overlay */
.bg-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 80%);
   
}

/* Soft noise via CSS (lightweight) */
.bg-noise{
  position:fixed;
  inset:-20%;
  pointer-events:none;
  opacity:.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  transform: rotate(7deg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ color:var(--text); }

.container{ max-width: 1140px; }

.contact-faq {
  margin-top: 24px;
}

.faq-title {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 12px;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.faq-question:hover {
  opacity: .85;
}

.faq-icon {
  font-size: 18px;
  opacity: .6;
}

.faq-answer {
  display: none;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  padding-bottom: 12px;
}


.section{
  padding: 90px 0;
}

.section-sm{
  padding: 60px 0;
}

.kicker{
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.h1{
  font-weight: 750;
  letter-spacing: -.02em;
  line-height: 1.05;
  font-size: clamp(2.0rem, 4vw, 3.2rem);
}

.h2{
  font-weight: 730;
  letter-spacing: -.02em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.lead{
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.badge-soft{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .8rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: .85rem;
}

/* Navbar */
.navbar{
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7,10,18,0.55) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar .navbar-brand{
  font-weight: 800;
  letter-spacing: .02em;
}
.navbar .nav-link{
  color: rgba(232,236,255,0.78) !important;
}
.navbar .nav-link:hover{
  color: rgba(232,236,255,1) !important;
}
.navbar .nav-link.active{
  color: rgba(232,236,255,1) !important;
}

.navbar-brand.logo {
  display: block; /* ← bu çok önemli */
  width: 140px;
  height: 36px;
  background: url("../img/v1.svg") no-repeat center;
  background-size: contain;
}


.btn-primary{
  border: 0;
  color: #0A0C14;
  font-weight: 700;
  padding: .75rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 40px rgba(124,92,255,.18);
}
.btn-primary:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-outline{
  border: 1px solid var(--stroke);
  color: rgba(232,236,255,0.92);
  background: rgba(255,255,255,0.03);
  padding: .75rem 1.05rem;
  border-radius: 14px;
}
.btn-outline:hover{
  background: rgba(255,255,255,0.06);
}

.card-glass{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.card-pad{
  padding: 22px;
}

.hero{
  padding: 110px 0 70px;
  position: relative;
}
.hero-blob{
  position:absolute;
  inset:auto -120px -180px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,0.55), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(22,230,193,0.35), transparent 55%);
  filter: blur(26px);
  opacity: .55;
  pointer-events:none;
}
.hero-metrics{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.icon-dot{
  width: 10px; height:10px; border-radius:50%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 3px rgba(124,92,255,0.12);
}

/* Service cards */
.service-card{
  height:100%;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
}
.service-icon{
  width: 44px; height:44px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.service-icon i {
  font-size: 20px;
  color: var(--accent);
}

/* Blog cards */
.blog-card img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
}

.meta{
  color: rgba(232,236,255,0.60);
  font-size: .9rem;
}

/* Blog card hover */
.blog-card{
  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.blog-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.05)
  );
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

/* Forms */
.form-control, .form-select{
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: rgba(232,236,255,0.92) !important;
  border-radius: 14px !important;
  padding: .8rem 1rem !important;
}
.form-control::placeholder{
  color: rgba(232,236,255,0.45);
}
.form-control:focus{
  box-shadow: 0 0 0 .2rem rgba(124,92,255,0.22) !important;
  border-color: rgba(124,92,255,0.55) !important;
}
label{
  color: rgba(232,236,255,0.85);
  margin-bottom: .35rem;
}

/* Footer */
.footer{
  position: relative;
  z-index: 5;
  background: linear-gradient(
    180deg,
    rgba(7,10,18,0.92),
    rgba(11,16,32,0.98)
  );
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 28px 0;
  color: rgba(232,236,255,0.68);
  overflow: hidden;
  flex-shrink: 0;
}

/* Page header */
.page-head{
  padding: 55px 0 25px;
}

/* Utilities */
.divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 22px 0;
}

.small-note{
  color: rgba(232,236,255,0.62);
  font-size: .92rem;
  line-height: 1.55;
}

/* Responsive fine-tuning */
@media (max-width: 991px){
  .hero{ padding: 95px 0 55px; }
}
@media (max-width: 575px){
  .card-pad{ padding: 18px; }
  .btn-primary, .btn-outline{ width:100%; }
}
