/* ============================================================
   İSG Mühendislik — Global stylesheet
   Renkler: Logo turuncusu #F37021, antrasit #1F2933, beyaz
   ============================================================ */

:root {
  --orange: #F37021;
  --orange-600: #E25E12;
  --orange-50: #FFF4EC;
  --ink: #1F2933;
  --ink-2: #2D3742;
  --ink-3: #4A5563;
  --muted: #6B7682;
  --line: #E5E8EC;
  --line-2: #EEF1F4;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FA;
  --bg-tint: #FFF9F4;
  --blue-ink: #0B2545;       /* used sparingly for trust accents */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 1px rgba(15, 23, 42, .03);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, .12);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-tint { background: var(--bg-soft); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark .eyebrow { color: var(--orange); }
.section-dark .section-title { color: #fff; }
.section-dark .section-lead { color: #C7CCD3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: 12px;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
  color: var(--ink);
  text-wrap: balance;
}
.section-lead {
  color: var(--ink-3);
  max-width: 720px;
  font-size: 17px;
  text-wrap: pretty;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-arrow::after {
  content: "→";
  font-weight: 600;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink);
  color: #C7CCD3;
  font-size: 13px;
}
.topbar a { color: #C7CCD3; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; flex: 0 0 14px; stroke-width: 2; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px;
}
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-left span { display: inline-flex; gap: 8px; align-items: center; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.lang-switch { display: inline-flex; gap: 4px; align-items: center; font-weight: 600; }
.lang-switch button {
  background: transparent; border: 0; color: #C7CCD3;
  padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 700;
}
.lang-switch button.is-active { color: var(--orange); }

.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 76px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: 8px;
}
.nav-list > li > a:hover { color: var(--orange); }
.nav-list > li.has-sub > a::after {
  content: "▾"; font-size: 10px; opacity: .6;
}
.nav-list a.is-active { color: var(--orange); }
.submenu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 10px;
  list-style: none; margin: 8px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease;
}
.nav-list > li.has-sub:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--ink-2); font-weight: 500; font-size: 14px;
}
.submenu a:hover { background: var(--orange-50); color: var(--orange); }
.submenu a .ico {
  width: 26px; height: 26px; flex: 0 0 26px;
  border-radius: 6px; background: var(--orange-50);
  display: grid; place-items: center;
  color: var(--orange);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-2); font-weight: 700;
}
.nav-cta .phone .ph-ic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-50); color: var(--orange);
  display: grid; place-items: center;
}
.nav-cta .phone .ph-ic svg { width: 18px; height: 18px; }
.nav-cta .phone small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.nav-cta .phone strong { font-size: 15px; }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .nav-list, .nav-cta .phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Floating action buttons ---------- */
.float-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.float-actions a {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 24px;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease;
}
.float-actions a:hover { transform: translateY(-2px) scale(1.04); }
.float-actions a svg { width: 26px; height: 26px; }
.float-actions .fa-wa { background: #25D366; }
.float-actions .fa-tel { background: var(--orange); }

/* ---------- Footer ---------- */
footer {
  background: #14181E; color: #C7CCD3;
  padding: 72px 0 0;
}
footer h4 {
  color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase;
  margin: 0 0 18px; font-weight: 700;
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.foot-grid p, .foot-grid li { color: #9AA3AC; font-size: 14px; line-height: 1.7; }
.foot-grid p svg { width: 14px; height: 14px; flex: 0 0 14px; stroke-width: 2; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { padding: 4px 0; }
.foot-grid ul a:hover { color: var(--orange); }
.foot-logo img { height: 64px; margin-bottom: 14px; filter: brightness(1.05); }
.foot-social { display: flex; gap: 10px; margin-top: 14px; }
.foot-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: #20262D; color: #fff;
  display: grid; place-items: center;
  font-size: 16px;
}
.foot-social a:hover { background: var(--orange); }
.foot-bottom {
  margin-top: 56px;
  border-top: 1px solid #232932;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #717983;
}
.foot-bottom a:hover { color: #fff; }

@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 10px; }
}

/* ---------- KVKK banner ---------- */
.kvkk {
  position: fixed; left: 18px; right: 18px; bottom: 18px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: none;
  align-items: center; gap: 16px;
  z-index: 70;
  max-width: 720px; margin: 0 auto;
}
.kvkk.is-visible { display: flex; }
.kvkk p { margin: 0; font-size: 13px; color: var(--ink-3); flex: 1; }
.kvkk button {
  background: var(--orange); color: #fff;
  border: 0; padding: 10px 16px; border-radius: 999px;
  font-weight: 700; font-size: 13px;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--orange-50); color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; }
.card p { margin: 0 0 14px; color: var(--ink-3); font-size: 14.5px; }
.card a.more {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
  text-transform: uppercase; letter-spacing: .05em;
}
.card a.more::after { content: "→"; }
.card a.more:hover { color: var(--orange); }

/* ---------- Crumbs ---------- */
.crumbs {
  background: var(--bg-soft);
  padding: 56px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.crumbs h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 10px 0 8px; font-weight: 800;
  letter-spacing: -0.02em;
}
.crumbs .path { color: var(--muted); font-size: 14px; }
.crumbs .path a:hover { color: var(--orange); }
.crumbs .path .sep { margin: 0 8px; opacity: .6; }
.crumbs::after {
  content: "";
  position: absolute;
  right: -120px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(243,112,33,.12), transparent 70%);
  pointer-events: none;
}

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-50);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ---------- Mobile nav drawer ---------- */
.drawer {
  position: fixed; inset: 0;
  background: rgba(20,24,30,.6);
  z-index: 100;
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer .panel {
  position: absolute; top: 0; right: 0;
  width: min(420px, 92%); height: 100%;
  background: #fff; padding: 24px;
  overflow-y: auto;
  transform: translateX(20px);
  transition: transform .2s ease;
}
.drawer.is-open .panel { transform: translateX(0); }
.drawer .panel ul { list-style: none; padding: 0; margin: 24px 0 0; }
.drawer .panel ul a {
  display: block; padding: 12px 4px;
  border-bottom: 1px solid var(--line-2);
  font-weight: 600; color: var(--ink);
}
.drawer .close {
  background: transparent; border: 0; font-size: 24px;
  position: absolute; top: 16px; right: 16px;
}

/* ---------- Kurumsal page ---------- */
.lead-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.lead-grid img { border-radius:var(--r-lg); aspect-ratio:4/3; object-fit:cover; width:100%; }
@media(max-width:880px) { .lead-grid { grid-template-columns:1fr; gap:32px; } }

.val-card { padding:30px; }
.val-card .ic { width:60px; height:60px; border-radius:16px; background:var(--orange-50); color:var(--orange); display:grid; place-items:center; margin-bottom:20px; }
.val-card .ic svg { width:28px; height:28px; }
.val-card h3 { margin:0 0 8px; font-size:19px; }
.val-card p  { margin:0; color:var(--ink-3); font-size:14.5px; line-height:1.65; }

.kurumsal-history { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; }
@media(max-width:880px) { .kurumsal-history { grid-template-columns:1fr; } }

.timeline { position:relative; padding-left:40px; }
.timeline::before { content:""; position:absolute; left:14px; top:8px; bottom:8px; width:2px; background:var(--line); }
.tl-item { position:relative; padding-bottom:32px; }
.tl-item:last-child { padding-bottom:0; }
.tl-item::before { content:""; position:absolute; left:-32px; top:6px; width:14px; height:14px; border-radius:50%; background:var(--orange); border:3px solid var(--orange-50); }
.tl-item .yr  { font-weight:800; color:var(--orange); font-size:14px; }
.tl-item h4   { margin:2px 0 4px; font-size:17px; }
.tl-item p    { margin:0; color:var(--ink-3); font-size:14.5px; }

/* ---------- Group cards ---------- */
.group-card {
  border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  aspect-ratio: 4/5; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background-size: cover; background-position: center;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.group-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.group-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,15,20,.1) 35%, rgba(11,15,20,.92) 100%);
}
.group-card > * { position: relative; z-index: 1; }
.group-card .tag {
  background: rgba(255,255,255,.18); color: #fff;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.group-card h3 { font-size: 26px; margin: 14px 0 8px; font-weight: 800; }
.group-card p { color: #D7DBE0; font-size: 14.5px; margin: 0 0 16px; line-height: 1.5; }
.group-card .arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 18px;
  transition: transform .2s;
  flex-shrink: 0;
}
.group-card:hover .arrow { transform: translate(4px, -4px) rotate(-8deg); }

/* ---------- About section ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about-grid .imgs { position: relative; }
.about-grid .imgs img { border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-grid .imgs .big { width: 100%; }
.about-grid .imgs .small {
  position: absolute; bottom: -36px; right: -18px;
  width: 240px; aspect-ratio: 4/3;
  border: 6px solid #fff; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about-grid .imgs .badge {
  position: absolute; top: -22px; left: -22px;
  background: var(--orange); color: #fff;
  padding: 18px 22px; border-radius: 14px;
  box-shadow: var(--shadow-md); text-align: center;
}
.about-grid .imgs .badge b { display: block; font-size: 36px; font-weight: 800; line-height: 1; }
.about-grid .imgs .badge span { font-size: 13px; opacity: .95; }
.checks { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks li::before {
  content: "✓";
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange-50); color: var(--orange);
  display: grid; place-items: center; flex: 0 0 24px;
  font-weight: 700;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid .imgs .small { display: none; }
  .about-grid .imgs .badge { top: -16px; left: -12px; }
}

/* ---------- Utility ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-50); color: var(--orange);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}

.stat { text-align: center; }
.stat .n { font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--orange); letter-spacing: -.02em; line-height: 1; }
.stat .n .suf { color: var(--ink); font-size: .6em; margin-left: 2px; }
.stat .l { color: var(--ink-3); font-size: 14px; margin-top: 8px; font-weight: 600; }

/* ─── PHP CMS entegrasyon stilleri ─── */
/* Feat strip */
.feat-strip { background:var(--ink); color:#fff; }
.feat-strip-item { display:flex; align-items:center; gap:14px; padding:24px 20px; border-right:1px solid rgba(255,255,255,.1); }
.feat-strip-item:last-child { border-right:0; }
.feat-ic { width:46px; height:46px; border-radius:12px; background:rgba(243,112,33,.18); color:var(--orange); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.feat-strip-item strong { display:block; color:#fff; font-size:14px; font-weight:700; }
.feat-strip-item p { margin:0; font-size:12.5px; color:rgba(255,255,255,.6); }

/* Hizmet kartları — image card stili */
.svc-card {
  background:#fff; border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
}
.svc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.svc-card .pic { aspect-ratio:16/10; overflow:hidden; position:relative; flex-shrink:0; }
.svc-card .pic img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.svc-card:hover .pic img { transform:scale(1.06); }
.svc-card .pic .ic {
  position:absolute; bottom:-22px; left:22px;
  width:52px; height:52px; border-radius:14px;
  background:var(--orange); color:#fff;
  display:grid; place-items:center;
  box-shadow:var(--shadow-md); font-size:20px;
}
.svc-card .body { padding:36px 24px 24px; flex:1; display:flex; flex-direction:column; }
.svc-card .body h3 { font-size:19px; font-weight:700; margin:0 0 8px; color:var(--ink); }
.svc-card .body p  { margin:0 0 16px; color:var(--ink-3); font-size:14.5px; flex:1; line-height:1.6; }
.svc-card .more {
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:13px; color:var(--orange);
  text-transform:uppercase; letter-spacing:.06em; margin-top:auto;
}
.svc-card .more::after { content:"→"; transition:transform .2s; }
.svc-card:hover .more::after { transform:translateX(4px); }

/* Hizmet arama kutusu */
.svc-search-wrap {
  max-width:640px; margin:0 auto 40px; position:relative;
}
.svc-search-wrap input {
  width:100%; padding:14px 52px 14px 20px;
  border:2px solid var(--line); border-radius:99px;
  font-size:15px; font-family:inherit; background:#fff;
  outline:none; transition:border-color .2s;
}
.svc-search-wrap input:focus { border-color:var(--orange); }
.svc-search-wrap .svc-search-icon {
  position:absolute; right:18px; top:50%; transform:translateY(-50%);
  color:var(--muted); font-size:16px; pointer-events:none;
}
.svc-search-dropdown {
  position:absolute; top:calc(100% + 8px); left:0; right:0;
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); z-index:200; max-height:360px; overflow-y:auto;
  display:none;
}
.svc-search-dropdown.is-open { display:block; }
.svc-search-item {
  display:flex; align-items:center; gap:12px;
  padding:12px 16px; text-decoration:none; color:inherit;
  border-bottom:1px solid var(--line-2); transition:background .15s;
}
.svc-search-item:last-child { border-bottom:0; }
.svc-search-item:hover { background:var(--bg-soft); }
.svc-search-item .si-icon { width:36px; height:36px; border-radius:10px; background:var(--orange-50); color:var(--orange); display:grid; place-items:center; font-size:14px; flex-shrink:0; }
.svc-search-item .si-title { font-weight:600; font-size:14px; }
.svc-search-item .si-cat { font-size:12px; color:var(--muted); }
.svc-search-empty { padding:20px; text-align:center; color:var(--muted); font-size:14px; }

/* Filtre butonları */
.svc-filters { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:40px; }
.svc-filter-btn {
  padding:8px 18px; border-radius:99px; font-size:13.5px; font-weight:600;
  border:2px solid var(--line); background:#fff; color:var(--ink-3);
  cursor:pointer; transition:all .18s;
  white-space:nowrap; flex-shrink:0; flex-grow:0;  /* daire olmasın */
  line-height:1.4; display:inline-flex; align-items:center; gap:6px;
}
.svc-filter-btn:hover { border-color:var(--orange); color:var(--orange); }
.svc-filter-btn.is-active { background:var(--orange); border-color:var(--orange); color:#fff; }

/* Gizli kart */
.svc-card.is-hidden { display:none; }

/* Ekip kartları */
.team-card { text-align:center; padding:24px 16px; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); }
.team-photo img { width:88px; height:88px; border-radius:50%; object-fit:cover; margin:0 auto 14px; display:block; }
.team-photo-placeholder { width:88px; height:88px; border-radius:50%; background:var(--bg-soft); margin:0 auto 14px; display:flex; align-items:center; justify-content:center; color:var(--muted); }
.team-info strong { display:block; font-size:16px; font-weight:700; }
.team-info span { color:var(--muted); font-size:13px; }

/* Testimonials / Quote cards */
.quote-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:28px; position:relative; }
.quote-card::before { content:"\201C"; position:absolute; top:0; right:20px; font-size:110px; line-height:1; color:var(--orange-50); font-family:Georgia,serif; pointer-events:none; }
.quote-card p { color:var(--ink-2); margin:0 0 18px; line-height:1.65; position:relative; }
.quote-card .who { display:flex; align-items:center; gap:12px; }
.quote-card .who img { width:46px; height:46px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.quote-card .who b, .quote-card .who strong { display:block; font-weight:700; font-size:14.5px; }
.quote-card .who small, .quote-card .who span { color:var(--muted); font-size:13px; }

/* ---------- Service category — hero banner ---------- */
.svc-cat-hero {
  position: relative; min-height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.svc-cat-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,15,20,.88) 0%, rgba(11,15,20,.55) 60%, rgba(11,15,20,.3) 100%);
}
.svc-cat-hero-inner {
  position: relative; z-index: 2;
  padding-top: 80px; padding-bottom: 56px; color: #fff;
  max-width: 780px;
}
.svc-cat-crumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.svc-cat-crumb a { color: var(--orange); text-decoration: none; }
.svc-cat-crumb a:hover { text-decoration: underline; }
.svc-cat-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 99px; padding: 6px 16px 6px 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.svc-cat-badge-ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center; font-size: 14px;
}
.svc-cat-hero h1 {
  font-size: clamp(28px,4vw,52px); font-weight: 800;
  margin: 0 0 14px; line-height: 1.1;
}
.svc-cat-hero-desc {
  font-size: 17px; color: rgba(255,255,255,.78);
  margin: 0 0 28px; max-width: 620px; line-height: 1.65;
}
.svc-cat-hero-meta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.svc-cat-hero-stat strong {
  display: block; font-size: 22px; font-weight: 800; color: var(--orange);
}
.svc-cat-hero-stat span {
  font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em;
}
.svc-cat-hero-divider {
  width: 1px; height: 36px; background: rgba(255,255,255,.2);
}
@media (max-width: 640px) {
  .svc-cat-hero { min-height: 320px; }
  .svc-cat-hero h1 { font-size: 26px; }
  .svc-cat-hero-desc { font-size: 15px; }
  .svc-cat-hero-meta { gap: 14px; }
}

