/* ═══════════════════════════════════════════════════
   ENEA DIGITAL — style.css  v2.0
   Dark Premium | Bootstrap 5 | WOM-inspired Layout
═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg:          #0f172a;
  --bg-card:     #1a2540;
  --bg-alt:      #111827;
  --border:      rgba(255,255,255,0.10);
  --accent:      #00f2fe;
  --accent-2:    #4facfe;
  --text:        #f1f5f9;
  --muted:       #a8b8cc;
  --radius:      1rem;
  --radius-lg:   1.5rem;
  --font:        'Inter', system-ui, sans-serif;
  --ease:        0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.78;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; }

/* ── Gradient text ── */
.ed-gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.ed-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a1628;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  box-shadow: 0 0 28px rgba(0,242,254,.22);
  transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
}
.ed-btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(0,242,254,.38);
  color: #0a1628;
}
.ed-btn-ghost {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.15);
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}
.ed-btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,242,254,.06);
  color: var(--text);
  transform: translateY(-2px);
}

/* ── Logo text ── */
.ed-logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.5px;
}
.ed-logo-text span { color: var(--accent); }

/* ── Section tag ── */
.ed-section-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(0,242,254,.08);
  color: var(--accent);
  border: 1px solid rgba(0,242,254,.18);
  border-radius: 999px;
  padding: .35rem 1.1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Pill tag (hero) ── */
.ed-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .4rem 1.1rem;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.ed-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
}

/* ── Service / Topic tags ── */
.ed-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  transition: border-color var(--ease), color var(--ease);
}
.ed-tag:hover { border-color: var(--accent); color: var(--accent); }
a.ed-tag { text-decoration: none; cursor: pointer; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.ed-navbar {
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  /* Sabit yükseklik — scroll'da padding değişmez, logo kayamaz */
  height: 68px;
  padding: 0;
  transition: background var(--ease), box-shadow var(--ease);
  z-index: 1050;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ed-navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.ed-navbar--scrolled {
  background: rgba(15,23,42,.97);
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.ed-nav-link {
  color: #c4cdd8 !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .45rem 1rem !important;
  border-radius: .6rem;
  transition: color var(--ease), background var(--ease);
}
.ed-nav-link:hover, .ed-nav-link.active {
  color: var(--text) !important;
  background: rgba(255,255,255,.06);
}
.ed-toggler {
  border: none; background: none; padding: .35rem;
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.ed-toggler span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 2px;
  transition: all .3s;
}
.ed-toggler:focus { outline: none; box-shadow: none; }

/* Logo kaymasını önle */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.navbar-brand img {
  display: block;
  height: 36px;
  width: auto;
}

/* ══════════════════════════════════════════
   MOBİL HAMBURGER
══════════════════════════════════════════ */
.ed-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 9px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  flex-shrink: 0;
}
.ed-hamburger:hover { background: rgba(0,242,254,.08); border-color: rgba(0,242,254,.25); }
.ed-ham-line {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .35s ease, opacity .35s ease, width .35s ease;
}
.ed-ham-line:nth-child(3) { width: 60%; }
.ed-hamburger.is-active .ed-ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ed-hamburger.is-active .ed-ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ed-hamburger.is-active .ed-ham-line:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBİL OVERLAY MENÜ
══════════════════════════════════════════ */
.ed-mobile-overlay {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100dvh;
  background: #080f1d;
  border-left: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.ed-mobile-overlay.open { transform: translateX(0); }

.ed-mob-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s ease;
}
.ed-mob-backdrop.open { opacity: 1; pointer-events: auto; }

/* Kapat butonu */
.ed-mob-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  margin-bottom: 2rem;
}
.ed-mob-close:hover { background: rgba(0,242,254,.08); color: var(--accent); border-color: rgba(0,242,254,.25); }

/* Logo */
.ed-mob-logo { margin-bottom: 2.5rem; }
.ed-mob-logo .ed-logo-text { font-size: 1.4rem; }

/* Nav linkleri */
.ed-mob-nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}
.ed-mob-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: #cbd5e1;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.3px;
  text-decoration: none;
  transition: color var(--ease), padding-left var(--ease);
  position: relative;
}
.ed-mob-link::before {
  content: attr(data-num);
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .05em;
  opacity: .7;
  min-width: 22px;
}
.ed-mob-link:hover {
  color: var(--text);
  padding-left: .5rem;
}
.ed-mob-link:last-child { border-bottom: none; }

