/* ═══════════════════════════════════════════════════════
   Vertex Corporate Theme — style.css
   Fonts  : Syne (headings) + DM Sans (body)
   Colors : Deep Navy #1a1a2e + Lime #c8f04a + Cream #f5f4f0
   Prefix : vx-
   ═══════════════════════════════════════════════════════ */

/* Font: layout.php <head> içinde <link> olarak yükleniyor */

/* ── CSS Değişkenleri ───────────────────────────────── */
:root {
  --vx-primary:       #1a1a2e;
  --vx-primary-d:     #12121f;
  --vx-accent:        #c8f04a;
  --vx-accent-d:      #aad630;
  --vx-accent-l:      rgba(200,240,74,0.12);
  --vx-text:          #2d2d3a;
  --vx-text-muted:    #7a7a8c;
  --vx-bg:            #ffffff;
  --vx-bg-alt:        #f5f4f0;
  --vx-border:        #e8e5e0;
  --vx-radius:        10px;
  --vx-radius-sm:     6px;
  --vx-shadow:        0 4px 24px rgba(26,26,46,0.08);
  --vx-shadow-lg:     0 12px 40px rgba(26,26,46,0.14);

  /* Font */
  --font-heading:     'Syne', sans-serif;
  --font-body:        'DM Sans', sans-serif;

  /* ThemeCore modül eşlemeleri */
  --tc-primary:       var(--vx-primary);
  --tc-primary-d:     var(--vx-primary-d);
  --tc-primary-l:     var(--vx-accent-l);
  --tc-dark:          var(--vx-primary);
  --tc-text:          var(--vx-text);
  --tc-text-muted:    var(--vx-text-muted);
  --tc-border:        var(--vx-border);
  --tc-bg:            var(--vx-bg);
  --tc-bg2:           var(--vx-bg-alt);
  --tc-radius:        var(--vx-radius);
  --font:             var(--font-heading);
  --font-2:           var(--font-body);
}

/* ── Reset ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  color: var(--vx-text);
  background: var(--vx-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
a    { text-decoration: none; color: inherit; transition: all 0.25s ease; }
img  { max-width: 100%; height: auto; display: block; }
ul, li { list-style: none; }

/* ── Container ──────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

/* ── Tipografi ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--vx-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ── Animasyonlar ───────────────────────────────────── */
@keyframes vxFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes vxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.vx-animate,
.tc-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vx-animate.visible,
.tc-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.tc-animate.delay-1, .vx-animate.delay-1 { transition-delay: 0.10s; }
.tc-animate.delay-2, .vx-animate.delay-2 { transition-delay: 0.20s; }
.tc-animate.delay-3, .vx-animate.delay-3 { transition-delay: 0.30s; }
.tc-animate.delay-4, .vx-animate.delay-4 { transition-delay: 0.40s; }

.vx-fade-in { animation: vxFadeIn 0.7s ease both; }
.vx-fade-up { animation: vxFadeUp 0.7s ease both; }
.vx-fade-up.delay-1 { animation-delay: 0.1s; }
.vx-fade-up.delay-2 { animation-delay: 0.2s; }

/* ── Butonlar ───────────────────────────────────────── */
.vx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--vx-radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.vx-btn-primary {
  background: var(--vx-accent);
  color: var(--vx-primary);
}
.vx-btn-primary:hover {
  background: var(--vx-accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200,240,74,0.3);
}
.vx-btn-dark {
  background: var(--vx-primary);
  color: #ffffff;
}
.vx-btn-dark:hover {
  background: var(--vx-primary-d);
  transform: translateY(-2px);
  box-shadow: var(--vx-shadow);
}
.vx-btn-outline {
  background: transparent;
  color: var(--vx-primary);
  border: 1.5px solid var(--vx-border);
}
.vx-btn-outline:hover {
  border-color: var(--vx-primary);
  background: var(--vx-primary);
  color: #ffffff;
  transform: translateY(-2px);
}
.vx-btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.vx-btn-outline-light:hover {
  border-color: var(--vx-accent);
  color: var(--vx-accent);
  background: var(--vx-accent-l);
}

