/* =========================================================
   POYRAZ TEMİZLİK — Kurumsal Web Sitesi
   Tasarım sistemi & responsive stiller
   ========================================================= */

:root {
  /* Marka renkleri */
  --navy: #0c2c5f;
  --navy-dark: #081f45;
  --navy-800: #12386f;
  --green: #6cbb3c;
  --green-dark: #4e9e2a;
  --gold: #c9a24b;
  --wa: #25d366;
  --wa-dark: #1da851;

  /* Nötr */
  --ink: #14263b;
  --muted: #5b6b7d;
  --line: #e5ecf4;
  --bg: #f4f7fb;
  --white: #ffffff;

  /* Efektler */
  --shadow-sm: 0 2px 8px rgba(12, 44, 95, .06);
  --shadow: 0 10px 30px rgba(12, 44, 95, .10);
  --shadow-lg: 0 20px 50px rgba(12, 44, 95, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --container: 1180px;
  --header-h: 76px;

  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 76px 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-dark);
  font-weight: 700; font-size: .82rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }

h1, h2, h3 { line-height: 1.18; color: var(--navy); font-weight: 800; letter-spacing: -.5px; }
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(108,187,60,.35); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(108,187,60,.42); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); }
.btn-ghost-white { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,.22); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex; align-items: center;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 46px; width: 46px; border-radius: 11px; box-shadow: 0 3px 10px rgba(12,44,95,.25); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-size: 1.22rem; font-weight: 800; color: var(--navy); letter-spacing: .5px; }
.brand-text small { font-size: .6rem; font-weight: 700; letter-spacing: 4.4px; color: var(--gold); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; }
.nav a:hover { color: var(--green-dark); }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--green); transition:width .2s; }
.nav a:hover::after { width:100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; gap: 4px; background: var(--bg); border-radius: 999px; padding: 4px; }
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: .82rem;
  padding: 6px 12px; border-radius: 999px; color: var(--muted);
}
.lang-switch button.active { background: var(--navy); color: #fff; }

.header-phone {
  display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy);
}
.header-phone svg { width: 20px; height: 20px; color: var(--green); }

.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle span { display:block; width:22px; height:2px; background:var(--navy); position:relative; transition:.25s; }
.menu-toggle span::before, .menu-toggle span::after { content:""; position:absolute; left:0; width:22px; height:2px; background:var(--navy); transition:.25s; }
.menu-toggle span::before { top:-7px; } .menu-toggle span::after { top:7px; }
body.menu-open .menu-toggle span { background: transparent; }
body.menu-open .menu-toggle span::before { top:0; transform: rotate(45deg); }
body.menu-open .menu-toggle span::after { top:0; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(108,187,60,.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, #061936 100%);
  color: #fff;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero::after {
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(108,187,60,.3); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.5rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--green); }
.hero-sub { font-size: 1.12rem; color: #d6e0ef; max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #e8eef7; }
.hero-trust svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* Hero görsel kartı */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(6px);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.hero-card p { color: #c7d3e6; font-size: .92rem; margin-bottom: 18px; }
.quick-form { display: grid; gap: 12px; }
.quick-form input, .quick-form select, .quick-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.95); color: var(--ink); font-family: var(--font); font-size: .95rem;
}
.quick-form textarea { resize: vertical; min-height: 60px; }
.floating-stats { position: absolute; z-index: 3; }
.stat-chip {
  position: absolute; background: #fff; color: var(--navy); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.stat-chip small { display:block; font-size: .72rem; color: var(--muted); font-weight: 600; }
.stat-chip .num { font-size: 1.3rem; color: var(--green-dark); }
.stat-chip.s1 { top: -18px; right: -14px; }
.stat-chip.s2 { bottom: -20px; left: -18px; }

/* =========================================================
   TRUST BAND (özellikler)
   ========================================================= */
.trust-band { background: var(--white); padding: 0; margin-top: -30px; position: relative; z-index: 5; }
.trust-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(108,187,60,.12); margin-bottom: 14px; }
.trust-card .ic svg { width: 26px; height: 26px; color: var(--green-dark); }
.trust-card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.trust-card p { color: var(--muted); font-size: .9rem; }