/* ---------- Service card v2 — liste rozeti + özellik listesi ---------- */
.svc-card-kids-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(11,15,20,.75); color: #fff;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 99px; padding: 5px 12px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.svc-card-feats {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.svc-card-feats li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--ink-3); line-height: 1.4;
}
.svc-card-feats li .fa { color: var(--orange); font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.svc-card-kids {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.svc-card-kids span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 99px; padding: 3px 10px;
}
.svc-card-kids span .fa { color: var(--orange); font-size: 10px; }

/* ---------- Service category grid ---------- */
.svc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .svc-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .svc-cat-grid { grid-template-columns: 1fr; } }

.svc-cat-card {
  display: flex; gap: 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-cat-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-cat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--orange-50); color: var(--orange);
  display: grid; place-items: center;
  font-size: 22px;
  transition: background .2s, color .2s;
}
.svc-cat-card:hover .svc-cat-icon {
  background: var(--orange); color: #fff;
}
.svc-cat-body { flex: 1; min-width: 0; }
.svc-cat-body h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.svc-cat-body p  { font-size: 13.5px; color: var(--ink-3); margin: 0 0 12px; line-height: 1.55; }
.svc-cat-sub { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.svc-cat-sub span {
  font-size: 11px; font-weight: 600;
  background: var(--bg-soft); color: var(--ink-3);
  border: 1px solid var(--line); border-radius: 99px;
  padding: 2px 9px;
}
.svc-cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--orange);
}
.svc-cat-link .fa { font-size: 10px; transition: transform .2s; }
.svc-cat-card:hover .svc-cat-link .fa { transform: translateX(3px); }