/* ── Section ────────────────────────────────────────── */
.vx-section {
  padding: 90px 0;
}
.vx-section-alt {
  background: var(--vx-bg-alt);
}
.vx-section-dark {
  background: var(--vx-primary);
}
.vx-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 30px;
  background: var(--vx-accent-l);
  border: 1px solid rgba(200,240,74,0.3);
  color: #7a8a00;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.vx-section-badge i { color: var(--vx-accent-d); }

.vx-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--vx-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.vx-section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.vx-section-subtitle {
  font-size: 1rem;
  color: var(--vx-text-muted);
  margin-top: 0.75rem;
  line-height: 1.75;
}

/* ── Chip / badge ───────────────────────────────────── */
.vx-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--vx-accent-l);
  color: #6b7a00;
  border: 1px solid rgba(200,240,74,0.25);
}

/* ══════════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════════ */
.vx-topbar {
  background: var(--vx-primary);
  padding: 8px 0;
  font-size: 0.8rem;
}
.vx-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.vx-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.vx-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}
.vx-topbar-item i { color: var(--vx-accent); font-size: 0.75rem; }
.vx-topbar-item a { color: rgba(255,255,255,0.55); }
.vx-topbar-item a:hover { color: var(--vx-accent); }
.vx-topbar-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vx-topbar-social a {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  transition: all 0.2s;
}
.vx-topbar-social a:hover {
  background: var(--vx-accent-l);
  color: var(--vx-accent);
}

/* ══════════════════════════════════════════════════════
   HEADER
   - position: fixed, top = topbar yüksekliği
   - Mobilde padding:0, border-radius:0
   - İçeride kendi max-width/padding — ayrı container YOK
══════════════════════════════════════════════════════ */
.vx-header-wrap {
  position: fixed;
  top: 40px; /* topbar ~40px */
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  padding: 0 1.5rem;
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.vx-header-wrap.scrolled {
  top: 0;
  padding: 0;
}
.vx-header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(232,229,224,0.9);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(26,26,46,0.06);
  transition: all 0.35s ease;
  width: 100%;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}
.vx-header-wrap.scrolled .vx-header {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  max-width: 100%;
  background: rgba(255,255,255,0.97);
}
.vx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

/* Logo */
.vx-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.vx-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--vx-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vx-accent);
  flex-shrink: 0;
}
.vx-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--vx-primary);
  letter-spacing: -0.03em;
}

/* Nav */
.vx-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.vx-nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vx-text);
  padding: 8px 0;
  position: relative;
}
.vx-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--vx-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.vx-nav-link:hover,
.vx-nav-link.active { color: var(--vx-primary); }
.vx-nav-link:hover::after,
.vx-nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header sağ */
.vx-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobil toggle */
.vx-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.vx-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vx-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.vx-nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vx-nav-toggle.open span:nth-child(2) { opacity: 0; }
.vx-nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.vx-hero {
  position: relative;
  background: var(--vx-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

/* Arka plan görseli */
.vx-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
/* Görsel üstü lacivert overlay */
.vx-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,46,0.97) 0%,
    rgba(26,26,46,0.90) 38%,
    rgba(26,26,46,0.50) 62%,
    rgba(26,26,46,0.20) 100%
  );
}

/* Geometrik çizgi desen */
.vx-hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
  overflow: hidden;
}

.vx-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 170px 0 80px;
  flex: 1;
}
.vx-hero-content { color: #ffffff; }

.vx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 30px;
  background: rgba(200,240,74,0.12);
  border: 1px solid rgba(200,240,74,0.28);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--vx-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.vx-hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-accent);
  flex-shrink: 0;
}

.vx-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.vx-hero-title .accent { color: var(--vx-accent); }

.vx-hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.vx-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Stats bar — hero içinde altta */
.vx-hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  padding: 22px 0;
}
.vx-hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.vx-hero-stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.vx-hero-stat:last-child { border-right: none; }
.vx-stat-num {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--vx-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.vx-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Hero Sağ — İletişim kartı */
.vx-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--vx-radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.vx-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--vx-accent);
}
.vx-hero-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.vx-hero-card > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.vx-hero-card .vx-form-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #ffffff;
}
.vx-hero-card .vx-form-input::placeholder { color: rgba(255,255,255,0.35); }
.vx-hero-card .vx-form-input:focus {
  border-color: var(--vx-accent);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(200,240,74,0.15);
}

