/* =====================================================
   DSB Teknik — Ön Yüz Stilleri
   ===================================================== */

:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --navy-3: #1d4577;
  --accent: #ff7a1a;
  --accent-dark: #e8650a;
  --wa: #25d366;
  --wa-dark: #1ebe5b;
  --ink: #1d2a3a;
  --muted: #5a6b80;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(11, 37, 69, .08);
  --shadow-lg: 0 14px 44px rgba(11, 37, 69, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }

h1, h2, h3 { line-height: 1.25; color: var(--navy); font-weight: 800; }

.text-accent { color: var(--accent); }

/* ---------- Butonlar ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  font-family: inherit;
}
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(255, 122, 26, .35); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Topbar ---------- */

.topbar { background: var(--navy); color: #c8d6e8; font-size: 13px; }
.topbar-inner { display: flex; gap: 24px; align-items: center; padding: 7px 20px; }
.topbar-phone { margin-left: auto; color: #fff; font-weight: 700; }
.topbar-phone:hover { color: var(--accent); }

/* ---------- Header ---------- */

.header {
  background: #fff; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(11, 37, 69, .07);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 14px 20px; }

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; display: block; }

.nav { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.nav > a, .nav-drop > a {
  padding: 9px 14px; border-radius: 8px; font-weight: 600; font-size: 15px;
  color: var(--ink); transition: all .15s;
}
.nav > a:hover, .nav-drop > a:hover { background: var(--bg-alt); color: var(--accent); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 50;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop-menu a {
  display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 600;
}
.nav-drop-menu a:hover { background: var(--bg-alt); color: var(--accent); }

/* İkinci seviye menü (kategori → alt hizmetler) */
.nav-sub { position: relative; }
.nav-sub-toggle { display: flex !important; align-items: center; justify-content: space-between; gap: 10px; }
.nav-sub-arrow { color: var(--muted); font-size: 16px; line-height: 1; transition: transform .15s; }
.nav-sub:hover > .nav-sub-toggle { background: var(--bg-alt); color: var(--accent); }
.nav-sub:hover > .nav-sub-toggle .nav-sub-arrow { color: var(--accent); }
.nav-sub-menu {
  position: absolute; left: calc(100% + 2px); top: -8px; min-width: 230px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: all .18s ease; z-index: 60;
}
.nav-sub:hover > .nav-sub-menu, .nav-sub:focus-within > .nav-sub-menu {
  opacity: 1; visibility: visible; transform: translateX(0);
}
.nav-all-link {
  margin-top: 6px; border-top: 1px solid var(--line); border-radius: 0 0 8px 8px !important;
  color: var(--accent) !important; font-weight: 700 !important;
}

.header-cta { white-space: nowrap; }
.nav-toggle {
  display: none; background: none; border: none; font-size: 26px;
  color: var(--navy); cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,26,.22), transparent 65%);
}
.hero::after {
  content: ''; position: absolute; left: -100px; bottom: -180px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(72,149,239,.16), transparent 65%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px;
  padding: 72px 20px 80px; position: relative; z-index: 1; align-items: center;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 7px 16px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 20px;
}
.hero h1 { color: #fff; font-size: 46px; margin-bottom: 18px; }
.hero-sub { font-size: 17px; color: #c9d7e8; max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 26px; color: var(--accent); }
.hero-stats span { font-size: 13px; color: #9fb3ca; }

.hero-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.hero-card h2 { font-size: 21px; margin-bottom: 4px; }
.hero-card > p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.hero-card form { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Form elemanları ---------- */

input[type=text], input[type=tel], input[type=email], select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; transition: border-color .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, .12);
}
.hp-field { position: absolute !important; left: -9999px !important; height: 0; opacity: 0; }

/* ---------- Bölümler ---------- */

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-kicker {
  display: inline-block; color: var(--accent); font-weight: 800; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { color: var(--muted); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Kartlar ---------- */

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: all .22s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); flex: 1; }

.card-link { color: var(--accent); font-weight: 700; font-size: 14px; margin-top: 14px; }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,122,26,.12), rgba(255,122,26,.05));
  color: var(--accent); display: flex; align-items: center; justify-content: center;
}

/* ---------- Özellikler ---------- */

.features .feature { text-align: center; padding: 20px; }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(255,122,26,.14), rgba(255,122,26,.05));
  color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ---------- CTA bandı ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--accent), #ff9d4d);
  color: #fff; padding: 44px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-band p { opacity: .92; font-size: 15px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-accent { background: var(--navy); box-shadow: none; }