/* Alt kısım */
.ed-mob-footer { margin-top: 2.5rem; }
.ed-mob-contact a {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--ease);
}
.ed-mob-contact a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.ed-hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ed-hero-bg { position: absolute; inset: 0; pointer-events: none; }

.ed-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.ed-glow-1 {
  width: 700px; height: 700px;
  background: rgba(0,242,254,.07);
  top: -200px; right: -150px;
}
.ed-glow-2 {
  width: 500px; height: 500px;
  background: rgba(79,172,254,.05);
  bottom: -150px; left: -100px;
}
.ed-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.min-vh-hero { min-height: calc(100vh - 80px); }

.ed-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.ed-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.78;
}

/* Hero cards */
.ed-hero-cards { position: relative; width: 380px; height: 420px; }

.ed-hcard {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}
.ed-hcard-1 { width: 240px; top: 50px; left: 30px; box-shadow: 0 20px 50px rgba(0,0,0,.4); animation: ed-float 7s ease-in-out infinite; }
.ed-hcard-2 { width: 190px; top: 0; right: 0; animation: ed-float 6s ease-in-out infinite; animation-delay: -2s; }
.ed-hcard-3 { width: 200px; bottom: 80px; right: 5px; z-index: 10; animation: ed-float 8s ease-in-out infinite; animation-delay: -4.5s; }
.ed-hcard-4 { width: 180px; bottom: 10px; left: 10px; z-index: 5; animation: ed-float 6.5s ease-in-out infinite; animation-delay: -1.5s; }

@keyframes ed-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

.ed-hcard-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,242,254,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent);
}
.ed-hcard-label { font-size: .72rem; color: var(--muted); }
.ed-hcard-val { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.ed-hbar-bg { background: rgba(255,255,255,.07); border-radius: 99px; height: 5px; margin-top: .75rem; }
.ed-hbar { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.ed-hcard-icon-sm {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,242,254,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--accent);
  margin-bottom: .5rem;
}
.ed-hcard-icon-sm--green { background: rgba(34,197,94,.12); color: #22c55e; }

.ed-badge-up {
  background: rgba(0,242,254,.12);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 99px;
}
.ed-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-top: .5rem;
}
.ed-spark {
  flex: 1;
  background: rgba(0,242,254,.18);
  border-radius: 2px;
}
.ed-spark--active { background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* Scroll hint */
.ed-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem;
}
.ed-scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: .4; }
}