/* ══════════════════════════════════════════════════════
   FORM
══════════════════════════════════════════════════════ */
.vx-form-group { margin-bottom: 12px; }
.vx-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vx-text);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vx-form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--vx-radius-sm);
  border: 1.5px solid var(--vx-border);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--vx-text);
  outline: none;
  transition: all 0.2s;
}
.vx-form-input:focus {
  border-color: var(--vx-primary);
  box-shadow: 0 0 0 3px rgba(26,26,46,0.07);
}
.vx-form-submit {
  width: 100%;
  background: var(--vx-accent);
  color: var(--vx-primary);
  border: none;
  border-radius: var(--vx-radius-sm);
  padding: 11px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.vx-form-submit:hover { background: var(--vx-accent-d); }

/* Alert */
.vx-alert {
  padding: 10px 14px;
  border-radius: var(--vx-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: none;
}
.vx-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.vx-alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ══════════════════════════════════════════════════════
   İÇ SAYFA BAŞLIĞI
══════════════════════════════════════════════════════ */
.vx-page-header {
  background: var(--vx-primary);
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.vx-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,240,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,74,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.vx-page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.vx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.vx-breadcrumb a { color: var(--vx-accent); }
.vx-breadcrumb a:hover { color: rgba(200,240,74,0.7); }
.vx-breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════
   MODÜL SARICI (module-page.php)
══════════════════════════════════════════════════════ */
.vx-module-wrap {
  min-height: 300px;
}

/* ══════════════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════════════ */
.vx-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.vx-blog-card {
  background: #ffffff;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.vx-blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--vx-primary);
  box-shadow: var(--vx-shadow-lg);
}
.vx-blog-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vx-blog-card:hover .vx-blog-thumb { transform: scale(1.04); }
.vx-blog-thumb-wrap { overflow: hidden; }
.vx-blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--vx-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-primary);
  font-size: 2.5rem;
  opacity: 0.2;
}
.vx-blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vx-blog-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7a00;
  background: var(--vx-accent-l);
  border: 1px solid rgba(200,240,74,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: max-content;
}
.vx-blog-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--vx-primary);
}
.vx-blog-title a:hover { color: var(--vx-text-muted); }
.vx-blog-excerpt {
  font-size: 0.88rem;
  color: var(--vx-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vx-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--vx-border);
  padding-top: 14px;
  font-size: 0.78rem;
  color: var(--vx-text-muted);
}
.vx-blog-meta span { display: flex; align-items: center; gap: 5px; }
.vx-blog-meta i { color: var(--vx-primary); }
.vx-blog-read {
  font-weight: 700;
  color: var(--vx-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.vx-blog-card:hover .vx-blog-read { gap: 8px; }

/* ══════════════════════════════════════════════════════
   İLETİŞİM SAYFASI
══════════════════════════════════════════════════════ */
.vx-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.vx-contact-info-card {
  background: var(--vx-primary);
  border-radius: var(--vx-radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.vx-contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,240,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,74,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.vx-contact-info-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 8px;
  position: relative;
}
.vx-contact-info-card > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}
.vx-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.vx-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.vx-contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(200,240,74,0.12);
  border: 1px solid rgba(200,240,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.vx-contact-info-item h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.vx-contact-info-item p,
.vx-contact-info-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.vx-contact-info-item a:hover { color: var(--vx-accent); }

.vx-contact-form-card {
  background: #ffffff;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
  padding: 40px;
  box-shadow: var(--vx-shadow);
  border-top: 3px solid var(--vx-accent);
}
.vx-contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.vx-contact-form-card > p {
  font-size: 0.88rem;
  color: var(--vx-text-muted);
  margin-bottom: 28px;
}
.vx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════
   404 SAYFASI
══════════════════════════════════════════════════════ */
.vx-error-wrap {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px; /* fixed header */
}
.vx-error-inner { text-align: center; max-width: 520px; }
.vx-error-code {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 800;
  color: var(--vx-primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.12;
}
.vx-error-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.vx-error-desc {
  color: var(--vx-text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.vx-footer {
  background: var(--vx-primary);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}
.vx-footer-main {
  padding: 80px 0 50px;
}
.vx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.vx-footer-col h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.vx-footer-about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  margin-top: 14px;
}
.vx-footer-socials {
  display: flex;
  gap: 8px;
}
.vx-footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: all 0.25s;
}
.vx-footer-socials a:hover {
  background: var(--vx-accent-l);
  color: var(--vx-accent);
  border-color: rgba(200,240,74,0.3);
  transform: translateY(-2px);
}
.vx-footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vx-footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.vx-footer-links a:hover {
  color: var(--vx-accent);
  padding-left: 4px;
}
.vx-footer-links a i { font-size: 0.65rem; color: rgba(200,240,74,0.5); }
.vx-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vx-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}
.vx-footer-contact-list i { color: var(--vx-accent); margin-top: 3px; font-size: 0.85rem; }
.vx-footer-contact-list a { color: rgba(255,255,255,0.45); }
.vx-footer-contact-list a:hover { color: var(--vx-accent); }

/* Footer alt çizgi — accent bant */
.vx-footer-bottom {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.vx-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.vx-footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.vx-footer-bottom-links {
  display: flex;
  gap: 20px;
}
.vx-footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.vx-footer-bottom-links a:hover { color: var(--vx-accent); }

/* Accent şerit — footer en altı */
.vx-footer-accent-bar {
  height: 4px;
  background: var(--vx-accent);
}

/* ── Yukarı çık ─────────────────────────────────────── */
.vx-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--vx-accent);
  color: var(--vx-primary);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 999;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(200,240,74,0.3);
}
.vx-back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.vx-back-top:hover { background: var(--vx-accent-d); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════
   YARDIMCI
══════════════════════════════════════════════════════ */
.vx-prose {
  font-family: var(--font-body);
  color: var(--vx-text);
  line-height: 1.85;
  font-size: 1.02rem;
}
.vx-prose h2, .vx-prose h3 { margin: 2rem 0 0.75rem; }
.vx-prose p { margin-bottom: 1rem; }


/* Hero içindeki container tam genişlik */
.vx-hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
}
.vx-hero > .container > .vx-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}
/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vx-hero-inner       { grid-template-columns: 1fr; gap: 40px; }
  .vx-hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .vx-hero-stat:nth-child(2) { border-right: none; }
  .vx-footer-grid      { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .vx-contact-grid     { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  /* Taşma önleme */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Header */
  .vx-header-wrap { top: 0; padding: 0; left: 0; right: 0; }
  .vx-header { border-radius: 0; border-left: none; border-right: none; border-top: none; max-width: 100%; }
  .vx-header-inner { padding: 0 1.25rem; }
  .vx-nav { /* mobil: gizli başlar */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--vx-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 1001;
  }
  .vx-nav.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .vx-nav .vx-nav-link { font-size: 1.25rem; color: #ffffff; }
  .vx-nav .vx-nav-link::after { background: var(--vx-accent); }
  .vx-nav-toggle { display: flex; z-index: 1002; }
  .vx-header-actions .vx-btn { display: none; }

  /* Hero */
  .vx-hero-inner { padding: 130px 0 60px; gap: 32px; }
  .vx-hero-stats { margin: 0; }
  .vx-hero-stats-inner { grid-template-columns: repeat(2,1fr); padding: 0 1.25rem; }
  .vx-hero-stat:nth-child(2) { border-right: none; }
  .vx-hero-stat:nth-child(3), .vx-hero-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }

  /* Genel */
  .vx-section { padding: 60px 0; }
  .container   { padding: 0 1.25rem; }
  .vx-footer-grid { grid-template-columns: 1fr; }
  .vx-footer-bottom-inner { flex-direction: column; text-align: center; }
  .vx-form-row { grid-template-columns: 1fr; }
  .vx-page-header { padding-top: 120px; }
  .vx-contact-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .vx-hero-stats-inner { grid-template-columns: 1fr 1fr; }
  .vx-hero-title { font-size: 2.2rem; }
  .vx-blog-grid { grid-template-columns: 1fr; }
}