/* =========================================================
   HİZMETLER
   ========================================================= */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 44px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content:""; position:absolute; inset:0 0 auto 0; height:4px;
  background: linear-gradient(90deg, var(--navy), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ic { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(160deg, var(--navy), var(--navy-800)); display: grid; place-items: center; }
.service-ic svg { width: 30px; height: 30px; color: #fff; }
.service-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .87rem; }

/* =========================================================
   NEDEN BİZ / ÖZELLİK ŞERİDİ
   ========================================================= */
.features { background: var(--navy); color: #fff; }
.features .section-title { color: #fff; }
.features .section-lead { color: #c7d3e6; }
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item .ic { width: 48px; height: 48px; flex: none; border-radius: 12px; background: rgba(108,187,60,.18); display: grid; place-items: center; }
.feature-item .ic svg { width: 24px; height: 24px; color: var(--green); }
.feature-item h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { color: #b9c6da; font-size: .9rem; }

/* =========================================================
   İSTATİSTİK
   ========================================================= */
.stats { background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stats .num { font-size: clamp(2.2rem,5vw,3rem); font-weight: 800; color: var(--navy); line-height: 1; }
.stats .num .plus { color: var(--green); }
.stats .lbl { color: var(--muted); font-weight: 600; margin-top: 8px; }

/* =========================================================
   SÜREÇ
   ========================================================= */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 44px; }
.step { text-align: center; position: relative; }
.step .n { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: #fff; border: 2px dashed var(--green); color: var(--navy); font-weight: 800; font-size: 1.4rem;
  display: grid; place-items: center; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .9rem; }

/* =========================================================
   REFERANSLAR / GALERİ
   ========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px; color: #fff; font-weight: 700; font-size: .95rem;
  background: linear-gradient(transparent, rgba(8,31,69,.85));
}
.gallery-ph { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(160deg, var(--navy-800), var(--navy)); }
.gallery-ph svg { width: 54px; height: 54px; color: rgba(255,255,255,.5); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,17,38,.92); display: none; align-items: center; justify-content: center; z-index: 300; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 86%; border-radius: 12px; }
.lightbox .close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
.lightbox .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lightbox .prev { left: 18px; } .lightbox .next { right: 18px; }

/* =========================================================
   YORUMLAR
   ========================================================= */
.testimonials { background: var(--bg); }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.tst-stars { color: #f5b301; margin-bottom: 12px; letter-spacing: 2px; }
.tst-card p { color: var(--ink); font-size: .96rem; margin-bottom: 18px; }
.tst-who { display: flex; align-items: center; gap: 12px; }
.tst-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(160deg,var(--navy),var(--green)); color:#fff; display:grid; place-items:center; font-weight:800; }
.tst-who b { display: block; color: var(--navy); }
.tst-who small { color: var(--muted); }

/* =========================================================
   HİZMET BÖLGELERİ
   ========================================================= */
.areas { background: var(--white); }
.areas-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; }
.areas-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.areas-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.areas-card p { color: #c7d3e6; margin-bottom: 22px; }
.districts { display: flex; flex-wrap: wrap; gap: 10px; }
.districts span, .districts a { display: inline-block; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 15px; font-size: .88rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); transition: background .2s, color .2s; }
.districts span:hover, .districts a:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(160deg,var(--navy-800),var(--navy)); display: grid; place-items: center; }
.post-thumb svg { width: 44px; height: 44px; color: rgba(255,255,255,.55); }
.post-body { padding: 22px; }
.post-tag { display: inline-block; font-size: .74rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.post-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.post-body p { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.post-more { color: var(--navy); font-weight: 700; font-size: .9rem; }

/* =========================================================
   SSS
   ========================================================= */
.faq-wrap { max-width: 820px; margin: 44px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q .chev { flex: none; transition: transform .25s; color: var(--green-dark); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* =========================================================
   İLETİŞİM / TEKLİF
   ========================================================= */
.contact { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color: #fff; }
.contact .section-title { color: #fff; }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; }
.contact-info h3 { color: #fff; margin-bottom: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-list .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: rgba(108,187,60,.18); display: grid; place-items: center; }
.contact-list .ic svg { width: 22px; height: 22px; color: var(--green); }
.contact-list b { display: block; color: #fff; }
.contact-list a, .contact-list span { color: #c7d3e6; }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; color: var(--ink); }
.contact-form h3 { margin-bottom: 6px; }
.contact-form .muted { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: .95rem; background: var(--bg);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #061733; color: #b9c6da; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 44px; }
.footer .brand { margin-bottom: 16px; }
.footer .brand img { height: 150px; width: auto; background: none; padding: 0; border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.footer p { font-size: .92rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .92rem; }
.footer-links a:hover { color: var(--green); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: .85rem; }
.footer-bottom a { color: var(--green); }

/* =========================================================
   YÜZEN WHATSAPP + MOBİL CTA BAR
   ========================================================= */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: wapulse 2.4s infinite;
}
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wapulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: none; background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(12,44,95,.12); padding: 10px;
  gap: 10px;
}
.mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 12px; font-weight: 700; font-size: .95rem; }
.mobile-cta .m-call { background: var(--navy); color: #fff; }
.mobile-cta .m-wa { background: var(--wa); color: #fff; }
.mobile-cta svg { width: 20px; height: 20px; }

/* =========================================================
   ANİMASYON (reveal)
   ========================================================= */
/* Reveal yalnızca JS aktifken gizler — JS yoksa/başarısızsa içerik görünür kalır */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity:1; transform:none; transition:none; } .wa-float { animation: none; } html { scroll-behavior: auto; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .trust-cards, .feature-row, .stats-grid, .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { max-width: 460px; }
  .areas-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .gallery-grid, .tst-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 20px; gap: 4px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .3s; z-index: 99;
  }
  body.menu-open .nav { display: flex; transform: translateY(0); }
  .nav a { padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
}
@media (max-width: 640px) {
  section { padding: 54px 0; }
  .services-grid, .gallery-grid, .tst-grid, .blog-grid, .trust-cards, .feature-row, .stats-grid, .process-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 70px; }
  .hero-cta .btn { flex: 1; }
  .mobile-cta { display: flex; }
  .wa-float { bottom: 78px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
  body { padding-bottom: 68px; }
  .stat-chip { display: none; }
  .header-actions .btn { display: none; }
}

/* =========================================================
   BLOG DETAY (prose) + ek yardımcılar (PHP sürümü)
   ========================================================= */
.page-hero { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color:#fff; padding: 60px 0; }
.page-hero h1 { color:#fff; font-size: clamp(1.8rem,4vw,2.6rem); }
.page-hero .crumb { color:#c7d3e6; font-size:.9rem; margin-bottom:10px; }
.page-hero .crumb a { color:#8fd35f; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size:1.5rem; margin:28px 0 12px; }
.prose h3 { font-size:1.2rem; margin:22px 0 10px; }
.prose p { margin-bottom:16px; color:var(--ink); }
.prose ul, .prose ol { margin:0 0 16px 22px; }
.prose li { margin-bottom:8px; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose img { border-radius:12px; margin:18px 0; max-width:100%; }
.blog-cover { aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; margin-bottom:22px; }
.blog-cover img { width:100%; height:100%; object-fit:cover; }
.post-thumb img { width:100%; height:100%; object-fit:cover; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.empty-note { text-align:center; color:var(--muted); padding:30px; border:1px dashed var(--line); border-radius:var(--radius); }
/* =========================================================
   YUKARI ÇIK BUTONU
   ========================================================= */
.scroll-top {
  position: fixed; right: 27px; bottom: 92px; z-index: 199;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(12,44,95,.35);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--green-dark); }
.scroll-top svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .scroll-top { right: 24px; bottom: 142px; width: 42px; height: 42px; }
}

/* =========================================================
   HİZMET DETAY SAYFASI
   ========================================================= */
a.service-card { display: block; color: inherit; }
.svc-more { display: inline-block; margin-top: 10px; color: var(--green-dark); font-weight: 700; font-size: .85rem; }
.svc-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: start; }
.svc-img { width: 100%; border-radius: var(--radius); margin-bottom: 22px; }
.svc-lead { font-size: 1.12rem; color: var(--navy); font-weight: 600; margin-bottom: 18px; }
.svc-content p { margin-bottom: 16px; color: var(--ink); }
.svc-check { margin-top: 26px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.svc-check h3 { font-size: 1.08rem; margin-bottom: 14px; }
.svc-check li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.svc-check svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 3px; }
.svc-cta { background: linear-gradient(160deg, var(--navy), var(--navy-dark)); color: #fff; border-radius: var(--radius-lg); padding: 30px; position: sticky; top: calc(var(--header-h) + 20px); }
.svc-cta h3 { color: #fff; margin-bottom: 8px; }
.svc-cta p { color: #c7d3e6; font-size: .95rem; margin-bottom: 20px; }
.svc-cta .btn { width: 100%; margin-bottom: 10px; }
.svc-others h2 { font-size: 1.5rem; margin-bottom: 22px; color: var(--navy); }
.svc-others .service-card { text-align: center; }
@media (max-width: 900px) {
  .svc-wrap { grid-template-columns: 1fr; }
  .svc-cta { position: static; }
}

/* Hizmet detay içerik başlıkları + hizmet SSS */
.svc-content h2 { font-size: 1.4rem; margin: 30px 0 12px; }
.svc-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.svc-faq { margin-top: 36px; }
.svc-faq h2 { font-size: 1.4rem; margin-bottom: 6px; }
.svc-main .faq-wrap { margin: 14px 0 0; max-width: none; }

/* =========================================================
   ÜST SLIDER (menü altı)
   ========================================================= */
.top-slider-wrap { padding: 18px 0 0; background: var(--white); }
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.slider-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slide { min-width: 100%; }
.slide img { width: 100%; display: block; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(8,31,69,.45); color: #fff; font-size: 1.1rem;
  display: grid; place-items: center; transition: background .2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(108,187,60,.85); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }
.slider-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 5; }
.slider-dot { width: 9px; height: 9px; border-radius: 99px; border: 0; cursor: pointer; background: rgba(255,255,255,.55); transition: all .25s; padding: 0; }
.slider-dot.active { background: #fff; width: 24px; }
@media (max-width: 640px) {
  .top-slider-wrap { padding: 10px 0 0; }
  .top-slider-wrap .container { padding: 0 10px; }
  .slider { border-radius: 12px; }
  .slider-arrow { width: 32px; height: 32px; font-size: .85rem; }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .slider-dots { bottom: 6px; }
  .slider-dot { width: 7px; height: 7px; }
  .slider-dot.active { width: 18px; }
}

/* Logo mobil boyutu */
@media (max-width: 640px) {
  .brand img { height: 40px; width: 40px; }
  .footer .brand img { height: 120px; width: auto; }
}

/* SEO metni bölümü */
.seo-blurb { background: var(--bg); padding: 54px 0; }
.seo-blurb h2 { font-size: 1.4rem; margin-bottom: 14px; }
.seo-blurb p { color: var(--muted); max-width: 900px; margin-bottom: 12px; font-size: .96rem; }

/* Hero slogan satırı — başlık altı zarif vurgu */
.hero-tagline {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.06rem; font-style: italic; font-weight: 600;
  color: #e3c77e; letter-spacing: .3px;
  margin: -4px 0 16px;
}
.hero-tagline::before {
  content: ""; width: 36px; height: 2px; flex: none;
  background: linear-gradient(90deg, #c9a24b, #e3c77e); border-radius: 2px;
}
@media (max-width: 640px) {
  .hero-tagline { font-size: .96rem; gap: 9px; }
  .hero-tagline::before { width: 26px; }
}