/* Sidebar card */
.side-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; }
.side-card h4 { font-size:15px; font-weight:700; margin:0 0 14px; }

/* Referanslar — logo grid */
.ref-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; }
@media(max-width:980px) { .ref-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:640px) { .ref-grid { grid-template-columns:1fr 1fr; } }

.ref-logo {
  background:#fff; border:1px solid var(--line);
  border-radius:var(--r-md); aspect-ratio:16/9;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:14px; gap:6px; text-decoration:none;
  font-weight:800; color:var(--ink-3); font-size:14px; text-align:center;
  transition:border-color .2s, color .2s, transform .2s;
}
.ref-logo:hover { border-color:var(--orange); color:var(--orange); transform:translateY(-2px); }
.ref-logo small { font-size:10px; font-weight:600; opacity:.7; letter-spacing:.04em; text-transform:uppercase; }

/* Referanslar — CTA band */
.ref-cta {
  background:var(--orange); color:#fff;
  border-radius:var(--r-xl); padding:48px;
  display:grid; grid-template-columns:1fr auto;
  align-items:center; gap:32px;
}
.ref-cta h2 { margin:0 0 8px; font-size:clamp(22px,3vw,32px); font-weight:800; }
.ref-cta p  { margin:0; opacity:.92; }
@media(max-width:640px) { .ref-cta { grid-template-columns:1fr; text-align:center; } }

