/* ============================================================
   Bornova Kombi Servis — site stilleri
   Palet: lacivert (güven) + beyaz (temizlik) + turuncu (aksiyon)
   ============================================================ */

:root {
  --navy-900: #081C36;
  --navy-800: #0B2545;
  --navy-700: #123663;
  --blue-600: #1B5FAE;
  --blue-500: #2472CC;
  --blue-100: #EAF2FB;
  --blue-50: #F4F8FD;
  --orange-600: #E85D1A;
  --orange-500: #F26B21;
  --orange-100: #FFEFE5;
  --green-wa: #22C15E;
  --green-wa-dark: #1AA850;
  --ink-900: #10233F;
  --ink-600: #42576F;
  --ink-500: #5B7089;
  --line: #E2E9F2;
  --amber: #FFB020;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(8, 28, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 28, 54, 0.10);
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
}
img, svg, iframe { max-width: 100%; }
a { color: var(--blue-600); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.2; margin: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; margin-top: 34px; }
.center-text { text-align: center; }

/* ---------- ikonlar ---------- */
.ic { display: inline-flex; flex-shrink: 0; }
.ic svg { width: 1.2em; height: 1.2em; display: block; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: 16.5px; padding: 16px 28px; }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: 0 8px 22px rgba(242, 107, 33, .35); }
.btn-primary:hover { background: var(--orange-600); color: #fff; }
.btn-wa { background: var(--green-wa); color: #fff; box-shadow: 0 8px 22px rgba(34, 193, 94, .3); }
.btn-wa:hover { background: var(--green-wa-dark); color: #fff; }
.btn-white { background: #fff; color: var(--orange-600); }
.btn-white:hover { background: var(--blue-50); color: var(--orange-600); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: var(--blue-100); color: var(--navy-800); }
.btn-ghost:hover { background: #DDEAF9; color: var(--navy-800); }
.btn-outline { background: #fff; color: var(--blue-600); border: 1.5px solid var(--blue-600); }
.btn-outline:hover { background: var(--blue-100); color: var(--blue-600); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ---------- üst bar ---------- */
.topbar { background: var(--navy-900); color: #D7E4F5; font-size: 13px; }
.topbar-in { display: flex; justify-content: center; align-items: center; gap: 22px; padding: 7px 20px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-phone { color: #FFC59D; font-weight: 700; }
.topbar-phone:hover { color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90; background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 20px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy-800); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-mark-img { background: #fff; overflow: hidden; }
.brand-mark-img img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { line-height: 1.15; display: flex; flex-direction: column; }
.brand-text strong { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.brand-text small { font-size: 11.5px; color: var(--ink-500); font-weight: 600; letter-spacing: .3px; }
.brand-light, .brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: #9FB6D4; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--ink-900); font-weight: 600; font-size: 14.5px;
  padding: 9px 13px; border-radius: 9px; transition: background .15s;
}
.main-nav a:hover { background: var(--blue-100); color: var(--navy-800); }
.main-nav a.active { color: var(--orange-600); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-phone { font-size: 14.5px; padding: 11px 16px; }
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--navy-800); color: var(--navy-800);
  width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav { display: none; flex-direction: column; padding: 6px 20px 18px; border-top: 1px solid var(--line); background: #fff; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--ink-900); font-weight: 600; padding: 13px 2px; border-bottom: 1px solid #F0F4F9; font-size: 15.5px; }
.mobile-nav a.active { color: var(--orange-600); }
.mobile-nav-cta { display: flex; gap: 10px; padding-top: 16px; }
.mobile-nav-cta .btn { flex: 1; border-bottom: none; }
.mobile-nav-cta a { border-bottom: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(36, 114, 204, .30), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(242, 107, 33, .15), transparent 55%),
    linear-gradient(160deg, rgba(8, 18, 44, var(--hero-opacity, 0.85)) 0%, rgba(12, 26, 60, var(--hero-opacity, 0.85)) 55%, rgba(18, 36, 72, var(--hero-opacity, 0.85)) 100%),
    var(--hero-img) center/cover no-repeat;
  background-color: var(--navy-900);
  color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242, 107, 33, .16); border: 1px solid rgba(242, 107, 33, .45);
  color: #FFB68A; font-weight: 700; font-size: 13.5px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge-light { background: var(--blue-100); border: 0; color: var(--blue-600); }
.hero h1 { color: #fff; font-size: 46px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 18px; }
.hero-sub { font-size: 17.5px; color: #C4D5EC; line-height: 1.65; max-width: 560px; margin: 0 0 30px; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: #9FB6D4; font-size: 14px; font-weight: 600; }

.hero-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg); padding: 26px; backdrop-filter: blur(6px);
}
.hero-card-top { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-card-top > .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-500); color: #fff; align-items: center; justify-content: center; }
.hero-card-top > .ic svg { width: 24px; height: 24px; }
.hero-card-top small { display: block; color: #9FB6D4; font-size: 12.5px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; }
.hero-card-top a { color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 24px; }
.hero-card-list { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.hero-card-list li { display: flex; align-items: center; gap: 10px; color: #DCE7F5; font-size: 14.5px; font-weight: 500; }
.hero-card-list .ic { color: #6EE7A0; }
.hero-card-rating { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); color: #C4D5EC; font-size: 13.5px; }
.hero-card-rating strong { color: #fff; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; }
.stars .on { color: var(--amber); }
.stars .off { color: rgba(255,255,255,.25); }

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 44px; }
.hero-badge-item {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #E8F0FA; padding: 10px 18px; border-radius: 12px; font-size: 13.5px; font-weight: 600;
}
.hero-badge-item .ic { color: #FFB68A; }

/* ---------- bölümler ---------- */
.section { padding: 76px 0; }
.section-soft { background: var(--blue-50); }
.section-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: 32px; font-weight: 800; letter-spacing: -.3px; }
.section-head p { color: var(--ink-500); font-size: 15.5px; margin: 12px 0 0; }
.section-navy .section-head p { color: #A9BEDC; }
.kicker { color: var(--blue-600); font-weight: 700; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.section-navy .kicker { color: #8FB6E6; }
.h2-line { font-size: 26px; font-weight: 800; margin-bottom: 26px; }
.section-note { color: var(--ink-500); font-size: 14.5px; margin-top: 20px; }

/* ---------- kart ızgaraları ---------- */
.card-grid { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; color: var(--ink-900); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9DCF2; color: var(--ink-900); }
.service-ic {
  width: 52px; height: 52px; border-radius: 13px; background: var(--blue-100); color: var(--blue-600);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.service-ic .ic svg { width: 26px; height: 26px; }
.service-card h2, .service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--ink-500); line-height: 1.6; margin: 0; }
.card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-600); font-weight: 700; font-size: 14px; margin-top: 15px; }
.card-link .ic svg { width: 16px; height: 16px; }
.service-card:hover .card-link { color: var(--orange-600); }
.service-card-wide { display: flex; gap: 20px; align-items: flex-start; }
.service-card-wide .service-ic { flex-shrink: 0; margin-bottom: 0; }

.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.feature-ic { color: var(--green-wa-dark); margin-bottom: 12px; }
.feature-ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; margin: 0; }

.code-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.code-card strong {
  font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--navy-800);
  display: inline-block; background: var(--orange-100); color: var(--orange-600);
  padding: 4px 14px; border-radius: 9px;
}
.code-card p { color: var(--ink-500); font-size: 14px; line-height: 1.6; margin: 12px 0 0; }

/* ---------- süreç adımları ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; padding: 0 10px; }
.step-num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(36, 114, 204, .35);
}
.step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { color: #A9BEDC; font-size: 14.5px; line-height: 1.65; margin: 0; }
.steps-light .step h3 { color: var(--navy-800); }
.steps-light .step p { color: var(--ink-500); }

/* ---------- markalar ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.brand-chip {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  color: var(--navy-800); font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 20px 10px; transition: border-color .15s, transform .15s, box-shadow .15s;
}
.brand-chip span { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--ink-500); }
.brand-chip:hover { border-color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); color: var(--blue-600); }
.brand-chip .brand-logo { width: 130px; height: 32px; object-fit: contain; margin-bottom: 4px; }
.brand-card .brand-logo { width: 150px; height: 37px; object-fit: contain; object-position: left center; display: block; margin-bottom: 12px; }
.brand-hero-logo {
  display: flex; width: fit-content; background: #fff; border-radius: 12px; padding: 10px 18px; margin: 14px 0 4px;
}
.brand-hero-logo img { width: 180px; height: 44px; object-fit: contain; }
.brand-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); color: var(--ink-900);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #C9DCF2; }
.brand-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.brand-card p { color: var(--ink-500); font-size: 13.5px; margin: 0; }

/* ---------- güven ---------- */
.trust-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.trust-copy h2 { font-size: 30px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.3px; }
.trust-copy > p { color: var(--ink-600); font-size: 15.5px; line-height: 1.75; margin: 0 0 22px; }
.check-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; font-size: 15px; color: var(--navy-800); }
.check-list .ic { color: var(--green-wa-dark); margin-top: 3px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-grid-col { grid-template-columns: 1fr; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.stat strong { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--navy-800); display: block; }
.stat span { font-size: 13.5px; color: var(--ink-500); font-weight: 600; }

/* ---------- bölgeler ---------- */
.district-strip { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.district-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  color: var(--navy-800); font-weight: 700; font-size: 15px; padding: 13px 24px;
  transition: border-color .15s, transform .15s;
}
.district-chip .ic { color: var(--orange-500); }
.district-chip:hover { border-color: var(--orange-500); transform: translateY(-2px); color: var(--navy-800); }
.district-chip-more { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.district-chip-more .ic { color: #FFB68A; }
.district-chip-more:hover { color: #fff; border-color: var(--orange-500); }
.district-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); color: var(--ink-900);
  transition: transform .18s, box-shadow .18s;
}
.district-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.district-ic { color: var(--orange-500); margin-bottom: 12px; }
.district-ic svg { width: 26px; height: 26px; }
.district-card h2 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.district-card p { color: var(--ink-500); font-size: 14px; margin: 0; }
.area-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.area-tags span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: 13.5px; font-weight: 600; color: var(--ink-600);
}

/* ---------- yorumlar ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review-card .stars .off { color: #E3E9F1; }
.review-card p { color: var(--ink-600); font-size: 14.5px; line-height: 1.7; margin: 14px 0 16px; }
.review-by { display: flex; flex-direction: column; gap: 1px; }
.review-by strong { font-size: 14px; color: var(--navy-800); }
.review-by span { font-size: 13px; color: var(--ink-500); }

/* ---------- blog kartları ---------- */
.post-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink-900);
  transition: transform .18s, box-shadow .18s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink-900); }
.post-card-head {
  height: 110px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}
.post-card-head span {
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.35); padding: 7px 16px; border-radius: 999px;
}
.post-card-head.cat-verimlilik { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); }
.post-card-head.cat-kendin-yap-sinirlari { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); }
.post-card-body { padding: 20px 22px 22px; }
.post-card-body h2, .post-card-body h3 { font-size: 16.5px; font-weight: 700; line-height: 1.4; margin-bottom: 9px; }
.post-card-body p { font-size: 13.5px; color: var(--ink-500); line-height: 1.6; margin: 0 0 10px; }
.post-card-body small { color: var(--ink-500); font-size: 12.5px; font-weight: 600; }

/* ---------- SSS ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; font-weight: 700; font-size: 15.5px; color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { color: var(--blue-600); transition: transform .2s; }
.faq-item[open] .faq-ic { transform: rotate(180deg); }
.faq-body { padding: 0 22px 20px; color: var(--ink-500); font-size: 14.5px; line-height: 1.7; }
.faq-body p { margin: 0; }

/* ---------- CTA bandı ---------- */
.cta-banner {
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(135deg, var(--orange-600), var(--orange-500));
  padding: 62px 0;
}
.cta-in { text-align: center; }
.cta-banner h2 { color: #fff; font-size: 29px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.cta-banner p { color: #FFE3D2; font-size: 16px; margin: 0 0 28px; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- alt sayfa hero ---------- */
.breadcrumb { padding: 16px 0 0; font-size: 13.5px; color: var(--ink-500); }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--blue-600); }
.bc-sep { margin: 0 8px; opacity: .6; }
.bc-cur { color: var(--navy-800); font-weight: 600; }
.page-hero { padding: 36px 0 52px; }
.page-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--ink-600); line-height: 1.7; max-width: 700px; margin: 0 0 26px; }
.page-hero .center-text p { margin: 0 auto 26px; }

/* ---------- makale ---------- */
.article { padding: 10px 0 76px; }
.article h1 { font-size: 34px; font-weight: 800; line-height: 1.25; margin: 14px 0; letter-spacing: -.4px; }
.article-meta { color: var(--ink-500); font-size: 13.5px; margin-bottom: 30px; }
.rich-text { font-size: 16.5px; line-height: 1.85; color: #2C3E52; }
.rich-text p { margin: 0 0 20px; }
.rich-text h2 { font-size: 22px; font-weight: 700; margin: 34px 0 14px; }
.rich-text h3 { font-size: 18px; font-weight: 700; margin: 26px 0 12px; }
.rich-text ul, .rich-text ol { padding-left: 24px; margin: 0 0 20px; }
.rich-text li { margin-bottom: 9px; }
.rich-text .uyari {
  background: #FFF7E8; border: 1px solid #F3DFAE; border-radius: var(--radius);
  padding: 18px 22px; margin: 0 0 24px; color: #6B5216; font-size: 15px; line-height: 1.7;
}
.rich-text .uyari strong { color: #8A6116; }
.article-cta {
  background: var(--blue-50); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
}
.article-cta strong { display: block; color: var(--navy-800); font-size: 16.5px; margin-bottom: 5px; }
.article-cta span { color: var(--ink-500); font-size: 14px; }
.article-related { margin-top: 56px; }
.article-related h2 { font-size: 22px; font-weight: 800; margin-bottom: 22px; }

/* ---------- hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 48px; align-items: start; }
.about-side { display: flex; flex-direction: column; gap: 16px; }
.about-note {
  background: var(--blue-50); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; gap: 14px; align-items: flex-start;
}
.about-note .ic { color: var(--blue-600); margin-top: 2px; }
.about-note .ic svg { width: 22px; height: 22px; }
.about-note p { margin: 0; font-size: 14px; color: var(--ink-600); line-height: 1.65; }

/* ---------- iletişim ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--blue-50); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start; color: var(--ink-900);
  transition: border-color .15s;
}
a.contact-card:hover { border-color: var(--blue-600); color: var(--ink-900); }
.contact-ic {
  width: 46px; height: 46px; border-radius: 12px; background: #fff; color: var(--blue-600);
  border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-ic svg { width: 22px; height: 22px; }
.contact-ic-wa { color: var(--green-wa-dark); }
.contact-card h2 { font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--ink-500); margin-bottom: 4px; }
.contact-card strong { font-size: 16.5px; color: var(--navy-800); display: block; }
/* Yalnızca metin span'ları; ikon span'ı (.ic) flex ortalamasını korumalı */
.contact-card > div > span { font-size: 13.5px; color: var(--ink-500); display: block; margin-top: 3px; line-height: 1.5; }

.contact-form-wrap { display: flex; flex-direction: column; gap: 22px; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 15px;
}
.contact-form h2 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: 13.5px; color: var(--navy-800); }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink-900);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; resize: vertical;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue-600); }
.hp { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; opacity: 0; }
.form-result { font-size: 14px; font-weight: 600; display: none; padding: 12px 15px; border-radius: 10px; }
.form-result.ok { display: block; background: #E8F8EE; color: #157347; }
.form-result.err { display: block; background: #FDEBEC; color: #B02A37; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 300px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #A9BEDC; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-about p { font-size: 14px; line-height: 1.7; margin: 16px 0 20px; }
.footer-nap { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-nap a, .footer-nap span { color: #A9BEDC; display: inline-flex; align-items: center; gap: 9px; }
.footer-nap a:hover { color: #fff; }
.footer-nap .ic { color: #5E7EA6; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; background: #16304F; color: #A9BEDC;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: #1E3E63; color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; color: #A9BEDC; font-size: 14px; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-more { font-weight: 700; color: #8FB6E6 !important; }
.footer-districts { border-top: 1px solid #16304F; padding: 26px 0; }
.footer-districts h3 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.footer-districts-list { columns: 5 150px; column-gap: 28px; }
.footer-districts-list a {
  display: block; color: #A9BEDC; font-size: 13px; padding: 3.5px 0;
  break-inside: avoid; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.footer-districts-list a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #16304F; padding: 20px 0 84px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #7A93B3;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #7A93B3; }
.footer-links a:hover { color: #fff; }

/* ---------- sabit ögeler ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%; background: var(--green-wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(34, 193, 94, .45);
  animation: waPulse 2.6s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { background: var(--green-wa-dark); color: #fff; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 26px rgba(34,193,94,.45), 0 0 0 0 rgba(34,193,94,.5); }
  70% { box-shadow: 0 10px 26px rgba(34,193,94,.45), 0 0 0 16px rgba(34,193,94,0); }
  100% { box-shadow: 0 10px 26px rgba(34,193,94,.45), 0 0 0 0 rgba(34,193,94,0); }
}
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 96;
  background: #fff; border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  box-shadow: 0 -6px 20px rgba(8, 28, 54, .1);
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 15.5px; padding: 14px; border-radius: 12px;
}
.mobile-bar-call { background: var(--orange-500); color: #fff; }
.mobile-bar-wa { background: var(--green-wa); color: #fff; }

/* ---------- animasyon ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .hero-card, .hero-visual { animation: fadeUp .7s ease both; }
  .hero-card { animation-delay: .12s; }
  .hero-visual { animation-delay: .22s; }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
}

/* ---------- duyarlılık ---------- */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .main-nav { display: none; }
  .header-cta .btn-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 38px; }
  .trust-grid, .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .hero { 
    padding: 44px 0 40px; 
    background:
      radial-gradient(900px 420px at 85% -10%, rgba(36, 114, 204, .30), transparent 60%),
      radial-gradient(700px 380px at -10% 110%, rgba(242, 107, 33, .15), transparent 55%),
      linear-gradient(160deg, rgba(8, 18, 44, var(--hero-opacity, 0.85)) 0%, rgba(12, 26, 60, var(--hero-opacity, 0.85)) 55%, rgba(18, 36, 72, var(--hero-opacity, 0.85)) 100%),
      var(--hero-mobile-img) center/cover no-repeat;
  }
  .hero h1 { font-size: 31px; }
  .hero-sub { font-size: 16px; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 29px; }
  .article h1 { font-size: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .topbar-hours { display: none; }
  .header-cta .btn { padding: 11px 16px; font-size: 14px; }
  .mobile-bar { display: flex; }
  .wa-float { bottom: 86px; right: 16px; width: 52px; height: 52px; }
  .btn-row .btn { flex: 1 1 auto; }
  .cta-banner h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-text small { display: none; }
  .hero-card { padding: 20px; }
  .hero-card-top a { font-size: 21px; }
}
