/* ============ YEB TEKNIK — Ortak Stil ============ */
:root {
  --accent: #e33e07;
  --accent-2: #ff6a2b;
  --bg: #0b0e14;
  --panel: rgba(17, 22, 32, 0.78);
  --panel-solid: #131926;
  --text: #eef1f6;
  --muted: #9aa3b2;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
#bg-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.bg-vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(5,7,11,0.72) 100%),
    linear-gradient(to bottom, rgba(5,7,11,0.55), transparent 22%, transparent 70%, rgba(5,7,11,0.8));
}
.site { position: relative; z-index: 2; }

/* Navigasyon */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 14, 20, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.06em; }
.brand .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 6px var(--accent); } 50% { box-shadow: 0 0 18px var(--accent); } }
.brand b { color: var(--accent); }
nav.menu { display: flex; align-items: center; gap: 4px; }
nav.menu a, .dropdown > button {
  color: var(--muted); text-decoration: none; font-size: 0.94rem; font-weight: 600;
  padding: 9px 14px; border-radius: 10px; background: none; border: none; cursor: pointer;
  font-family: inherit; transition: color .2s, background .2s; white-space: nowrap;
}
nav.menu a:hover, .dropdown > button:hover, nav.menu a.active { color: var(--text); background: rgba(255,255,255,0.06); }
nav.menu a.active { color: var(--accent-2); }
.dropdown { position: relative; }
.dropdown-content {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--panel-solid); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; display: none; flex-direction: column; box-shadow: 0 18px 40px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: flex; }
.dropdown-content a { padding: 10px 14px; border-radius: 8px; display: block; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); font-size: 1.3rem; border-radius: 10px; padding: 6px 12px; cursor: pointer; }