.cta-band .btn-accent:hover { background: var(--navy-2); }

/* ---------- İlçe etiketleri ---------- */

.district-cloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.district-chip {
  background: #fff; border: 1.5px solid var(--line); padding: 9px 18px;
  border-radius: 999px; font-weight: 600; font-size: 14px; transition: all .15s;
  display: inline-flex; align-items: center; gap: 6px;
}
.district-chip .ui-icon { color: var(--accent); }
.district-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.section-alt .district-chip { background: #fff; }

/* ---------- Yorumlar ---------- */

.testimonial .stars { color: #fbbf24; font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial p { font-style: italic; }
.testimonial-meta { margin-top: 14px; display: flex; gap: 10px; align-items: baseline; }
.testimonial-meta span { color: var(--muted); font-size: 13px; }

/* ---------- SSS ---------- */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; color: var(--navy);
}
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 15px; }

/* ---------- Blog kartları ---------- */

.post-date { font-size: 13px; color: var(--accent); font-weight: 700; margin-bottom: 8px; display: inline-block; }

/* ---------- İç sayfa hero ---------- */

.page-hero {
  background: linear-gradient(140deg, var(--navy), var(--navy-3));
  color: #fff; padding: 52px 0;
}
.page-hero h1 { color: #fff; font-size: 36px; margin-bottom: 10px; }
.page-hero p { color: #c9d7e8; max-width: 640px; font-size: 16px; }
.breadcrumb { font-size: 13px; color: #9fb3ca; margin-bottom: 14px; }
.breadcrumb a { color: #c9d7e8; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: #fff; }

/* ---------- İçerik düzeni ---------- */

.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.content-body h2 { font-size: 26px; margin: 32px 0 14px; }
.content-body h2:first-child { margin-top: 0; }
.content-body h3 { font-size: 20px; margin: 24px 0 10px; }
.content-body p { margin-bottom: 14px; color: #33445c; }
.content-body ul { margin: 0 0 16px 22px; color: #33445c; }
.content-body li { margin-bottom: 8px; }
.content-body .district-cloud { justify-content: flex-start; margin-top: 14px; }

.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }
.sidebar-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.sidebar-card h3 { font-size: 17px; margin-bottom: 12px; }
.sidebar-cta { background: linear-gradient(140deg, var(--navy), var(--navy-2)); border: none; color: #fff; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: #c9d7e8; font-size: 14px; margin-bottom: 14px; }
.sidebar-cta .btn { margin-bottom: 10px; }
/* Koyu zemin üzerinde outline butonlar her zaman açık renk olmalı */
.sidebar-cta .btn-outline,
.sidebar-cta .btn-outline-light {
  border-color: rgba(255,255,255,.55); color: #fff; background: transparent;
}
.sidebar-cta .btn-outline:hover,
.sidebar-cta .btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  display: block; padding: 8px 10px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.sidebar-links a:hover { background: var(--bg-alt); color: var(--accent); }
.sidebar-links li { font-size: 14px; padding: 4px 0; }
.sidebar-stats { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-stats strong { color: var(--accent); font-size: 18px; margin-right: 6px; }

.neighborhood-box {
  margin-top: 40px; background: var(--bg-alt); border-radius: var(--radius); padding: 28px;
}
.neighborhood-box h2 { font-size: 22px; margin-bottom: 10px; }
.neighborhood-box p { color: var(--muted); }

/* ---------- İletişim ---------- */

.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-note { color: var(--muted); font-size: 12.5px; display: inline-flex; align-items: center; gap: 6px; }

.steps-list { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 14px; }
.steps-list li { counter-increment: step; display: flex; gap: 12px; font-size: 14px; color: var(--muted); align-items: flex-start; }
.steps-list li > span { flex: 1; min-width: 0; line-height: 1.5; }
.steps-list strong { display: block; margin-bottom: 2px; }
.steps-list li::before {
  content: counter(step); flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9d4d); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.steps-list strong { color: var(--navy); }

.nav-quote {
  background: rgba(255, 122, 26, .12); color: var(--accent) !important; font-weight: 700 !important;
}
.nav-quote:hover { background: var(--accent) !important; color: #fff !important; }

.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 15px; }
.alert-success { background: #e7f8ee; color: #14693a; border: 1px solid #b5e8cb; }
.alert-success a { font-weight: 700; text-decoration: underline; }
.alert-error { background: #fdeaea; color: #9b1c1c; border: 1px solid #f5c2c2; }

/* ---------- Footer ---------- */

.footer { background: var(--navy); color: #c8d6e8; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding: 56px 20px 40px;
}
.footer h3 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer a { font-size: 14px; transition: color .15s; }
.footer a:hover { color: var(--accent); }
.footer-about { font-size: 14px; margin-top: 14px; color: #9fb3ca; }
.footer-logo-box {
  display: inline-block; background: #fff; border-radius: 12px; padding: 10px 16px;
}
.footer-logo-box img { height: 64px; width: auto; display: block; }
.footer-contact li { font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; font-size: 13px; color: #8aa1bc; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-credit { color: #c8d6e8; font-weight: 700; }
.footer-credit:hover { color: var(--accent); }

/* ---------- Galeri ---------- */

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); aspect-ratio: 4 / 3; display: block; cursor: pointer;
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(11,37,69,.85));
  color: #fff; font-size: 13.5px; font-weight: 600;
}
.gallery-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(11,37,69,.35);
}
.gallery-video { aspect-ratio: auto; }
.gallery-video video { aspect-ratio: 16 / 9; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state p { margin-bottom: 18px; font-size: 17px; }

/* ---------- Referanslar ---------- */

.refs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.refs-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--navy); aspect-ratio: 1 / 1;
}
.refs-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.refs-item:hover img { transform: scale(1.05); }
.refs-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 10px;
  background: linear-gradient(transparent, rgba(11,37,69,.85));
  color: #fff; font-size: 13px; font-weight: 600;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(7, 20, 38, .94);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  padding: 30px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; }
.lightbox-title { color: #c9d7e8; font-size: 14px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; background: rgba(255,255,255,.12);
  border: none; color: #fff; width: 42px; height: 42px; border-radius: 50%;
  font-size: 18px; cursor: pointer;
}
.lightbox-close:hover { background: var(--accent); }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Mobil sabit arama barı (dönüşüm) ---------- */

.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  box-shadow: 0 -4px 18px rgba(11, 37, 69, .18);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-weight: 800; font-size: 15px; color: #fff;
}
.mobile-bar-call { background: var(--accent); }
.mobile-bar-wa { background: var(--wa); }

/* ---------- Genel ikon hizalama ---------- */

.ui-icon { vertical-align: -3px; flex-shrink: 0; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.footer-contact li, .sidebar-links li { display: flex; align-items: center; gap: 7px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 52px 20px; }
  .hero h1 { font-size: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .content-layout, .contact-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .nav > a, .nav-drop > a { padding: 9px 10px; font-size: 14px; }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px; box-shadow: var(--shadow-lg); gap: 2px;
  }
  .nav.open { display: flex; }
  .nav > a, .nav-drop > a { font-size: 15px; }
  .nav-drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding-left: 16px; display: none;
  }
  .nav-drop:hover .nav-drop-menu, .nav-drop.open .nav-drop-menu { display: block; }

  /* Mobilde ikinci seviye: akordiyon */
  .nav-sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding-left: 16px; min-width: 0; display: none;
  }
  .nav-sub.open > .nav-sub-menu { display: block; }
  .nav-sub.open > .nav-sub-toggle .nav-sub-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .topbar-inner { gap: 12px; font-size: 12px; flex-wrap: wrap; }
  .topbar-item:nth-child(2) { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-stats { gap: 22px; }
  .hero-actions .btn { flex: 1; min-width: 200px; }
  .logo-img { height: 48px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobil dönüşüm barı: görünür yap, içerik altta kalmasın */
  body { padding-bottom: 56px; }
  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  .footer-bottom { padding-bottom: 24px; }
}
