/* ============ VCONSYST — global styles ============ */
:root {
  --green: #1a9c3e;
  --green-bright: #2fd460;
  --green-deep: #0b3d1c;
  --gray: #adadad;
  --ink: #10231a;
  --ink-soft: #40564a;
  --bg: #ffffff;
  --bg-alt: #f2f7f3;
  --dark: #06120b;
  --dark-2: #0a1f12;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(6, 30, 15, .10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ Buttons ============ */
.btn { display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: 15px; letter-spacing: .2px; border: none; cursor: pointer; font-family: inherit; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--green) 0%, #14833a 100%); color: #fff; box-shadow: 0 6px 24px rgba(26, 156, 62, .35); }
.btn-primary:hover { box-shadow: 0 10px 32px rgba(26, 156, 62, .5); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.35); color: #eafff0; backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ============ Topbar ============ */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s ease, box-shadow .3s ease; }
.topbar.scrolled { background: rgba(6, 18, 11, .92); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,.35); }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(47,212,96,.25)); }
.brand-name { font-weight: 800; letter-spacing: 3px; font-size: 17px; color: #fff; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { color: rgba(255,255,255,.82); font-size: 14.5px; font-weight: 600; padding: 9px 14px; border-radius: 8px; background: none; border: none; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 6px; transition: color .15s, background .15s; }
.nav-link:hover, .nav-link.active { color: var(--green-bright); background: rgba(47,212,96,.08); }
.nav-item { position: relative; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; background: rgba(10, 31, 18, .97); backdrop-filter: blur(16px); border: 1px solid rgba(47,212,96,.18); border-radius: 12px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease; box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.dropdown a:hover { background: rgba(47,212,96,.12); color: var(--green-bright); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.lang-switch { color: rgba(255,255,255,.4); font-size: 13px; font-weight: 700; display: flex; gap: 6px; }
.lang { color: rgba(255,255,255,.5); } .lang.active, .lang:hover { color: var(--green-bright); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: radial-gradient(1200px 700px at 50% 30%, #123f22 0%, var(--dark-2) 45%, var(--dark) 100%); }
#scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 140px 24px 110px; max-width: 860px; pointer-events: none; }
.hero-content a { pointer-events: auto; }
.hero-kicker { color: var(--green-bright); font-weight: 700; letter-spacing: 4px; text-transform: uppercase; font-size: 12.5px; margin-bottom: 18px; text-shadow: 0 0 20px rgba(47,212,96,.4); }
.hero h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; text-shadow: 0 4px 40px rgba(0,0,0,.5); }
.hero h1 .grad { background: linear-gradient(100deg, var(--green-bright), #9ff0b8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: rgba(230, 245, 235, .78); font-size: clamp(15px, 2vw, 18.5px); max-width: 640px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px; z-index: 2; }
.scroll-hint span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--green-bright); border-radius: 3px; animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* ============ Stats ============ */
.stats { background: var(--dark-2); border-top: 1px solid rgba(47,212,96,.12); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--green-bright); letter-spacing: -1px; }
.stat span { color: rgba(255,255,255,.55); font-size: 13.5px; font-weight: 600; letter-spacing: .5px; }

/* ============ Sections ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-kicker { color: var(--green); font-weight: 800; letter-spacing: 3px; text-transform: uppercase; font-size: 12.5px; margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 44px; max-width: 640px; }

/* Cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(6,30,15,.14); }
.card-icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -.3px; }
.card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; }
.card-link { color: var(--green); font-weight: 700; font-size: 14.5px; }
.card-link:hover { color: var(--green-deep); }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.product { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 26px 24px; transition: transform .2s, border-color .2s, box-shadow .2s; position: relative; }
.product:hover { transform: translateY(-4px); border-color: var(--green); box-shadow: var(--shadow); }
.product .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--c, var(--green)); display: block; margin-bottom: 14px; box-shadow: 0 0 0 5px color-mix(in srgb, var(--c, var(--green)) 18%, transparent); }
.product h3 { font-size: 17.5px; margin-bottom: 4px; }
.product p { color: var(--ink-soft); font-size: 13.5px; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.steps li { position: relative; padding-top: 8px; }
.step-no { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #14833a); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; box-shadow: 0 6px 18px rgba(26,156,62,.35); }
.steps h3 { font-size: 17.5px; margin-bottom: 6px; }
.steps p { color: var(--ink-soft); font-size: 14.5px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--green-deep) 0%, #14612e 55%, var(--green) 100%); padding: 64px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.6px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.75); }

/* ============ Footer ============ */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid a { display: block; padding: 4px 0; font-size: 14.5px; color: rgba(255,255,255,.65); }
.footer-grid a:hover { color: var(--green-bright); }
.footer-brand { margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-contact { font-size: 14.5px; }
.footer-contact a { display: inline !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13px; color: rgba(255,255,255,.4); }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .cards-3, .steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards-3, .steps { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint span { animation: none; }
}

/* ============ İç sayfalar ============ */
.page-hero { background: radial-gradient(900px 420px at 50% -10%, #16522a 0%, var(--dark-2) 55%, var(--dark) 100%); padding: 150px 0 64px; color: #fff; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.breadcrumb a { color: var(--green-bright); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.page-hero .lead { color: rgba(230,245,235,.75); font-size: clamp(15px, 2vw, 17.5px); max-width: 680px; }

/* Ürün sayfası düzeni */
.prod-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 44px; align-items: start; }
.prod-content h2 { font-size: 24px; letter-spacing: -.4px; margin: 36px 0 14px; }
.prod-content h2:first-child { margin-top: 0; }
.prod-content p { color: var(--ink-soft); margin-bottom: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1.5px solid #d9e6dc; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; }
.chip::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.check-list { list-style: none; margin: 8px 0; }
.check-list li { padding: 7px 0 7px 30px; position: relative; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: rgba(26,156,62,.12); color: var(--green); font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.img-ph { background: linear-gradient(135deg, #e8f1ea, #d7e6db); border: 1px dashed #b9d0bf; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #6d8a76; font-size: 14px; font-weight: 600; min-height: 220px; margin: 10px 0 6px; text-align: center; padding: 20px; }

/* Yapışkan teklif kartı */
.aside-card { position: sticky; top: 96px; background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.aside-card h3 { font-size: 18px; margin-bottom: 6px; }
.aside-card .hint { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.quick-actions { display: grid; gap: 10px; margin-top: 14px; }
.btn-call, .btn-wa { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14.5px; border: 1.5px solid #e3ece5; transition: all .15s; }
.btn-call:hover { border-color: var(--green); color: var(--green); }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #1fb457; }

/* Formlar */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #d9e6dc; border-radius: 10px; font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff; transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,156,62,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.form-success { display: none; background: rgba(26,156,62,.1); border: 1px solid rgba(26,156,62,.3); color: var(--green-deep); padding: 14px 18px; border-radius: 10px; font-weight: 600; margin-top: 14px; }
.form-success.show { display: block; }

/* Teklif bölümü (ürün sayfası altı) */
.quote-section { background: var(--bg-alt); border-top: 1px solid #e3ece5; }
.quote-box { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-thumb { height: 170px; background: linear-gradient(135deg, #14612e, #1a9c3e); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blog-body { padding: 22px; }
.blog-body .date { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.blog-body h3 { font-size: 17.5px; margin: 8px 0; letter-spacing: -.3px; }
.blog-body p { font-size: 14px; color: var(--ink-soft); }

/* Referanslar */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ref-logo { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); height: 96px; display: flex; align-items: center; justify-content: center; color: #9ab3a0; font-weight: 700; letter-spacing: 1px; font-size: 13px; padding: 14px; }
.ref-logo img { max-height: 60px; max-width: 85%; width: auto; object-fit: contain; }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cert-card { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.cert-card .icon { font-size: 38px; margin-bottom: 12px; }
.cert-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.cert-card p { font-size: 13.5px; color: var(--ink-soft); }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.info-rows { display: grid; gap: 14px; margin-top: 10px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid #e3ece5; border-radius: 12px; padding: 18px; }
.info-row .ic { font-size: 22px; }
.info-row h4 { font-size: 14.5px; margin-bottom: 2px; }
.info-row p, .info-row a { font-size: 14.5px; color: var(--ink-soft); }
.map-ph { background: linear-gradient(135deg, #e8f1ea, #d7e6db); border: 1px dashed #b9d0bf; border-radius: var(--radius); height: 260px; display: flex; align-items: center; justify-content: center; color: #6d8a76; font-weight: 600; margin-top: 24px; }

/* İki kolonlu genel içerik */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* Mobil menü */
@media (max-width: 960px) {
  .topbar.menu-open { background: rgba(6,18,11,.97); }
  .topbar.menu-open .nav { display: flex; flex-direction: column; align-items: stretch; gap: 2px; position: fixed; top: 68px; left: 0; right: 0; background: rgba(6,18,11,.97); backdrop-filter: blur(14px); padding: 12px 20px 24px; margin: 0; border-bottom: 1px solid rgba(47,212,96,.15); max-height: calc(100vh - 68px); overflow-y: auto; }
  .topbar.menu-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border: none; background: rgba(255,255,255,.04); margin: 4px 0 8px; }
  .topbar.menu-open .nav-item.open .dropdown { display: block; }
  .prod-layout, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .blog-grid, .cert-grid, .mv-grid { grid-template-columns: 1fr 1fr; }
  .ref-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .blog-grid, .cert-grid, .mv-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .quote-box { padding: 26px 20px; }
}

/* Mobil topbar sıkışması */
@media (max-width: 640px) {
  .topbar-inner { gap: 12px; padding: 12px 16px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 14px; letter-spacing: 2px; }
  .lang-switch { display: none; }
  .topbar-right { gap: 10px; margin-left: auto; }
  .btn-sm { padding: 9px 16px; font-size: 13px; white-space: nowrap; }
}

/* ============ Haberler ============ */
.news-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.news-updated { font-size: 13px; color: var(--ink-soft); background: rgba(26,156,62,.08); border: 1px solid rgba(26,156,62,.2); padding: 6px 14px; border-radius: 999px; font-weight: 600; }
.news-updated::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 8px; animation: newsPulse 2s infinite; }
@keyframes newsPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: #fff; border: 1px solid #e3ece5; border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; }
.news-source { color: var(--green); font-weight: 800; letter-spacing: .3px; }
.news-source:hover { text-decoration: underline; }
.news-lang { background: #eef3ff; color: #3b62b5; font-weight: 800; font-size: 10.5px; padding: 2px 7px; border-radius: 6px; letter-spacing: .5px; }
.news-date { color: var(--ink-soft); margin-left: auto; }
.news-card h3 { font-size: 16.5px; line-height: 1.4; letter-spacing: -.2px; }
.news-card h3 a:hover { color: var(--green); }
.news-card p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.news-more { color: var(--green); font-weight: 700; font-size: 13.5px; }
.news-more:hover { color: var(--green-deep); }
.news-disclaimer { margin-top: 34px; font-size: 12.5px; color: var(--ink-soft); border-top: 1px solid #e3ece5; padding-top: 18px; max-width: 760px; }
@media (max-width: 960px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }

/* ============ Kaydırma animasyonu (scroll reveal) ============ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--rvd, 0s); }
.rv.rv-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* Blog meta */
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.blog-meta .cat { background: rgba(26,156,62,.1); color: var(--green); font-weight: 800; font-size: 11px; letter-spacing: .5px; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; }

/* ============ WordPress uyarlamaları ============ */
/* Üst menü (wp_nav_menu yapısı) */
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a { color: rgba(255,255,255,.82); font-size: 14.5px; font-weight: 600; padding: 9px 14px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px; transition: color .15s, background .15s; }
.nav-list > li > a:hover, .nav-list > li.current-menu-item > a, .nav-list > li.current-menu-ancestor > a { color: var(--green-bright); background: rgba(47,212,96,.08); }
.nav-list li.menu-item-has-children > a::after { content: ""; width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); margin-left: 4px; }
.nav-list .sub-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px; background: rgba(10,31,18,.97); backdrop-filter: blur(16px); border: 1px solid rgba(47,212,96,.18); border-radius: 12px; padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease; box-shadow: 0 20px 50px rgba(0,0,0,.45); z-index: 50; }
.nav-list li:hover > .sub-menu, .nav-list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-list .sub-menu a { display: block; padding: 10px 14px; border-radius: 8px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.nav-list .sub-menu a:hover { background: rgba(47,212,96,.12); color: var(--green-bright); }
.custom-logo { width: 40px; height: 40px; object-fit: contain; }

/* İçerik alanı (Gutenberg çıktısı) */
.entry-content h2 { font-size: 26px; letter-spacing: -.5px; margin: 36px 0 14px; }
.entry-content h3 { font-size: 20px; margin: 28px 0 10px; }
.entry-content p { margin-bottom: 16px; color: var(--ink-soft); }
.entry-content ul, .entry-content ol { margin: 0 0 16px 22px; color: var(--ink-soft); }
.entry-content li { margin-bottom: 6px; }
.entry-content img { border-radius: 12px; height: auto; }
.entry-content blockquote { border-left: 4px solid var(--green); padding: 8px 20px; margin: 20px 0; background: var(--bg-alt); border-radius: 0 10px 10px 0; }
.entry-content a { color: var(--green); font-weight: 600; }
.entry-content a:hover { color: var(--green-deep); }
.entry-content .wp-block-table table { border-collapse: collapse; width: 100%; }
.entry-content .wp-block-table td, .entry-content .wp-block-table th { border: 1px solid #e3ece5; padding: 10px 14px; }

/* Sayfalama */
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers { padding: 10px 16px; border: 1px solid #e3ece5; border-radius: 10px; font-weight: 700; font-size: 14px; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* Çerez bandı */
.cookie-bar { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 999; background: rgba(6,18,11,.96); backdrop-filter: blur(10px); border: 1px solid rgba(47,212,96,.25); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { color: rgba(255,255,255,.85); font-size: 13.5px; margin: 0; }
.cookie-bar a { color: var(--green-bright); font-weight: 700; }
@media (min-width: 720px) { .cookie-bar { left: auto; max-width: 560px; } }

/* İletişim haritası */
.map-wrap { margin-top: 28px; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid #e3ece5; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Vizyon & Misyon kartları */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 720px) { .cards-2 { grid-template-columns: 1fr; } }