/* ══════════════════════════════════════════
   COUNTERS
══════════════════════════════════════════ */
.ed-counters { padding: 0 0 2rem; }
.ed-counters-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ed-counter-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.ed-counter-item:last-child { border-right: none; }
.ed-counter-item:hover { background: rgba(0,242,254,.04); }
.ed-counter-num {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}
.ed-counter-icon {
  font-size: 1.9rem;
  color: var(--accent);
  margin-bottom: .6rem;
  display: block;
}
.ed-counter-label {
  font-size: .95rem;
  color: var(--text);
  margin-top: .3rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════ */
.ed-section { padding: 7rem 0; }
.ed-section--alt { background: var(--bg-alt); }
.ed-section-title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.ed-section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.85; }

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.ed-scard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.ed-scard:hover {
  border-color: rgba(0,242,254,.28);
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
}
.ed-scard--hot {
  border-color: rgba(0,242,254,.22);
  background: linear-gradient(150deg, #182d45 0%, var(--bg-card) 100%);
}
.ed-scard-badge {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a1628; font-size: .7rem; font-weight: 700;
  padding: .25rem .75rem; border-radius: 99px;
  text-transform: uppercase; letter-spacing: .05em;
}

.ed-scard-img {
  height: 140px;
  background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.ed-scard-icon-bg {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(0,242,254,.1);
  border: 1px solid rgba(0,242,254,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--accent);
  transition: background var(--ease), transform var(--ease);
}
.ed-scard:hover .ed-scard-icon-bg { background: rgba(0,242,254,.18); transform: scale(1.06); }

.ed-scard-icon-bg--alt {
  background: rgba(79,172,254,.1);
  border-color: rgba(79,172,254,.18);
  color: var(--accent-2);
}
.ed-scard:hover .ed-scard-icon-bg--alt { background: rgba(79,172,254,.18); }

.ed-scard-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.ed-scard-cat {
  font-size: .72rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: .6rem;
}
.ed-scard-title {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: .8rem; line-height: 1.35;
}
.ed-scard-text {
  font-size: .95rem; color: var(--muted);
  line-height: 1.78; flex: 1; margin-bottom: 1.4rem;
}
.ed-scard-link {
  display: inline-flex; align-items: center;
  font-size: .9rem; font-weight: 600;
  color: var(--accent);
  transition: gap var(--ease), opacity var(--ease);
  gap: 4px;
}
.ed-scard-link:hover { opacity: .75; gap: 8px; color: var(--accent); }

/* ══════════════════════════════════════════
   PORTFOLIO / REFERANSLAR
══════════════════════════════════════════ */
.ed-filter-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: .45rem 1.2rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
}
.ed-filter-btn:hover, .ed-filter-btn.active {
  background: rgba(0,242,254,.1);
  border-color: rgba(0,242,254,.25);
  color: var(--accent);
}

.portfolio-item { transition: opacity .35s ease, transform .35s ease; }

.ed-pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.ed-pcard:hover {
  border-color: rgba(0,242,254,.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.ed-pcard-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.ed-pcard-thumb--1 { background: linear-gradient(135deg, #1a1a4e 0%, #0d3b6e 100%); }
.ed-pcard-thumb--2 { background: linear-gradient(135deg, #1a3a1a 0%, #0d5c2e 100%); }
.ed-pcard-thumb--3 { background: linear-gradient(135deg, #3a1a1a 0%, #6e1a0d 100%); }
.ed-pcard-thumb--4 { background: linear-gradient(135deg, #2a1a3a 0%, #4a0d6e 100%); }
.ed-pcard-thumb--5 { background: linear-gradient(135deg, #1a2a3a 0%, #0d3a5c 100%); }
.ed-pcard-thumb--6 { background: linear-gradient(135deg, #2a2a1a 0%, #5c4a0d 100%); }

/* Thumbnail pattern overlay */
.ed-pcard-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
/* Merkeze ikon */
.ed-pcard-thumb::after {
  content: '◈';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.12);
  line-height: 1;
}

.ed-pcard-overlay {
  position: absolute; inset: 0;
  background: rgba(0,242,254,.08);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}
.ed-pcard:hover .ed-pcard-overlay { opacity: 1; }

.ed-pcard-cta {
  background: var(--accent);
  color: #0a1628;
  padding: .55rem 1.4rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex; align-items: center; gap: .4rem;
  transform: translateY(6px);
  transition: transform var(--ease), box-shadow var(--ease);
}
.ed-pcard:hover .ed-pcard-cta { transform: translateY(0); box-shadow: 0 4px 20px rgba(0,242,254,.3); }

.ed-pcard-body { padding: 1.5rem 1.75rem 1.75rem; }
.ed-ptag {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: .25rem .8rem;
  border-radius: 99px;
  font-size: .74rem;
  font-weight: 500;
}
.ed-pcard-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: .6rem 0 .4rem; line-height: 1.35; }
.ed-pcard-sub { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ══════════════════════════════════════════
   LOGO MARQUEE
══════════════════════════════════════════ */
.ed-logos-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ed-logos-title {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #7a8fa6;
  font-weight: 600;
  margin-bottom: 2rem;
}
.ed-marquee-wrap { position: relative; overflow: hidden; }
.ed-marquee-wrap::before,
.ed-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px;
  z-index: 2;
}
.ed-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ed-marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ed-marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 112s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ed-logo-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .9rem 2rem;
  white-space: nowrap;
  transition: border-color var(--ease);
  flex-shrink: 0;
}
.ed-logo-item:hover { border-color: rgba(0,242,254,.2); }
.ed-logo-item span {
  font-weight: 600;
  font-size: .9rem;
  color: #7a8fa6;
  letter-spacing: .03em;
  transition: color var(--ease);
}
.ed-logo-item:hover span { color: var(--text); }

/* ══════════════════════════════════════════
   HAKKIMIZDA / NEDEN BİZ
══════════════════════════════════════════ */
.ed-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}
.ed-feature-row:hover { border-color: rgba(0,242,254,.2); }
.ed-feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(0,242,254,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
}

.ed-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: border-color var(--ease), transform var(--ease);
}
.ed-why-card--offset { margin-top: 1.5rem; }
.ed-why-card:hover {
  border-color: rgba(0,242,254,.2);
  transform: translateY(-4px);
}
.ed-why-icon {
  font-size: 1.7rem; color: var(--accent);
  display: block; margin-bottom: .9rem;
}
.ed-why-card h5 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; line-height: 1.4; }
.ed-why-card p  { font-size: .93rem; color: var(--muted); margin: 0; line-height: 1.72; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.ed-cta-banner {
  position: relative;
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.ed-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(0,242,254,.055) 0%, transparent 70%);
  pointer-events: none;
}
.ed-cta-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.4px;
}
.ed-cta-banner-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.ed-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--ease), transform var(--ease);
}
.ed-contact-card:hover {
  border-color: rgba(0,242,254,.22);
  transform: translateX(4px);
}
.ed-contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(0,242,254,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--accent);
}
.ed-contact-label { font-size: .76rem; color: var(--muted); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.ed-contact-val { font-size: .95rem; font-weight: 600; color: var(--text); transition: color var(--ease); }
.ed-contact-val:hover { color: var(--accent); }

/* Form elements */
.ed-form-label { display: block; font-size: .85rem; font-weight: 600; color: #c4cdd8; margin-bottom: .5rem; letter-spacing: .01em; }
.ed-form-input {
  display: block; width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .85rem 1.1rem;
  color: var(--text);
  font-family: var(--font); font-size: .9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none; resize: vertical;
}
.ed-form-input::placeholder { color: #5e7a96; }
.ed-form-input:focus {
  outline: none;
  border-color: rgba(0,242,254,.4);
  box-shadow: 0 0 0 3px rgba(0,242,254,.08);
  background: #1a2540;
}
.ed-form-select { cursor: pointer; }
.ed-form-select option { background: #1e293b; color: var(--text); }

/* Validasyon stilleri */
.was-validated .ed-form-input:invalid,
.ed-form-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.was-validated .ed-form-input:valid {
  border-color: rgba(34,197,94,.4);
}
.invalid-feedback {
  display: none;
  font-size: .8rem;
  color: #f87171;
  margin-top: .35rem;
  padding-left: .25rem;
}
.was-validated .ed-form-input:invalid ~ .invalid-feedback {
  display: block;
}

.ed-form-success {
  margin-top: 1.25rem;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #4ade80;
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.ed-footer {
  background: #080f1d;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}
.ed-footer-desc { font-size: .92rem; color: var(--muted); line-height: 1.8; max-width: 300px; }
.ed-social {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .95rem;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.ed-social:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,242,254,.07);
}
.ed-footer-heading {
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #c4cdd8; margin-bottom: 1.4rem;
}
.ed-footer-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: .7rem;
}
.ed-footer-list a { font-size: .9rem; color: var(--muted); transition: color var(--ease); }
.ed-footer-list a:hover { color: var(--text); }
.ed-footer-contact li {
  display: flex; align-items: center;
  color: var(--muted); font-size: .9rem;
}
.ed-footer-contact i { color: var(--accent); }
.ed-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .82rem; color: #7a8fa6;
}

/* ══════════════════════════════════════════
   SCROLL FADE-IN
══════════════════════════════════════════ */
.ed-fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.ed-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 992px) {
  .ed-hero { padding: 7rem 0 4rem; }
  /* Bootstrap collapse'ı mobilde gizle — kendi overlay'imiz var */
  .navbar-collapse { display: none !important; }
  .ed-counter-item { border-right: none; border-bottom: 1px solid var(--border); }
  .ed-counter-item:last-child { border-bottom: none; }
  .ed-why-card--offset { margin-top: 0; }
}
@media (max-width: 768px) {
  .ed-counters-wrap .row > div:nth-child(odd) .ed-counter-item { border-right: 1px solid var(--border); }
  .ed-counters-wrap .row > div:nth-child(even) .ed-counter-item { border-right: none; }
}
@media (max-width: 576px) {
  .ed-hero-title { letter-spacing: -.5px; }
  .ed-cta-banner { padding: 3.5rem 0; }
  .ed-footer-bottom { flex-direction: column; text-align: center; }
  .ed-hero { padding: 6rem 0 3.5rem; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e3050; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2a4070; }

/* ══════════════════════════════════════════
   TEKLİF MODAL
══════════════════════════════════════════ */
.ed-modal-content {
  background: #131f35;
  border: 1px solid rgba(0,242,254,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ed-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0,242,254,.04) 0%, transparent 60%);
}
.ed-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
  margin: 0 0 .25rem;
}
.ed-modal-sub {
  font-size: .83rem;
  color: var(--muted);
  margin: 0;
}
.ed-modal-close {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 1.35rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  margin-left: 1rem;
}
.ed-modal-close:hover { background: rgba(239,68,68,.1); color: #f87171; border-color: rgba(239,68,68,.25); }
.ed-modal-body { padding: 1.75rem 2rem 2rem; }

/* Bütçe seçici */
.ed-budget-opt {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.ed-budget-opt input[type="radio"] { display: none; }
.ed-budget-opt span {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  transition: all var(--ease);
  cursor: pointer;
}
.ed-budget-opt input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,242,254,.08);
}
.ed-budget-opt:hover span { border-color: rgba(0,242,254,.3); color: var(--text); }

/* Modal backdrop rengi */
.modal-backdrop { background-color: #000; }

@media (max-width: 576px) {
  .ed-modal-header { padding: 1.5rem 1.25rem 1rem; }
  .ed-modal-body   { padding: 1.25rem; }
}

/* ══════════════════════════════════════════
   HİZMET DETAY SAYFASI (hizmet-detay.html)
══════════════════════════════════════════ */

/* Hero */
.hd-hero {
  position: relative;
  padding: 10rem 0 7rem;
  overflow: hidden;
  text-align: center;
}
.hd-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 0%, rgba(0,242,254,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hd-back-link {
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease);
}
.hd-back-link:hover { color: var(--accent); }

.hd-hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
}
.hd-hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}

/* Görsel kutusu */
.hd-visual-box {
  position: relative;
  padding: 1rem;
}
.hd-browser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.hd-browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: #162033;
  border-bottom: 1px solid var(--border);
}
.hd-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hd-dot--red    { background: #ff5f57; }
.hd-dot--yellow { background: #ffbd2e; }
.hd-dot--green  { background: #28c840; }
.hd-url-bar {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .25rem .75rem;
  font-size: .72rem;
  color: #475569;
  text-align: center;
}
.hd-browser-body { padding: 1.25rem; }
.hd-mock-hero {
  height: 80px;
  background: linear-gradient(135deg, rgba(0,242,254,.08), rgba(79,172,254,.06));
  border-radius: .5rem;
  margin-bottom: 1rem;
}
.hd-mock-lines { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.hd-mock-line {
  height: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
}
.hd-mock-line--accent { background: rgba(0,242,254,.2); }
.hd-mock-cards { display: flex; gap: .6rem; }
.hd-mock-card {
  flex: 1; height: 50px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: .5rem;
}

/* Floating badges */
.hd-float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: flex;
  align-items: center;
}
.hd-float-badge i { color: var(--accent); }
.hd-float-badge--1 { top: 1rem; right: -1rem; }
.hd-float-badge--2 { bottom: 1.5rem; left: -1rem; }

/* Feature list */
.hd-feature-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: #cbd5e1;
}
.hd-feature-item i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Süreç kartları */
.hd-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.hd-step-card:hover {
  border-color: rgba(0,242,254,.25);
  transform: translateY(-5px);
}
.hd-step-card--active {
  border-color: rgba(0,242,254,.3);
  background: linear-gradient(150deg, #182d45 0%, var(--bg-card) 100%);
}
.hd-step-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: .9;
}
.hd-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.hd-step-text { font-size: .85rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* Alt hizmet kartları */
.hd-sub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: border-color var(--ease), transform var(--ease);
}
.hd-sub-card:hover {
  border-color: rgba(0,242,254,.25);
  transform: translateY(-4px);
}
.hd-sub-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,242,254,.1);
  border: 1px solid rgba(0,242,254,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent);
  margin-bottom: 1.1rem;
}
.hd-sub-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.hd-sub-text  { font-size: .84rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* CTA */
.hd-cta {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hd-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(0,242,254,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hd-cta-box {
  background: var(--bg-card);
  border: 1px solid rgba(0,242,254,.18);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,242,254,.06);
}
.hd-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,242,254,.04) 0%, transparent 50%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hd-cta-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.3px;
}
.hd-cta-sub { font-size: .95rem; color: var(--muted); max-width: 480px; }

@media (max-width: 768px) {
  .hd-cta-box { padding: 2rem; }
  .hd-float-badge--1 { right: 0; }
  .hd-float-badge--2 { left: 0; }
}

/* ══════════════════════════════════════════
   LANSMANA ÖZEL KAMPANYA
══════════════════════════════════════════ */
.ed-lansman {
  position: relative;
  overflow: hidden;
}
.ed-lansman-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ed-lansman-glow--left {
  background: rgba(0,242,254,.07);
  top: -100px; left: -200px;
}
.ed-lansman-glow--right {
  background: rgba(79,172,254,.06);
  bottom: -100px; right: -200px;
}

/* Ana kutu */
.ed-lansman-box {
  background: var(--bg-card);
  border: 1px solid rgba(0,242,254,.18);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,242,254,.05), 0 32px 80px rgba(0,0,0,.3);
}
.ed-lansman-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,242,254,.04) 0%, transparent 70%);
  pointer-events: none;
}