/* Blog / news kart */
.news-card { display:block; text-decoration:none; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:box-shadow .2s; }
.news-card:hover { box-shadow:var(--shadow-md); }
.news-card .meta { display:flex; align-items:center; gap:8px; margin-bottom:6px; flex-wrap:wrap; }

/* Blog layout */
.blog-layout { display:grid; grid-template-columns:1fr 300px; gap:40px; align-items:start; }
.post-card { display:block; text-decoration:none; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:box-shadow .2s; }
.post-card:hover { box-shadow:var(--shadow-md); }
.post-img img { width:100%; height:190px; object-fit:cover; }
.post-body { padding:20px; }
.post-body h2 { font-size:17px; font-weight:700; margin:8px 0 6px; color:var(--ink); }
.post-body p { color:var(--ink-3); font-size:13.5px; margin:0; }
.side-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:20px; margin-bottom:20px; }
.side-card h4 { font-size:15px; font-weight:700; margin:0 0 14px; padding-bottom:10px; border-bottom:2px solid var(--orange); display:inline-block; }

/* CTA Band */
.cta-band { padding:64px 0; }

/* Sayfalama */
.pagination ul { display:flex; gap:6px; list-style:none; padding:0; margin:32px 0 0; justify-content:center; flex-wrap:wrap; }
.pagination li a, .pagination li.is-active { display:flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:var(--r-sm); border:1px solid var(--line); font-size:14px; font-weight:600; color:var(--ink); text-decoration:none; transition:all .15s; }
.pagination li.is-active a, .pagination li.is-active { background:var(--orange); color:#fff; border-color:var(--orange); }
.pagination li a:hover { background:var(--bg-soft); }

/* İçerik sayfa stilleri */
.page-content { line-height:1.8; color:var(--ink-2); }
.page-content h2,.page-content h3 { font-weight:700; margin:28px 0 12px; color:var(--ink); }
.page-content p { margin:0 0 16px; }
.page-content ul,.page-content ol { padding-left:22px; margin-bottom:16px; }
.page-content li { margin-bottom:6px; }
.page-content img { max-width:100%; border-radius:var(--r-md); margin:12px 0; }
.page-content table { width:100%; border-collapse:collapse; margin-bottom:16px; }
.page-content th,.page-content td { border:1px solid var(--line); padding:10px 14px; font-size:14px; }
.page-content th { background:var(--bg-soft); font-weight:700; }

/* Footer extra */
.foot-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px; }
.foot-logo p { color:rgba(255,255,255,.6); font-size:13.5px; margin:14px 0 18px; line-height:1.65; }
.foot-social { display:flex; gap:10px; flex-wrap:wrap; }
.foot-social a { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.08); color:rgba(255,255,255,.6); display:flex; align-items:center; justify-content:center; font-size:14px; transition:all .2s; }
.foot-social a:hover { background:var(--orange); color:#fff; }
.site-footer h4 { color:#fff; font-size:14px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; margin:0 0 16px; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer ul li { margin-bottom:8px; }
.site-footer ul a { color:rgba(255,255,255,.6); font-size:13.5px; transition:color .2s; }
.site-footer ul a:hover { color:var(--orange); }

/* Form fields */
.field label { display:block; font-weight:600; font-size:13.5px; margin-bottom:6px; color:var(--ink); }
.field input, .field select, .field textarea { width:100%; padding:10px 14px; border:1px solid var(--line); border-radius:var(--r-sm); font-size:14.5px; font-family:inherit; color:var(--ink); background:#fff; transition:border .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(243,112,33,.12); }
.field textarea { min-height:120px; resize:vertical; }

/* Responsive */
@media(max-width:1080px) { .foot-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:720px) { .blog-layout { grid-template-columns:1fr; } .foot-grid { grid-template-columns:1fr; } .feat-strip .grid { grid-template-columns:1fr 1fr; } }

/* ═══════════════════════════════════════════════════
   HERO SLİDER — yenitemplate inline stillerinden
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #0c0f14;
}
.hero-slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg,
    rgba(11,15,20,.85) 0%,
    rgba(11,15,20,.55) 45%,
    rgba(11,15,20,.15) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-text { max-width: 660px; color: #fff; }
.hero .eyebrow { color: var(--orange); margin-bottom: 14px; }
.hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 18px;
}
.hero p { color: #D7DBE0; font-size: 18px; max-width: 540px; margin: 0; }
.hero .cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-controls {
  position: absolute;
  left: 0; right: 0; bottom: 30px;
  z-index: 3;
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 28px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.3);
  border: 0; padding: 0; cursor: pointer;
  transition: background .2s, width .2s;
}
.dots button.is-active { background: var(--orange); width: 44px; }
.arrows { display: flex; gap: 8px; }
.arrows button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  font-size: 18px; cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.arrows button:hover { background: var(--orange); border-color: var(--orange); }

/* ── Topbar ── */
.topbar { background: var(--ink); color: rgba(255,255,255,.75); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left a, .topbar-right a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a { color: rgba(255,255,255,.6); font-size: 13px; transition: color .2s; }
.topbar-social a:hover { color: var(--orange); }
.topbar-cta { background: var(--orange); color: #fff !important; padding: 4px 14px; border-radius: var(--r-sm); font-weight: 700; font-size: 12.5px; transition: background .2s; }
.topbar-cta:hover { background: var(--orange-600) !important; }

/* ── Nav ── */
.nav { background: #fff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 900; transition: box-shadow .3s, transform .3s; }
.nav.is-stuck { box-shadow: var(--shadow-md); }
.nav.is-hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 12px; padding-bottom: 12px; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14.5px; font-weight: 600; color: var(--ink); border-radius: var(--r-sm); transition: background .2s, color .2s; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li > a.is-active { background: var(--bg-soft); color: var(--orange); }
.nav-list > li > a .fa-chevron-down { font-size: 10px; margin-left: 2px; opacity: .5; }
.nav-list .submenu, .nav-list .sub-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: #fff; min-width: 230px; border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 6px; list-style: none; margin: 0; z-index: 999; border: 1px solid var(--line); }
.nav-list > li:hover > .submenu, .nav-list > li:hover > .sub-menu { display: block; }
.nav-list .submenu a, .nav-list .sub-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; font-size: 14px; font-weight: 500; color: var(--ink-2); border-radius: var(--r-sm); transition: background .15s, color .15s; }
.nav-list .submenu a:hover, .nav-list .sub-menu a:hover { background: var(--orange-50); color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--ink); padding: 6px 10px; border-radius: var(--r-sm); transition: color .2s; text-decoration: none; }
.nav-phone:hover { color: var(--orange); }
.ph-ic { display: flex; align-items: center; color: var(--orange); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); padding: 8px 10px; border-radius: var(--r-sm); color: var(--ink); transition: background .2s; cursor: pointer; }
.nav-toggle:hover { background: var(--bg-soft); }

/* ── Drawer ── */
.drawer { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer.is-open { opacity: 1; pointer-events: all; }
.drawer .panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 88vw); background: #fff; padding: 24px; display: flex; flex-direction: column; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; }
.drawer.is-open .panel { transform: translateX(0); }
.drawer .close { align-self: flex-end; background: none; border: 1px solid var(--line); width: 36px; height: 36px; border-radius: 50%; font-size: 18px; color: var(--ink); margin-bottom: 16px; cursor: pointer; }
.drawer .nav-logo img { height: 40px; margin-bottom: 20px; }
.drawer ul { list-style: none; padding: 0; margin: 0 0 12px; }
.drawer ul li a { display: block; padding: 11px 4px; font-size: 15px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-2); text-decoration: none; }
.drawer ul li a:hover { color: var(--orange); }
.drawer .sub-menu, .drawer .submenu { display: block !important; padding-left: 14px; }
.drawer .sub-menu a, .drawer .submenu a { font-size: 13.5px; font-weight: 500; padding: 8px 4px; }
.drawer-tel { display: flex; align-items: center; gap: 8px; padding: 12px 4px; font-weight: 700; color: var(--orange); border-top: 1px solid var(--line-2); margin-top: 4px; text-decoration: none; }

/* ── Float Butonlar ── */
.float-actions { position: fixed; bottom: 28px; right: 22px; z-index: 800; display: flex; flex-direction: column; gap: 10px; }
.float-actions a { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform .2s; text-decoration: none; }
.float-actions a:hover { transform: translateY(-3px); }
.float-actions a svg { width: 22px; height: 22px; }
.fa-wa { background: #25d366; color: #fff; }
.fa-tel { background: var(--orange); color: #fff; }

/* ── KVKK ── */
.kvkk { position: fixed; bottom: 24px; left: 24px; max-width: 420px; background: var(--ink); color: rgba(255,255,255,.85); padding: 18px 20px; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); z-index: 900; font-size: 13.5px; line-height: 1.55; display: flex; align-items: flex-start; gap: 14px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .4s, transform .4s; }
.kvkk.is-visible { opacity: 1; pointer-events: all; transform: none; }
.kvkk p { margin: 0; flex: 1; }
.kvkk button { flex-shrink: 0; background: var(--orange); color: #fff; border: 0; padding: 7px 16px; border-radius: var(--r-sm); font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; }

/* ── Footer ── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); font-size: 14px; }
.footer-contact-band { background: var(--ink-2); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.fcb-item { display: flex; align-items: flex-start; gap: 14px; padding: 24px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.fcb-item:last-child { border-right: 0; }
.fcb-ic { width: 40px; height: 40px; background: rgba(243,112,33,.18); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; font-size: 16px; }
.fcb-item strong { display: block; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.fcb-item p, .fcb-item a { margin: 0; font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.75); }
.fcb-item a:hover { color: var(--orange); }
.footer-top { padding: 56px 0 40px; }
.footer-bottom { background: rgba(0,0,0,.25); padding: 16px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; }
.footer-bottom .copyrights-text { color: rgba(255,255,255,.4); font-size: 13px; }

/* ── Weka uyum & breadcrumb ── */
.wt-bnr-inr { background: var(--ink-2); }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone.hide-md { display: none; }
  .topbar-social { display: none; }
}

/* Nav CTA butonu mobilde küçült */
@media (max-width: 768px) {
  .nav-cta .btn.btn-primary {
    font-size: 13px;
    padding: 8px 14px;
    gap: 6px;
  }
  .nav-inner { padding-top: 10px; padding-bottom: 10px; }
  .nav-logo img { height: 44px; }
}
@media (max-width: 480px) {
  .nav-cta .btn.btn-primary { font-size: 12.5px; padding: 7px 12px; }
  .topbar { display: none; } /* topbar mobilde gizle */
}

@media (max-width: 880px) {
  .hero { height: 520px; }
  .hero h1 { font-size: 36px; }
}
@media (max-width: 720px) {
  .hide-sm { display: none !important; }
  .hero { height: 460px; }
  .footer-contact-grid { grid-template-columns: 1fr 1fr; }
  .kvkk { left: 12px; right: 12px; max-width: none; bottom: 12px; }
  .float-actions { bottom: 16px; right: 14px; }
  /* Hizmetler sayfası grid */
  .lead-grid { grid-template-columns: 1fr; gap: 24px; }
  .kurumsal-history { grid-template-columns: 1fr; }
  .ref-cta { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-contact-grid { grid-template-columns: 1fr; }
  .fcb-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-cat-grid { grid-template-columns: 1fr; }
}