/* Hero */
.hero { max-width: 1180px; margin: 0 auto; padding: 96px 24px 64px; text-align: center; }
.hero .kicker {
  display: inline-block; color: var(--accent-2); font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px; padding: 8px 18px;
  border: 1px solid rgba(227,62,7,0.35); border-radius: 999px; background: rgba(227,62,7,0.08);
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.12; text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.hero h1 span { color: var(--accent); }
.hero p.lead { max-width: 720px; margin: 22px auto 0; color: var(--muted); font-size: 1.12rem; line-height: 1.7; }
.hero .actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 30px; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform .2s, box-shadow .2s, background .2s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 8px 26px rgba(227,62,7,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(227,62,7,0.55); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,0.04); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

/* Icerik */
.section { max-width: 1180px; margin: 0 auto; padding: 48px 24px; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 8px; }
.section h2::after { content: ""; display: block; width: 64px; height: 4px; margin-top: 12px; border-radius: 4px; background: linear-gradient(90deg, var(--accent), transparent); }
.section .sub { color: var(--muted); margin-bottom: 34px; max-width: 640px; line-height: 1.65; }
.grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card {
  background: var(--panel); backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: transform .25s, border-color .25s, box-shadow .25s;
  text-decoration: none; color: var(--text); display: block;
}
.card:hover { transform: translateY(-6px); border-color: rgba(227,62,7,0.55); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.card .icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card ul { list-style: none; margin-top: 8px; }
.card ul li { color: var(--muted); padding: 5px 0 5px 22px; position: relative; font-size: 0.95rem; }
.card ul li::before { content: "\25B8"; color: var(--accent); position: absolute; left: 0; }
.card p { color: var(--muted); line-height: 1.65; font-size: 0.97rem; }
.prose {
  background: var(--panel); backdrop-filter: blur(10px); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; line-height: 1.85; color: #d6dbe4;
}
.prose p + p { margin-top: 18px; }
.prose strong { color: var(--text); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 18px; margin-top: 36px; }
.stat { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat .num { font-size: 2rem; font-weight: 900; color: var(--accent-2); }
.stat .lbl { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.logo-cell {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px; min-height: 88px;
  display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 700;
  font-size: 0.88rem; text-align: center; padding: 12px; transition: border-color .25s, color .25s;
}
.logo-cell:hover { border-color: rgba(227,62,7,0.5); color: var(--text); }
.contact-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.contact-grid .card { cursor: default; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.contact-item .ci-icon { font-size: 1.3rem; width: 34px; text-align: center; }
.contact-item a { color: var(--accent-2); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.contact-item .muted { color: var(--muted); font-size: 0.92rem; margin-top: 3px; line-height: 1.5; }
form .row { display: grid; gap: 14px; margin-bottom: 14px; }
input, textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px; color: var(--text); font-family: inherit; font-size: 0.97rem;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 130px; resize: vertical; }
.cta-strip {
  background: linear-gradient(135deg, rgba(227,62,7,0.16), rgba(227,62,7,0.04));
  border: 1px solid rgba(227,62,7,0.35); border-radius: var(--radius); padding: 42px; text-align: center;
}
.cta-strip h2::after { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.cta-strip p { color: var(--muted); margin: 12px 0 26px; }

/* Footer */
footer { border-top: 1px solid var(--border); background: rgba(9,11,16,0.85); backdrop-filter: blur(10px); margin-top: 48px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 40px 24px; display: flex; flex-wrap: wrap;
  gap: 24px; justify-content: space-between; color: var(--muted); font-size: 0.9rem; line-height: 1.7;
}
.footer-inner a { color: var(--accent-2); text-decoration: none; }

/* Giris animasyonu */
.fade-up { animation: fadeUp .9s ease both; }
.fade-up-2 { animation: fadeUp .9s .15s ease both; }
.fade-up-3 { animation: fadeUp .9s .3s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Mobil */
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  nav.menu {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; background: var(--panel-solid);
    border-bottom: 1px solid var(--border); padding: 12px 18px 18px; gap: 2px;
  }
  nav.menu.open { display: flex; }
  .dropdown-content { position: static; display: flex; box-shadow: none; border: none; background: transparent; padding-left: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
}

/* Gorseller */
.card .thumb { width: 100%; height: 175px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; display: block; background: #10141c; }
.page-photo-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.page-photo { width: 100%; max-height: 360px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.45); display: block; }
.logo-cell.has-img { background: #f5f6f8; }
.logo-cell img { max-height: 58px; max-width: 82%; object-fit: contain; }

/* ============ NGS tarzi ust bar ============ */
header { background: transparent; backdrop-filter: none; border-bottom: none; }
.topbar {
  max-width: 1280px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo { display: flex; align-items: center; text-decoration: none; min-width: 74px; }
.logo img { height: 40px; width: auto; display: block; }
/* turuncu menu seridi */
nav.menu.menu-pill {
  background: transparent;
  border-radius: 999px; padding: 7px 12px; gap: 2px;
  box-shadow: none;
}
nav.menu.menu-pill > a, nav.menu.menu-pill .dropdown > button {
  color: #eef1f6; font-weight: 700; padding: 10px 18px; border-radius: 999px; font-size: 0.95rem;
}
nav.menu.menu-pill > a:hover, nav.menu.menu-pill .dropdown > button:hover { background: rgba(255,255,255,0.08); color: #ff7a3d; }
nav.menu.menu-pill > a.active { background: linear-gradient(135deg, #e33e07, #f05515); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); }
.top-right { display: flex; align-items: center; gap: 16px; }
.contact-mini { display: flex; flex-direction: column; gap: 3px; font-size: 0.83rem; }
.contact-mini a { color: #b9c0cd; text-decoration: none; white-space: nowrap; }
.contact-mini a:hover { color: #fff; }
.contact-mini .oi { color: #ff6a2b; }
.btn-quote {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: linear-gradient(135deg, #e33e07, #ff7a2b); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.04em;
  padding: 13px 22px; border-radius: 12px; box-shadow: 0 8px 24px rgba(227,62,7,0.45);
  transition: transform .2s, box-shadow .2s;
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(227,62,7,0.6); }
.btn-quote .arr { transition: transform .2s; }
.btn-quote:hover .arr { transform: translateX(4px); }
@media (max-width: 1180px) { .contact-mini { display: none; } }
@media (max-width: 920px) {
  nav.menu.menu-pill { border-radius: 16px; padding: 12px; top: 76px; background: linear-gradient(160deg, #e33e07, #b53105); }
  nav.menu.menu-pill > a.active { background: #0a0a0f; }
  .btn-quote { padding: 11px 14px; font-size: 0.85rem; }
}

/* ============ 3D Etkilesim Katmani ============ */
.grid, .svc-grid, .steps, .stats, .contact-grid { perspective: 1100px; }
.card, .stat, .step { position: relative; transform-style: preserve-3d; }
.fx-tilt { transition: transform .18s ease-out; }
.fx-tilt::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.13), transparent 55%);
  opacity: 0; transition: opacity .25s;
}
.fx-tilt:hover::after { opacity: 1; }
.fx-tilt .icon, .fx-tilt h3, .fx-tilt .num { transform: translateZ(26px); }
.fx-tilt p, .fx-tilt ul, .fx-tilt .lbl { transform: translateZ(14px); }

/* Kaydirmada derinlikli belirme */
.rv { opacity: 0; transform: perspective(900px) rotateX(8deg) translateY(26px); }
.rv { transition: opacity .7s ease, transform .7s ease; }
.rv-in { opacity: 1; transform: none; }

/* Hero katman gecisleri */
.fs-slide .inner { transform-style: preserve-3d; transition: transform .3s ease-out; will-change: transform; }
.fs-slide .bg { will-change: transform, translate; }

/* ============ 3D Kup Vitrini ============ */
.cube-stage { display: flex; align-items: center; justify-content: center; min-height: 380px; perspective: 1200px; cursor: grab; }
.cube-stage:active { cursor: grabbing; }
.cube {
  width: 250px; height: 250px; position: relative; transform-style: preserve-3d;
  animation: cubespin 26s linear infinite;
}
.cube-stage:hover .cube { animation-play-state: paused; }
@keyframes cubespin {
  from { transform: rotateX(-14deg) rotateY(0deg); }
  to { transform: rotateX(-14deg) rotateY(360deg); }
}
.cube .face {
  position: absolute; inset: 0; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,106,43,.45);
  box-shadow: 0 0 40px rgba(227,62,7,.16) inset;
  background: #0d1220;
}
.cube .face img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .92; }
.cube .face span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px;
  background: linear-gradient(transparent, rgba(5,7,11,.9));
  color: #eef1f6; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-align: center;
}
.cube .f1 { transform: rotateY(0deg) translateZ(125px); }
.cube .f2 { transform: rotateY(90deg) translateZ(125px); }
.cube .f3 { transform: rotateY(180deg) translateZ(125px); }
.cube .f4 { transform: rotateY(270deg) translateZ(125px); }
.cube .f5 { transform: rotateX(90deg) translateZ(125px); }
.cube .f6 { transform: rotateX(-90deg) translateZ(125px); }
.cube-glow { position: absolute; width: 320px; height: 60px; border-radius: 50%; background: radial-gradient(ellipse, rgba(227,62,7,.28), transparent 70%); filter: blur(8px); transform: translateY(190px); }
@media (max-width: 920px) {
  .cube { width: 190px; height: 190px; }
  .cube .f1,.cube .f2,.cube .f3,.cube .f4 { transform: rotateY(calc(var(--i) * 90deg)) translateZ(95px); }
  .cube .f1 { --i: 0; } .cube .f2 { --i: 1; } .cube .f3 { --i: 2; } .cube .f4 { --i: 3; }
  .cube .f5 { transform: rotateX(90deg) translateZ(95px); }
  .cube .f6 { transform: rotateX(-90deg) translateZ(95px); }
  .cube-stage { min-height: 300px; }
}

/* ============ Teklif Pop-up ============ */
#qw-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #e33e07, #ff7a2b);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(227,62,7,.5);
  transition: transform .2s;
}
#qw-fab:hover { transform: scale(1.08); }
#wa-fab {
  position: fixed; right: 22px; bottom: 94px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(37,211,102,.45); transition: transform .2s; text-decoration: none;
}
#wa-fab:hover { transform: scale(1.08); }
#qw-panel.open ~ #wa-fab, #qw-panel.open + #wa-fab { display: none; }
#qw-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 91; width: 340px; max-width: calc(100vw - 44px);
  background: #131926; border: 1px solid rgba(255,255,255,.12); border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,.6); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.97);
  transition: opacity .25s, transform .25s, visibility .25s;
}
#qw-panel.open { opacity: 1; visibility: visible; transform: none; }
.qw-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: linear-gradient(135deg, #e33e07, #ff7a2b);
}
.qw-head b { color: #fff; font-size: 1rem; letter-spacing: .04em; display: block; }
.qw-head small { color: rgba(255,255,255,.85); font-size: .78rem; }
#qw-close { background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 2px 6px; }
.qw-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.qw-body input, .qw-body select, .qw-body textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 11px 13px; color: #eef1f6; font-family: inherit; font-size: .92rem;
}
.qw-body select { appearance: auto; }
.qw-body select option { background: #131926; color: #eef1f6; }
.qw-body textarea { min-height: 74px; resize: vertical; }
.qw-body input:focus, .qw-body select:focus, .qw-body textarea:focus { outline: none; border-color: #e33e07; }
#qw-err { display: none; color: #ff8f6b; font-size: .82rem; }
.qw-send { border: none; border-radius: 10px; padding: 12px; font-weight: 800; font-size: .92rem; cursor: pointer; font-family: inherit; transition: transform .15s; }
.qw-send:hover { transform: translateY(-1px); }
.qw-wa { background: #25d366; color: #fff; }
.qw-em { background: rgba(255,255,255,.08); color: #eef1f6; border: 1px solid rgba(255,255,255,.14); }
.qw-direct { color: #9aa3b2; font-size: .8rem; text-align: center; line-height: 1.6; margin-top: 2px; }
.qw-direct a { color: #ff6a2b; text-decoration: none; font-weight: 700; }

/* ============ AYDINLIK KURUMSAL TEMA (hibrit: koyu hero + acik icerik) ============ */
:root {
  --bg: #f4f6f9;
  --panel: #ffffff;
  --panel-solid: #ffffff;
  --text: #16202e;
  --muted: #5b6675;
  --border: rgba(15, 23, 42, 0.10);
}
body { background: linear-gradient(180deg, #fdfefe 0%, #f4f6f9 30%, #eef1f6 100%); }
#bg-canvas, .bg-vignette { display: none; }

/* Ust bar: beyaz, sabit, guven veren */
header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 18px rgba(15, 23, 42, 0.06);
}
nav.menu.menu-pill > a, nav.menu.menu-pill .dropdown > button { color: var(--text); }
nav.menu.menu-pill > a:hover, nav.menu.menu-pill .dropdown > button:hover { background: rgba(227,62,7,0.08); color: #e33e07; }
.contact-mini a { color: var(--muted); }
.contact-mini a:hover { color: var(--text); }
.dropdown-content { box-shadow: 0 18px 40px rgba(15,23,42,0.14); }

/* Ana sayfa tam ekran hero koyu kalir (kendi gorselleri var) */
.fs-hero { background: #0b0e14; }

/* Alt sayfa hero: acik zeminde koyu metin */
.hero h1 { text-shadow: none; }

/* Kartlar ve paneller: beyaz + yumusak golge */
.card { box-shadow: 0 4px 18px rgba(15,23,42,0.05); }
.card:hover { box-shadow: 0 18px 44px rgba(15,23,42,0.13); }
.prose { color: #33404f; box-shadow: 0 4px 18px rgba(15,23,42,0.05); }
.step, .stat { box-shadow: 0 4px 18px rgba(15,23,42,0.05); }
.page-photo { box-shadow: 0 16px 40px rgba(15,23,42,0.16); }
.btn-ghost { background: rgba(15,23,42,0.03); }
.btn-ghost:hover { background: rgba(15,23,42,0.07); }
input, textarea { background: #fff; }
.card .thumb { background: #eef1f6; }
.fx-tilt::after { background: radial-gradient(circle at var(--gx,50%) var(--gy,50%), rgba(227,62,7,.07), transparent 55%); }

/* Footer koyu kalir (kurumsal capa) — icindeki degiskenler koyu paletten */
footer {
  background: #0d1119;
  border-top: none;
  --text: #eef1f6; --muted: #9aa3b2; --border: rgba(255,255,255,0.08);
  color: var(--muted);
}

/* Cerez bandi: beyaz */
#cb { background: #fff !important; border: 1px solid rgba(15,23,42,0.12) !important; box-shadow: 0 16px 44px rgba(15,23,42,0.18) !important; }
#cb p { color: #4a5568 !important; }

/* Teklif pop-up: beyaz */
#qw-panel { background: #fff; border: 1px solid rgba(15,23,42,0.12); box-shadow: 0 24px 64px rgba(15,23,42,0.22); }
.qw-body input, .qw-body select, .qw-body textarea { background: #f5f7fa; border: 1px solid rgba(15,23,42,0.14); color: #16202e; }
.qw-body select option { background: #fff; color: #16202e; }
.qw-em { background: rgba(15,23,42,0.05); color: #16202e; border: 1px solid rgba(15,23,42,0.14); }
.qw-direct { color: #5b6675; }

/* Harita: koyu tema filtresi kaldir */
iframe[src*="google.com/maps"] { filter: none !important; }

/* Mobil menu: turuncu zeminde beyaz linkler kalsin */
@media (max-width: 920px) {
  nav.menu.menu-pill > a, nav.menu.menu-pill .dropdown > button { color: #fff; }
  nav.menu.menu-pill > a:hover, nav.menu.menu-pill .dropdown > button:hover { background: rgba(0,0,0,0.18); color: #fff; }
  nav.menu { background: var(--panel-solid); }
}

/* ============ AYDINLIK TEMA CILASI (uyum + derinlik) ============ */
/* Zemin: duz gri yerine dokulu, hafif turuncu isiltili beyaz */
body {
  background:
    radial-gradient(900px 420px at 85% -80px, rgba(227,62,7,0.05), transparent 65%),
    radial-gradient(700px 380px at -60px 40%, rgba(227,62,7,0.035), transparent 60%),
    radial-gradient(rgba(15,23,42,0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* Bolum ritmi */
.section { padding: 60px 24px; }
.section h2 { color: #131c29; letter-spacing: -0.01em; }
.section h2::after { background: linear-gradient(90deg, var(--accent), #ffb38a); }

/* Kartlar: net cerceve, tutarli yumusak golge */
.card, .stat, .step, .prose, .blog-row, .blog-featured, .logo-cell {
  border: 1px solid #e4e9f0;
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 10px 28px rgba(15,23,42,0.05);
}
.card:hover, .blog-row:hover, .blog-featured:hover {
  border-color: rgba(227,62,7,0.45);
  box-shadow: 0 4px 10px rgba(15,23,42,0.06), 0 22px 48px rgba(227,62,7,0.12);
}

/* Prose paneli: karttan ayrissin */
.prose { background: #fbfcfe; }

/* Istatistik kutulari: turuncu tonlu, canli */
.stat { background: linear-gradient(160deg, #fff7f3, #ffffff); border-color: rgba(227,62,7,0.18); }
.stat .num { color: var(--accent); }

/* Surec adimlari: dolu numara rozetleri */
.step .no {
  -webkit-text-stroke: 0; color: #fff; font-size: 1.05rem; font-weight: 900;
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(227,62,7,0.3);
}

/* CTA bandi: dolgun turuncu, yuksek kontrast */
.cta-strip {
  background: linear-gradient(135deg, #e33e07, #ff7a2b);
  border: none; box-shadow: 0 18px 44px rgba(227,62,7,0.28);
}
.cta-strip h2 { color: #fff; }
.cta-strip h2::after { background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent); }
.cta-strip p { color: rgba(255,255,255,0.88); }
.cta-strip .btn-primary { background: #fff; color: #e33e07; box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.cta-strip .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.12); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* Alt sayfa hero: hafif panelli giris */
.hero .kicker { background: rgba(227,62,7,0.07); }
.hero p.lead { color: #4a5766; }

/* Marka seridi yazilari */
.marquee .track span { opacity: .55; }

/* Kup vitrini golgesi acik zemine uysun */
.cube-glow { background: radial-gradient(ellipse, rgba(227,62,7,.18), transparent 70%); }

/* Referans/logo hucreleri beyazda erimesin */
.logo-cell { background: #fff; }

/* ============ Form secim kutulari (select) — input ile ayni gorunum ============ */
select {
  width: 100%; background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px; color: var(--text);
  font-family: inherit; font-size: 0.97rem; cursor: pointer;
}
select:focus { outline: none; border-color: var(--accent); }
input[type="number"] { appearance: textfield; }

/* IK basvuru formu: esit yukseklik, duzgun hizalama */
#ikForm input, #ikForm select { height: 50px; }
#ikForm .grid { align-items: end; }
@media (max-width: 720px) {
  #ikForm .grid { grid-template-columns: 1fr !important; }
  #hesaplayici .grid { grid-template-columns: 1fr !important; }
}

/* ============ Ana sayfa hizmet animasyonlari: 3D derinlik ============ */
.svc-grid .card { overflow: hidden; }
.svc-grid .card img {
  transform-origin: 50% 100%;
  animation: svcFloat 8s ease-in-out infinite;
  will-change: transform;
}
.svc-grid .card:nth-child(2) img { animation-delay: -2.6s; }
.svc-grid .card:nth-child(3) img { animation-delay: -5.2s; }
.svc-grid .card:nth-child(5) img { animation-delay: -1.4s; }
.svc-grid .card:nth-child(6) img { animation-delay: -3.8s; }
.svc-grid .card:nth-child(8) img { animation-delay: -6.4s; }
@keyframes svcFloat {
  0%, 100% { transform: perspective(850px) rotateX(8deg) rotateY(-4deg) scale(1.12); }
  50%      { transform: perspective(850px) rotateX(5deg) rotateY(4deg) scale(1.12); }
}
.svc-grid .card:hover img {
  animation: none;
  transform: perspective(850px) rotateX(0deg) rotateY(0deg) scale(1.05);
  transition: transform .5s ease;
}
/* Gorsel altina zemin golgesi — havada durma hissi */
.svc-grid .card .body { position: relative; background: var(--panel); }
.svc-grid .card .body::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: -10px; height: 18px;
  background: radial-gradient(ellipse at center, rgba(15,23,42,.28), transparent 70%);
  filter: blur(6px); pointer-events: none;
}

/* Adim numaralari: her zaman beyaz (inline stil ezilir) */
.section .steps .step .no {
  color: #fff !important; -webkit-text-stroke: 0 !important;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 900; font-family: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(227,62,7,.3);
}

/* ============ 360 kup vitrini: HUD + tiklanabilir yuzler ============ */
.cube .face { text-decoration: none; cursor: pointer; }
.cube-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cube-hud {
  display: flex; align-items: center; gap: 14px;
  background: var(--panel); border: 1px solid #e4e9f0; border-radius: 999px;
  padding: 10px 12px 10px 22px; box-shadow: 0 8px 24px rgba(15,23,42,.08);
}
.cube-hud .ch-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.cube-hud b { color: var(--text); font-size: .95rem; letter-spacing: .08em; min-width: 130px; text-align: center; }
.cube-hud a {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
  text-decoration: none; font-weight: 700; font-size: .85rem; padding: 8px 18px; border-radius: 999px;
  transition: transform .2s;
}
.cube-hud a:hover { transform: translateY(-2px); }
.cube-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cube-tags span {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--muted);
  border: 1px solid #e4e9f0; background: var(--panel); border-radius: 999px; padding: 5px 12px;
}

/* ============ Duyarli yerlesim: tablet ve mobil ============ */
/* Ortak kurallar tum sayfalarda yatay tasma ve dokunmatik sorunlarini engeller. */
img, video, iframe, embed, object { max-width: 100%; }
iframe { border: 0; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }

@media (max-width: 920px) {
  .topbar { padding: 10px 18px; gap: 12px; }
  .logo img { height: 36px; }
  .top-right { gap: 10px; }
  .btn-quote { min-height: 44px; }

  nav.menu.menu-pill {
    left: 12px; right: 12px; top: 72px;
    max-height: calc(100vh - 88px); overflow-y: auto;
    box-shadow: 0 18px 42px rgba(15,23,42,.22);
  }
  nav.menu.menu-pill > a, nav.menu.menu-pill .dropdown > button {
    min-height: 44px; display: flex; align-items: center; justify-content: space-between;
  }
  nav.menu .dropdown { width: 100%; }
  nav.menu .dropdown-content { padding: 2px 0 6px 12px; }
  nav.menu .dropdown-content a { white-space: normal; }

  .hero { padding: 64px 20px 46px; }
  .section, .page-photo-wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 46px; padding-bottom: 46px; }
  .card { padding: 24px; }
  .prose { padding: 30px !important; }
  .cta-strip { padding: 32px 24px; }
  .page-photo { max-height: 300px; }
  .footer-inner { padding-left: 20px; padding-right: 20px; }

  /* Sabit aksiyonlar ekran kenarindan guvenli mesafede kalir. */
  #qw-fab, #wa-fab { right: 16px; width: 54px; height: 54px; }
  #qw-fab { bottom: 16px; }
  #qw-panel { right: 16px; bottom: 82px; max-height: calc(100dvh - 104px); overflow-y: auto; }
}

@media (max-width: 640px) {
  html { font-size: 15px; }
  .topbar { min-height: 64px; padding: 8px 14px; }
  .logo img { height: 32px; }
  .btn-quote { padding: 10px 12px; font-size: .78rem; }
  .btn-quote .arr { display: none; }
  .nav-toggle { min-width: 44px; min-height: 44px; padding: 6px 10px; }
  nav.menu.menu-pill { left: 8px; right: 8px; top: 64px; }

  .hero { padding: 46px 16px 34px; }
  .hero .kicker { font-size: .68rem; letter-spacing: .14em; padding: 7px 12px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .hero p.lead { font-size: 1rem; }
  .hero .actions { gap: 10px; margin-top: 26px; }
  .hero .actions .btn { width: 100%; text-align: center; }

  .section, .page-photo-wrap { padding-left: 16px; padding-right: 16px; }
  .section { padding-top: 38px; padding-bottom: 38px; }
  .section .sub { margin-bottom: 24px; }
  .grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .card { padding: 20px; }
  .prose { padding: 22px !important; line-height: 1.75; }
  .cta-strip { padding: 26px 20px; }
  .cta-strip .btn { display: block; width: 100%; }
  .cta-strip .btn + .btn { margin-top: 10px; }
  .page-photo { max-height: 220px; border-radius: 12px; }
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats, .counters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .stat, .counter { padding: 18px 12px; }
  .footer-bottom, .footer-bottom div { padding-left: 16px; padding-right: 16px; }

  #cb { left: 10px !important; right: 10px !important; bottom: 10px !important; padding: 14px !important; }
  #qw-panel { left: 12px; right: 12px; width: auto; bottom: 78px; max-width: none; }
}

@media (max-width: 390px) {
  .top-right .btn-quote { font-size: 0; gap: 0; min-width: 44px; justify-content: center; }
  .top-right .btn-quote::before { content: "Teklif"; font-size: .72rem; }
  .stats, .counters { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ============ Kurumsal tasarim cilasi ============ */
:root { --shadow-soft: 0 12px 32px rgba(15, 23, 42, .08); --shadow-lift: 0 20px 46px rgba(15, 23, 42, .13); }
body { line-height: 1.5; }
header { border-bottom-color: rgba(15, 23, 42, .08); box-shadow: 0 4px 20px rgba(15, 23, 42, .05); }
.topbar { max-width: 1240px; }
.logo img { filter: drop-shadow(0 2px 5px rgba(15, 23, 42, .10)); }
nav.menu.menu-pill > a, nav.menu.menu-pill .dropdown > button { letter-spacing: .005em; }
.btn, .btn-quote { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; }
.btn { padding: 13px 24px; }
.btn-primary { box-shadow: 0 10px 24px rgba(227, 62, 7, .26); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(227, 62, 7, .34); }

.section h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.18; }
.section .sub { font-size: 1rem; }
.section h2::after { width: 52px; height: 3px; margin-top: 14px; }
.card, .prose, .stat, .step { border-radius: 18px; }
.card { border-color: #e1e7ef; }
.card:hover { transform: translateY(-4px); }
.prose { border-color: #e1e7ef; }
.card h3 { color: #16202e; }
.card p { color: #526071; }
.contact-grid .card > h3 { font-size: 1.3rem; margin-bottom: 18px; }
input, textarea, select { border-color: #dbe2ea; transition: border-color .2s, box-shadow .2s, background .2s; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(227, 62, 7, .11); }
details.card { padding: 0; overflow: hidden; }
details.card summary { list-style: none; padding: 20px 52px 20px 22px; position: relative; }
details.card summary::-webkit-details-marker { display: none; }
details.card summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.45rem; font-weight: 400; }
details.card[open] summary { border-bottom: 1px solid #e7ebf1; }
details.card[open] summary::after { content: '−'; }
details.card[open] > p { padding: 0 22px 20px; }
.cta-strip { border-radius: 20px; }
footer { margin-top: 72px; }

:focus-visible { outline: 3px solid rgba(227, 62, 7, .42); outline-offset: 3px; }
@media (max-width: 640px) {
  .section h2 { font-size: 1.65rem; }
  .card, .prose, .stat, .step { border-radius: 15px; }
  .btn { min-height: 46px; }
}

/* ============ Guven rozetleri (hizmet sayfalari) ============ */
.trust-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; max-width: 1180px; margin: 22px auto 0; padding: 0 22px;
}
.trust-bar .tb {
  background: var(--panel); border: 1px solid #e4e9f0; border-radius: 16px;
  padding: 20px 16px; text-align: center; box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.trust-bar .tb b {
  display: block; font-size: 1.6rem; font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.trust-bar .tb span { display: block; margin-top: 6px; font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* ============ Hizmet verilen ilceler ============ */
.ilce-wrap { display: flex; flex-wrap: wrap; gap: 9px; }
.ilce-wrap a {
  font-size: .86rem; font-weight: 600; color: var(--text); text-decoration: none;
  border: 1px solid var(--border); background: var(--panel); border-radius: 999px;
  padding: 8px 15px; transition: all .18s;
}
.ilce-wrap a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============ Mobil sabit iletisim bari ============ */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-top: 1px solid #e1e7ef; box-shadow: 0 -4px 20px rgba(15,23,42,.10);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 9px 4px; min-height: 54px; text-decoration: none; color: var(--text);
    font-size: .72rem; font-weight: 700; letter-spacing: .02em;
    border-right: 1px solid #eef1f5;
  }
  .mobile-bar a:last-child { border-right: 0; }
  .mobile-bar a .mi { font-size: 1.15rem; line-height: 1; }
  .mobile-bar a.wa { color: #128c7e; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
  .trust-bar .tb { padding: 15px 10px; }
  .trust-bar .tb b { font-size: 1.3rem; }
}

/* ============ Teklif hesaplayici ============ */
.hs-tabs {
  display: flex; gap: 9px; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto 18px; padding: 0 4px;
}
.hs-tab {
  font-family: inherit; font-size: .92rem; font-weight: 700; cursor: pointer;
  color: var(--muted); background: var(--panel); border: 1px solid #e4e9f0;
  border-radius: 999px; padding: 11px 22px; transition: all .18s;
}
.hs-tab:hover { color: var(--text); border-color: #cdd6e2; }
.hs-tab.on {
  color: #fff; border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 20px rgba(227,62,7,.26);
}
.hs-card { max-width: 1180px; margin: 0 auto; padding: 32px 34px; }
.hs-card:hover { transform: none; }
.hs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; align-items: end; }
.hs-grid input, .hs-grid select { height: 48px; }
.hs-sonuc {
  margin-top: 26px; padding: 26px 28px;
  background: linear-gradient(180deg, #fbfcfe, #f5f7fa);
  border: 1px solid #e4e9f0; border-radius: 16px;
}
@media (max-width: 640px) {
  .hs-card { padding: 22px 18px; }
  .hs-grid { grid-template-columns: 1fr; }
  .hs-tab { font-size: .84rem; padding: 10px 16px; }
  .hs-sonuc { padding: 20px 18px; }
}


/* ============ Mobil sabit bar ile yuzen ogelerin cakismasini onle ============
   Mobil barin yuksekligi ~62px. Alt kosedeki tum yuzen ogeler bunun ustune alinir. */
@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  #qw-fab   { bottom: 78px  !important; }
  #wa-fab   { bottom: 142px !important; }
  #qw-panel { bottom: 142px !important; }
  #cb       { bottom: 74px  !important; }
}

/* Cerez bandi acikken yuzen butonlari yukari al (ust uste binmesin).
   Band JS ile display:block yapiliyor; :has() ile yakalanir. */
@media (max-width: 760px) {
  body:has(#cb[style*="display:block"]) #qw-fab   { bottom: 210px !important; }
  body:has(#cb[style*="display:block"]) #wa-fab   { bottom: 274px !important; }
  body:has(#cb[style*="display:block"]) #qw-panel { bottom: 274px !important; }
}
/* Cerez bandi mobil bar ustunde ve butonlarin uzerinde kalsin */
#cb { z-index: 95 !important; }

/* ============ Hizmet kartlarinda GERCEK FOTOGRAF kullanimi ============
   SVG illustrasyonlar icin yapilan 3D egilme efekti fotografta kotu duruyor.
   Fotograflara sakin bir yakinlasma (Ken Burns) uygulaniyor. */
.svc-grid .card img[src^="https://img1.wsimg.com"],
.svc-grid .card img[src^="images/foto/"] {
  animation: svcZoom 14s ease-in-out infinite !important;
  transform-origin: center center;
}
@keyframes svcZoom {
  0%, 100% { transform: scale(1.02); }
  50%      { transform: scale(1.09); }
}
.svc-grid .card:hover img[src^="https://img1.wsimg.com"],
.svc-grid .card:hover img[src^="images/foto/"] {
  animation: none !important;
  transform: scale(1.06);
  transition: transform .6s ease;
}

/* ============ Hizmet kartlarinda turuncu cerceve (deneme) ============ */
.svc-grid .card {
  border: 2px solid rgba(227, 62, 7, .55);
  box-shadow: 0 6px 20px rgba(227, 62, 7, .10);
}
.svc-grid .card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 46px rgba(227, 62, 7, .26);
}
/* gorsel ile cerceve arasinda ince ayirici */
.svc-grid .card img,
.svc-grid .card video { border-bottom: 2px solid rgba(227, 62, 7, .35); }

/* ============ Hizmet kartlari: 2D (duz) gorunum ============
   3D egilme/yuzme efektleri kapatildi; kartlar sabit ve duz duruyor. */
.svc-grid { perspective: none !important; }
.svc-grid .card {
  transform: none !important;
  transform-style: flat !important;
}
.svc-grid .card:hover { transform: translateY(-4px) !important; }
.svc-grid .card img,
.svc-grid .card video {
  animation: none !important;
  transform: none !important;
  transform-origin: center center;
  transition: transform .35s ease;
}
.svc-grid .card:hover img,
.svc-grid .card:hover video { transform: scale(1.04) !important; }
/* "havada durma" golgesi kaldirildi */
.svc-grid .card .body::before { display: none !important; }

/* ============ Mobil ek guvenceler ============ */
@media (max-width: 760px) {
  /* dekoratif kup parlamasi kucuk ekranda tasmasin */
  .cube-glow { width: min(320px, 80vw); }
  /* uzun kelimeler tasmasin */
  h1, h2, h3, p, li, td, a { overflow-wrap: anywhere; }
  /* gomulu harita ve video tam genislik */
  iframe, video { max-width: 100%; }
  /* yatay kaydirmayi kesin engelle */
  html, body { max-width: 100%; overflow-x: hidden; }
}

/* ============ SITE GENELI 2D ============
   Tum 3D egilme, perspektif ve derinlikli belirme efektleri kapatildi. */
.grid, .svc-grid, .steps, .stats, .contact-grid, .ref-grid, .pj-list { perspective: none !important; }
.card, .stat, .step, .prose, .ref-card, .pj { transform-style: flat !important; }
/* kaydirmada belirme: 3D donme yerine duz kayma */
.rv { opacity: 0; transform: translateY(20px) !important; }
.rv-in { opacity: 1; transform: none !important; }
/* fare ile egilme sinifi etkisiz */
.fx-tilt { transform: none !important; }
.card:hover, .stat:hover, .step:hover { transform: translateY(-4px) !important; }
.ref-card:hover { transform: translateY(-5px) !important; }

/* ============ MOBIL MENU: alt menuler kapali baslar, beyaz yazi ============ */
@media (max-width: 920px) {
  /* alt menu varsayilan KAPALI (onceden display:flex ile hep acikti) */
  nav.menu .dropdown-content {
    display: none !important;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, .14);
    border-radius: 10px;
    padding: 4px 0 6px 14px !important;
    margin-top: 4px;
  }
  nav.menu .dropdown.open > .dropdown-content { display: flex !important; flex-direction: column; }

  /* tum menu yazilari beyaz — siyah okunmuyordu */
  nav.menu.menu-pill .dropdown-content a,
  nav.menu .dropdown-content a {
    color: #fff !important;
    padding: 11px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: .92rem;
  }
  nav.menu .dropdown-content a:hover,
  nav.menu .dropdown-content a:active { background: rgba(0, 0, 0, .22); color: #fff !important; }

  /* baslik butonu mobilde tam genislik + ok saga yaslanir */
  nav.menu .dropdown > button { width: 100%; justify-content: space-between; font-size: .95rem; }

  /* menu yuksekligi tasarsa kaydirilabilir olsun */
  nav.menu.menu-pill { max-height: calc(100dvh - 96px); overflow-y: auto; }
}

/* ============ Menu acilir liste oku (masaustu + mobil) ============ */
nav.menu .dropdown > button { display: inline-flex; align-items: center; gap: 7px; }
nav.menu .dropdown > button::after {
  content: ''; width: 7px; height: 7px; flex: none;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s;
}
nav.menu .dropdown:hover > button::after,
nav.menu .dropdown.open > button::after { transform: translateY(1px) rotate(-135deg); }
@media (max-width: 920px) {
  nav.menu .dropdown:hover > button::after { transform: translateY(-2px) rotate(45deg); }
  nav.menu .dropdown.open > button::after { transform: translateY(1px) rotate(-135deg); }
}



/* ============ Hizmet sayfasi ust gorseli ============
   Gorseller 2.5:1 (5:2) orana, konuya odaklanarak kirpildi.
   Kap da ayni oranda oldugu icin ikinci bir kirpma olmuyor,
   fotografin tamami gorunur ve tam genislik doldurulur. */
.page-photo-wrap > img.page-photo[src*="images/hizmet/"] {
  aspect-ratio: 5 / 2;
  max-height: none;
  height: auto;
  object-fit: cover;
  object-position: center center;
  background: #eef2f7;
  padding: 0;
}