/* "Canlı" badge */
.ed-lansman-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
  border-radius: 999px;
  padding: .3rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ed-lansman-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: ed-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ed-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* Başlık */
.ed-lansman-title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.3px;
}

/* Açıklama */
.ed-lansman-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.82;
  max-width: 540px;
}
.ed-lansman-desc strong { color: var(--text); font-weight: 700; }

/* Dahil olan madde listesi */
.ed-lansman-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--muted);
}
.ed-lansman-item i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ─── Kontenjan Kutusu ─── */
.ed-lansman-quota {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.ed-lansman-quota-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.ed-lansman-quota-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
}
.ed-lansman-quota-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ed-lansman-quota-num span {
  font-size: 1.2rem;
  font-weight: 600;
  opacity: .5;
  -webkit-text-fill-color: var(--muted);
}

/* Progress bar */
.ed-lansman-bar-bg {
  height: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 99px;
  overflow: hidden;
}
.ed-lansman-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(0,242,254,.4);
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.ed-lansman-bar-hint {
  font-size: .78rem;
  color: #5e7a96;
  margin: 0;
}

/* Slot göstergeleri */
.ed-slot {
  flex: 1;
  aspect-ratio: 1;
  max-width: 52px;
  border-radius: 12px;
  border: 1.5px solid rgba(0,242,254,.25);
  background: rgba(0,242,254,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  transition: all var(--ease);
}
.ed-slot--taken {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: #374151;
}

/* Divider */
.ed-lansman-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

/* Beklenti listesi */
.ed-lansman-expect-title {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7a8fa6;
  font-weight: 600;
  margin-bottom: .75rem;
}
.ed-lansman-expect-item {
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
.ed-lansman-expect-item i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; }

@media (max-width: 768px) {
  .ed-lansman-box { padding: 2rem 1.5rem; }
  .ed-lansman-quota { padding: 1.5rem; }
}
