:root {
  --ink: #07111f;
  --ink-soft: #102136;
  --slate: #6e7d8f;
  --paper: #f4f7fa;
  --line: rgba(7, 17, 31, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --orange: #f28c28;
  --orange-bright: #ffb45c;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(4, 13, 26, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.topbar {
  min-height: 36px;
  display: flex;
  align-items: center;
  background: var(--orange);
  color: #281505;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 17, 31, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; letter-spacing: -.035em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; color: var(--ink); background: var(--orange);
  box-shadow: 0 5px 18px rgba(242,140,40,.28);
}
.brand-mark svg { width: 21px; height: 21px; }
.brand-copy { font-size: 17px; line-height: 1.08; }
.brand-copy small { display: block; color: #91a0b1; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; margin-top: 5px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #bfccd8; font-size: 14px; font-weight: 650; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-call { display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: 14px; font-weight: 750; }
.nav-call span { color: var(--orange-bright); font-size: 17px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--white); padding: 8px; cursor: pointer; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  /* Fotoğraf gönderildiğinde yalnızca assets/hero-generator.jpg dosyasını değiştirmeniz yeterlidir. */
  background-image: linear-gradient(90deg, rgba(7,17,31,.98) 0%, rgba(7,17,31,.9) 31%, rgba(7,17,31,.42) 65%, rgba(7,17,31,.25) 100%), url("hero-generator.jpg");
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 180px; z-index: -1;
  background: linear-gradient(0deg, rgba(7,17,31,.85), transparent);
}
.hero-content { width: min(720px, 100%); padding: 84px 0 100px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange-bright); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); }
.hero h1 { max-width: 720px; margin: 19px 0 22px; font-size: clamp(44px, 6.3vw, 78px); line-height: .98; letter-spacing: -.065em; }
.hero h1 em { color: var(--orange-bright); font-style: normal; }
.hero-lead { max-width: 615px; margin: 0; color: #d6dee7; font-size: clamp(17px, 2vw, 20px); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.button { min-height: 52px; padding: 0 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #261506; box-shadow: 0 10px 25px rgba(242,140,40,.22); }
.button-primary:hover { background: var(--orange-bright); }
.button-ghost { border-color: rgba(255,255,255,.23); color: var(--white); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.45); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 30px; color: #9aa9b8; font-size: 13px; }
.hero-note strong { color: #dfe8ef; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #6dd497; box-shadow: 0 0 0 5px rgba(109,212,151,.12); }

.trust-strip { position: relative; background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { min-height: 90px; padding: 18px 28px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: var(--orange); background: rgba(242,140,40,.11); flex: 0 0 auto; }
.trust-icon svg { width: 17px; height: 17px; }
.trust-item strong { display: block; font-size: 14px; line-height: 1.3; }
.trust-item span { display: block; color: var(--slate); font-size: 13px; margin-top: 2px; }

.section { padding: 112px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-kicker { color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section h2 { margin: 12px 0 0; font-size: clamp(31px, 4vw, 52px); line-height: 1.05; letter-spacing: -.055em; }
.section-intro { color: var(--slate); font-size: 17px; margin: 18px 0 0; }
.section-dark .section-intro { color: #aebdca; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 275px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(242,140,40,.55); box-shadow: var(--shadow); }
.service-number { color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.service-card h3 { margin: 56px 0 10px; font-size: 20px; letter-spacing: -.03em; }
.service-card p { margin: 0; color: var(--slate); font-size: 15px; line-height: 1.55; }
.service-arrow { margin-top: auto; padding-top: 22px; color: var(--orange); font-size: 22px; }

.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 82px; align-items: start; }
.story-copy p { max-width: 555px; color: var(--slate); font-size: 17px; }
.story-copy p + p { margin-top: 18px; }
.check-list { display: grid; gap: 15px; margin: 31px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-weight: 700; }
.check-list li::before { content: "✓"; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #271505; font-size: 13px; flex: 0 0 auto; margin-top: 2px; }
.process { display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-step b { color: var(--orange); font-size: 14px; }
.process-step strong { display: block; font-size: 17px; }
.process-step span { display: block; margin-top: 5px; color: var(--slate); font-size: 14px; }

.local-band { background: #e9eef3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 62px 0; }
.local-grid h2 { max-width: 700px; margin: 12px 0 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.04; letter-spacing: -.05em; }
.local-grid p { max-width: 640px; margin: 15px 0 0; color: var(--slate); font-size: 17px; }
.district-section { padding: 82px 0 94px; background: #e9eef3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.district-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.district-card { min-height: 154px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(7,17,31,.12); border-radius: var(--radius-md); background: var(--white); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.district-card:hover { transform: translateY(-4px); border-color: rgba(242,140,40,.6); box-shadow: 0 13px 30px rgba(7,17,31,.1); }
.district-card small { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.district-card strong { margin-top: 12px; font-size: 17px; letter-spacing: -.025em; }
.district-card span { margin-top: 11px; color: var(--slate); font-size: 13px; }
.district-card b { align-self: flex-end; color: var(--orange); font-size: 20px; line-height: 1; }

.cta-panel { position: relative; overflow: hidden; padding: 64px; border-radius: var(--radius-lg); background: var(--orange); color: #211304; }
.cta-panel::after { content: ""; width: 300px; height: 300px; position: absolute; right: -90px; top: -110px; border: 1px solid rgba(33,19,4,.23); border-radius: 50%; box-shadow: 0 0 0 34px rgba(33,19,4,.04), 0 0 0 68px rgba(33,19,4,.04); }
.cta-panel h2 { max-width: 630px; margin: 0; font-size: clamp(32px, 4vw, 56px); line-height: 1.03; letter-spacing: -.06em; }
.cta-panel p { max-width: 560px; margin: 16px 0 28px; color: rgba(33,19,4,.72); font-size: 17px; }
.cta-panel .button { position: relative; z-index: 1; background: var(--ink); color: var(--white); }
.cta-panel .button:hover { background: var(--ink-soft); }

.map-section { padding: 0 0 112px; background: var(--paper); }
.map-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 32px; }
.map-heading h2 { margin: 12px 0 0; font-size: clamp(31px, 4vw, 52px); line-height: 1.05; letter-spacing: -.055em; }
.map-heading p { max-width: 580px; margin: 16px 0 0; color: var(--slate); font-size: 17px; }
.map-open { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; color: var(--ink); font-size: 14px; font-weight: 800; border-bottom: 2px solid var(--orange); padding-bottom: 5px; }
.map-open:hover { color: #d16b11; }
.map-frame { overflow: hidden; min-height: 360px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #dbe2e9; box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; filter: saturate(.85) contrast(1.03); }

.quick-contact { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: flex; align-items: center; gap: 7px; padding: 7px 8px 7px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 17px; background: rgba(7,17,31,.96); color: var(--white); box-shadow: 0 14px 36px rgba(4,13,26,.24); backdrop-filter: blur(15px); }
.quick-contact-label { padding-right: 3px; color: #aebdca; font-size: 11px; font-weight: 750; white-space: nowrap; }
.quick-action { min-width: 67px; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 11px; color: var(--white); font-size: 12px; font-weight: 800; transition: transform .2s ease, filter .2s ease; }
.quick-action:hover { transform: translateY(-2px); filter: brightness(1.08); }
.quick-action svg { width: 17px; height: 17px; }
.quick-whatsapp { background: #1fb76a; }
.quick-call { background: var(--orange); color: #241505; }

.breadcrumb-wrap { background: #0d1d31; color: #a8b6c5; }
.breadcrumb { min-height: 48px; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb strong { color: var(--orange-bright); font-weight: 700; }
.local-hero { padding: 86px 0 92px; background: var(--ink); color: var(--white); }
.local-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: end; gap: 70px; }
.local-hero h1 { max-width: 710px; margin: 17px 0 20px; font-size: clamp(42px, 6vw, 68px); line-height: 1; letter-spacing: -.065em; }
.local-hero h1 em { color: var(--orange-bright); font-style: normal; }
.local-hero p { max-width: 640px; margin: 0; color: #c8d3de; font-size: 18px; }
.coverage-card { padding: 26px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: linear-gradient(140deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); }
.coverage-card-label { color: var(--orange-bright); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.coverage-card strong { display: block; margin-top: 13px; font-size: 23px; letter-spacing: -.035em; }
.coverage-card p { margin: 9px 0 0; color: #aebdca; font-size: 15px; }
.districts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.districts span { padding: 7px 11px; color: #d4dee7; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: 13px; }
.local-content-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: start; }
.local-content-grid h2 { margin-bottom: 18px; }
.local-content-grid p { color: var(--slate); font-size: 17px; }
.local-callout { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 10px 35px rgba(7,17,31,.06); }
.local-callout .section-kicker { display: block; margin-bottom: 10px; }
.local-callout h3 { margin: 0; font-size: 23px; letter-spacing: -.04em; }
.local-callout p { margin: 9px 0 22px; font-size: 15px; }
.local-callout .button { width: 100%; }

.site-footer { padding: 48px 0 30px; background: #050c16; color: #c2ced9; }
.footer-main { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-main .brand { align-self: flex-start; }
.footer-contact { display: flex; gap: 40px; align-items: flex-start; }
.footer-contact > div { display: grid; gap: 5px; }
.footer-contact small { color: #7e90a2; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.footer-contact a, .footer-contact span { color: var(--white); font-size: 17px; font-weight: 750; }
.footer-contact a:hover { color: var(--orange-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; color: #7e90a2; font-size: 12px; }

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid, .local-hero-grid, .local-content-grid { gap: 45px; }
  .local-grid { grid-template-columns: 1fr; gap: 24px; }
  .local-grid .button { justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 560px); }
  .topbar { min-height: 34px; font-size: 11px; }
  .topbar-inner { justify-content: center; }
  .topbar-inner span { display: none; }
  .nav { min-height: 70px; }
  .nav-links { position: absolute; top: 69px; left: 0; right: 0; display: none; padding: 19px 16px 24px; flex-direction: column; align-items: flex-start; gap: 17px; background: rgba(7,17,31,.98); border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 15px; }
  .nav-call { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero { min-height: 650px; }
  .hero::before { background-position: 61% center; background-image: linear-gradient(90deg, rgba(7,17,31,.99) 0%, rgba(7,17,31,.86) 58%, rgba(7,17,31,.56) 100%), url("hero-generator.jpg"); }
  .hero-content { padding: 74px 0 80px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { min-height: 70px; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .district-section { padding: 65px 0 76px; }
  .district-grid { grid-template-columns: 1fr 1fr; }
  .district-card { min-height: 142px; padding: 18px; }
  .service-card { min-height: 220px; }
  .service-card h3 { margin-top: 34px; }
  .story-grid, .local-hero-grid, .local-content-grid { grid-template-columns: 1fr; gap: 38px; }
  .local-hero { padding: 66px 0 72px; }
  .local-hero h1 { font-size: clamp(40px, 12vw, 57px); }
  .local-hero p { font-size: 17px; }
  .local-grid { padding: 47px 0; }
  .map-section { padding-bottom: 76px; }
  .map-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .map-open { align-self: flex-start; }
  .map-frame, .map-frame iframe { min-height: 300px; height: 300px; }
  .quick-contact { right: 12px; bottom: 12px; left: 12px; justify-content: space-between; padding-left: 11px; }
  .quick-contact-label { font-size: 10px; }
  .quick-action { min-width: 86px; }
  .cta-panel { padding: 36px 24px; }
  .cta-panel .button { width: auto; }
  .footer-main { flex-direction: column; padding-bottom: 28px; }
  .footer-contact { flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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