/* ==========================================================================
   Özdemir Teknik Servis — stil dosyası
   Marka rengi (accent) tek yerden: :root --accent
   Beyaz tema (tüm site açık zemin)
   ========================================================================== */

:root {
  --brand-dark: #0A3E49;    /* kurumsal omurga: navbar ve ana butonlar */
  --brand: #1598AA;         /* canlı turkuaz: büyük vurgu ve çizgiler */
  --brand-soft: #DDF3F6;    /* açık turkuaz yüzey */
  --accent: #8ADFE8;        /* buz mavisi: ikon ve küçük dekorlar */
  --accent-ink: #08798A;    /* küçük metinde okunur turkuaz */
  --wash: #EFF9FA;          /* bölüm arka planı */
  --bg: #FFFFFF;            /* ana zemin: beyaz */
  --ink: #122B31;           /* ana metin: petrol alt tonlu koyu */
  --muted: #4C5661;        /* gövde gri */
  --muted-2: #5C6672;      /* ikincil gri */
  --line: #DCEAED;         /* ince kenarlık */
  --panel: #EFF9FA;        /* hafif turkuaz panel/bölüm zemini */
  --light: #EFF9FA;        /* açık bölümler */
  --light-ink: #122B31;
  --light-muted: #4C5661;
  --light-muted-2: #6E7783;
  --star: #0B6F82;          /* açık zeminde okunur turkuaz yıldızlar */
  --maxw: 1100px;
  --gutter: clamp(16px, 4vw, 48px);
  /* Claude/Anthropic havası: başlıklar yumuşak serif, gövde grotesk sans */
  --font-display: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--light-ink); }
:focus-visible { outline: 3px solid var(--accent-ink); outline-offset: 3px; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #14181D; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Kaydırınca beliren öğeler */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-photo img, .float-card { animation: none; }
}

/* ── Üst bar ─────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  min-height: 72px;
  padding: 0 var(--gutter);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(10,62,73,.10);
  box-shadow: 0 8px 30px rgba(10,62,73,.06);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  position: relative;
  width: 100%; max-width: var(--maxw); min-height: 72px; margin: 0 auto;
  display: grid; grid-template-columns: auto auto minmax(0, 1fr); align-items: center; gap: 10px;
}
.brand-icon {
  display: grid; place-items: center; color: inherit;
  border-radius: 13px;
}
.brand-icon:hover { color: inherit; }
.brand-icon .logo-mark {
  display: block; flex: none;
  filter: drop-shadow(0 5px 9px rgba(10,62,73,.14));
}
.brand-wordmark {
  display: flex; flex-direction: column; align-items: flex-start;
  color: var(--brand-dark); line-height: 1; white-space: nowrap;
}
.brand-wordmark:hover { color: var(--brand-dark); }
.brand-wordmark span {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: .075em;
}
.brand-wordmark small {
  margin-top: 4px;
  font-family: var(--font-body); font-weight: 700; font-size: 8px;
  letter-spacing: .24em;
}
.nav { display: flex; justify-content: flex-end; align-items: center; gap: 22px; font-size: 14px; font-weight: 600; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--light-ink); }
.nav a.is-active:not(.nav-request) { color: var(--brand-dark); }
.nav-process { display: none; }
.nav .nav-request {
  padding: 10px 16px; border-radius: 999px;
  background: var(--brand-dark); color: #fff;
  box-shadow: 0 7px 18px rgba(10,62,73,.16);
}
.nav .nav-request:hover { background: #062D35; color: #fff; }
.nav .nav-request.is-active { box-shadow: 0 0 0 3px var(--accent), 0 7px 18px rgba(10,62,73,.16); }
.menu-toggle {
  display: none;
  width: 42px; height: 42px; padding: 10px;
  border: 0; border-radius: 12px; background: transparent;
  color: var(--brand-dark); cursor: pointer;
}
.menu-toggle span {
  display: block; width: 21px; height: 2px; margin: 4px auto;
  border-radius: 999px; background: currentColor;
  transition: transform .24s ease, opacity .18s ease;
}
@media (max-width: 560px) {
  .topbar {
    min-height: 64px;
    padding: 0 var(--gutter);
  }
  .topbar-inner {
    min-height: 64px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0;
  }
  .brand-icon { grid-column: 1; justify-self: start; }
  .brand-icon .logo-mark { width: 40px; height: 40px; }
  .brand-wordmark { grid-column: 2; align-items: center; justify-self: center; }
  .brand-wordmark span { font-size: 15px; letter-spacing: .08em; }
  .brand-wordmark small { font-size: 7.5px; letter-spacing: .22em; }
  .menu-toggle { display: block; grid-column: 3; justify-self: end; }
  .nav {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    padding: 10px;
    border: 1px solid rgba(10,62,73,.12); border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 48px rgba(10,62,73,.16);
    backdrop-filter: blur(16px);
    font-size: 14px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav a {
    display: flex; align-items: center; min-height: 44px;
    padding: 10px 12px; border-radius: 11px; white-space: nowrap;
  }
  .nav a:hover { background: var(--wash); color: var(--brand-dark); }
  .nav-process { display: inline; }
  .nav .nav-request {
    justify-content: center; margin-top: 4px;
    background: var(--brand-dark); color: #fff;
  }
  .topbar.is-menu-open .nav {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .topbar.is-menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .topbar.is-menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .topbar.is-menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 110px var(--gutter) 80px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(138,223,232,.24), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(20,24,29,.03), transparent 60%),
    var(--bg);
}
.hero-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(20,24,29,.035) 0 1px, transparent 1px 90px);
}
.hero-grid {
  position: relative; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: clamp(32px, 5vw, 56px); align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px;
}
.badge-light { background: var(--light-ink); color: #fff; }
.badge-light .stars { color: var(--accent); }
.badge-ghost { border: 1px solid rgba(20,24,29,.18); color: var(--muted); font-weight: 600; }
.stars { color: var(--star); letter-spacing: 2px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex: none; }

.hero h1 {
  margin: 0; font-size: clamp(37px, 5.1vw, 60px); line-height: .98; letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--brand); }
.lead {
  margin: 0; max-width: 560px; font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6; color: var(--muted); text-wrap: pretty;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Güven şeridi (hero) */
.hero-features {
  list-style: none; margin: 6px 0 0; padding: 18px 0 0;
  border-top: 1px solid rgba(20,24,29,.1);
  display: flex; flex-wrap: wrap; gap: 12px 22px;
}
.hero-features li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }
.hero-features svg { width: 18px; height: 18px; color: var(--accent-ink); flex: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; padding: 16px 26px; border-radius: 999px;
  color: var(--ink); transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-wa { background: var(--light-ink); color: #fff; }               /* birincil: koyu dolu */
.btn-wa:hover { background: #000; }
.btn-accent { background: #fff; color: var(--light-ink); border: 1px solid rgba(20,24,29,.2); }
.btn-accent:hover { border-color: var(--accent-ink); background: rgba(20,24,29,.03); }
.btn svg { flex: none; }

/* Hero görsel sütunu */
.hero-media { position: relative; width: 100%; }
@media (max-width: 899px) { .hero-media { max-width: 480px; margin-inline: auto; } }
/* Dekoratif şampanya çerçeve: fotoğrafın arkasında sağ-alta ofsetli halka */
.hero-media::before {
  content: ""; position: absolute; inset: -9px;
  border: 2px solid var(--brand); border-radius: 28px; opacity: .32;
  pointer-events: none;
}
.hero-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 50px rgba(20,24,29,.16); border: 1px solid var(--line);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: heroZoom 16s ease-in-out infinite alternate; /* Ken Burns: çok yavaş zoom */
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
/* Mobilde kompakt yatay kadraj — temel 4/5 kuralından SONRA gelmeli ki ezmesin */
@media (max-width: 899px) { .hero-photo { aspect-ratio: 16 / 10; } }
.float-card {
  position: absolute; left: 50%; bottom: 20px;
  transform: translateX(-50%);
  background: #fff; color: var(--light-ink); border-radius: 16px;
  padding: 13px 17px; display: flex; align-items: center; gap: 12px;
  width: max-content; max-width: calc(100% - 24px);
  box-shadow: 0 16px 40px rgba(20,24,29,.18); border: 1px solid var(--line);
  animation: floatCard 5s ease-in-out infinite alternate; /* hafif süzülme */
}
@keyframes floatCard {
  from { transform: translate(-50%, 0); }
  to { transform: translate(-50%, -6px); }
}
.float-card .ico {
  width: 40px; height: 40px; border-radius: 12px; background: var(--accent);
  color: #14181D; display: grid; place-items: center; flex: none;
}
.float-card strong { display: block; font-size: 15px; }
.float-card span.sub { font-size: 13px; color: var(--light-muted); }
@media (max-width: 560px) {
  .hero-media { margin-top: 44px; }
  .float-card { top: -68px; bottom: auto; left: 50%; padding: 10px 14px; }
  .float-card .ico { width: 36px; height: 36px; border-radius: 10px; }
}

.credit {
  position: absolute; left: 8px; bottom: 8px; z-index: 2;
  font-size: 10px; line-height: 1; color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.42); padding: 4px 7px; border-radius: 6px;
  backdrop-filter: blur(2px);
}
.credit a { color: inherit; text-decoration: underline; }
.credit a:hover { color: #fff; }

/* ── Akış bandı ──────────────────────────────────────────────────────────── */
.marquee {
  background: var(--panel); color: var(--light-ink); overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 0; width: 100%;
}
.marquee-track {
  display: flex; width: max-content; animation: marquee 22s linear infinite;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: .1em;
  white-space: nowrap;
}
.marquee-track span { padding-right: 40px; }

/* ── Güven şeridi (sayaçlar) ─────────────────────────────────────────────── */
.stats-band {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 34px var(--gutter);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; } }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-no {
  font-family: var(--font-display); font-weight: 600; color: var(--accent-ink);
  font-size: clamp(28px, 4vw, 38px); line-height: 1;
}
.stat-label { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ── Bölüm başlıkları ────────────────────────────────────────────────────── */
.section { padding: clamp(70px, 10vw, 130px) var(--gutter); }
.section-tight { padding: 0 var(--gutter) clamp(70px, 10vw, 130px); }
.section.wrap,
.section-tight.wrap {
  max-width: calc(var(--maxw) + var(--gutter) + var(--gutter));
}
.eyebrow {
  margin: 0 0 8px; font-weight: 700; font-size: 13px; letter-spacing: .16em;
  color: var(--accent-ink); text-transform: uppercase;
}
.section h2 { margin: 0 0 40px; font-size: clamp(28px, 4.5vw, 48px); line-height: 1.05; }

/* ── Hizmet kartları ─────────────────────────────────────────────────────── */
.grid-auto {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 6px 22px rgba(20,24,29,.05);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(20,24,29,.09); }
.card .icon {
  width: 48px; height: 48px; background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; border-radius: 12px;
}
.card h2, .card h3 { margin: 0; font-size: 20px; font-weight: 700; font-family: var(--font-body); }
.card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted-2); text-wrap: pretty; }
.service-card { color: var(--ink); min-height: 100%; }
.service-card:hover { color: var(--ink); }
.service-card .card-link {
  margin-top: auto; padding-top: 8px;
  color: var(--accent-ink); font-size: 14px; font-weight: 700;
}

.sales-grid {
  margin-top: 16px; display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.sale {
  border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.sale h3 { margin: 0; font-size: 20px; font-weight: 700; font-family: var(--font-body); }
.sale p { margin: 0; font-size: 15px; line-height: 1.65; text-wrap: pretty; }
.sale-hot {
  background: linear-gradient(135deg, var(--accent), var(--brand-soft));
  color: var(--brand-dark); box-shadow: 0 10px 30px rgba(21,152,170,.20);
}
.sale-hot h3 { color: var(--brand-dark); }
.sale-hot p { color: rgba(20,24,29,.8); }
.sale-plain { background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 22px rgba(20,24,29,.05); }
.sale-plain p { color: var(--muted-2); }
.sale-label {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  color: var(--accent-ink); text-transform: uppercase;
}
.sale a { margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 700; }

/* ── Süreç ───────────────────────────────────────────────────────────────── */
.step {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  box-shadow: 0 6px 22px rgba(20,24,29,.05);
  display: flex; flex-direction: column; gap: 10px;
}
.step .no { font-family: var(--font-display); font-weight: 600; font-size: 40px; color: var(--accent-ink); line-height: 1; }
.step h3 { margin: 0; font-size: 19px; font-weight: 700; font-family: var(--font-body); }
.step p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted-2); text-wrap: pretty; }
.brands {
  margin-top: 36px; display: flex; align-items: baseline; gap: 12px 10px; flex-wrap: wrap;
}
.brands .label {
  font-weight: 700; font-size: 13px; letter-spacing: .16em; color: var(--light-muted-2);
  text-transform: uppercase; flex: none;
}
.brands .list { font-size: 14px; line-height: 2; color: var(--muted-2); }

/* ── Galeri ──────────────────────────────────────────────────────────────── */
.gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.shot {
  position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
  background: var(--panel); border: 1px solid var(--line);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ── Açık zeminli bölümler (yorumlar + iletişim + SSS) ───────────────────── */
.light {
  background: var(--light); color: var(--light-ink);
}
.light.rounded-top { border-radius: 32px 32px 0 0; }
.light a:not(.pill) { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.light a:not(.pill):hover { color: var(--light-ink); }
.light h2 { color: var(--light-ink); }
.light .eyebrow { color: var(--accent-ink); }

.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 36px;
}
.reviews-head h2 { margin: 0; }
.score-card {
  display: flex; align-items: center; gap: 12px; background: #fff;
  padding: 12px 18px; border-radius: 14px; box-shadow: 0 6px 24px rgba(20,24,29,.08);
}
.score-card .big { font-family: var(--font-display); font-weight: 600; font-size: 30px; }
.score-card small { font-size: 13px; line-height: 1.4; color: var(--light-muted); }
.score-card .stars { font-size: 15px; }

.review {
  margin: 0; background: #fff; border-radius: 18px; padding: 26px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: 0 6px 24px rgba(20,24,29,.06);
}
.review blockquote { margin: 0; font-size: 15px; line-height: 1.65; color: #2A2F36; text-wrap: pretty; }
.review .stars { letter-spacing: 3px; }
.review figcaption { font-size: 14px; font-weight: 700; }
.review figcaption .role { font-weight: 400; color: var(--light-muted-2); }
.reviews-link { margin: 26px 0 0; font-size: 15px; }
.reviews-link a { font-weight: 700; }

/* ── SSS ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq {
  background: #fff; border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 6px 24px rgba(20,24,29,.06);
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 16px; font-weight: 700; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--light-ink);
  color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 700;
  line-height: 1; transition: transform .3s ease;
}
.faq[open] .plus { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--light-muted); text-wrap: pretty; }

/* ── Servis Talebi (form) ────────────────────────────────────────────────── */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px; box-shadow: 0 6px 24px rgba(20,24,29,.06);
}
.hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.f-row { display: flex; gap: 14px; flex-wrap: wrap; }
.f-row .f-field { flex: 1; min-width: 180px; }
.f-field {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--light-muted-2);
  text-transform: uppercase;
}
.f-field input, .f-field select, .f-field textarea {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  text-transform: none; letter-spacing: normal; color: var(--light-ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; width: 100%;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--accent-ink); box-shadow: 0 0 0 3px rgba(8,121,138,.16);
}
.f-field textarea { resize: vertical; min-height: 90px; }
.f-err {
  text-transform: none; letter-spacing: normal; font-style: normal;
  font-weight: 700; font-size: 12.5px; color: var(--accent-ink);
}
.f-submit { width: 100%; border: 0; cursor: pointer; margin-top: 4px; }
.form-success { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.fs-ico {
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 20px; font-weight: 700; flex: none;
}
.form-success h3 { margin: 0; font-size: 21px; }
.form-success p { margin: 0; color: var(--light-muted); font-size: 15px; line-height: 1.6; }
#servis-talebi { scroll-margin-top: 82px; }
@media (max-width: 560px) {
  #hizmetler, #surec, #yorumlar, #servis-talebi, #iletisim { scroll-margin-top: 76px; }
}

/* ── İletişim ────────────────────────────────────────────────────────────── */
.contact {
  display: grid; gap: 32px; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.contact > * { min-width: 0; }
.contact h2 { margin: 0; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-rows { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.info-row { display: flex; gap: 12px; align-items: baseline; }
.info-row strong {
  width: 74px; flex: none; color: var(--light-muted-2); font-size: 13px;
  text-transform: uppercase; letter-spacing: .08em;
}
.info-row .dot { display: inline-block; margin-right: 6px; }
.contact-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; color: #fff; transition: transform .25s ease;
}
.pill:hover { transform: translateY(-3px); }
.pill-dark { background: var(--light-ink); }
.pill-wa { background: transparent; color: var(--light-ink); border: 1px solid rgba(20,24,29,.28); }
.pill-wa:hover { background: rgba(20,24,29,.05); }
.map { width: 100%; max-width: 100%; min-width: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.map iframe {
  width: 100%; height: 100%; border: 0; border-radius: 18px; display: block;
  box-shadow: 0 6px 24px rgba(20,24,29,.1);
}
@media (max-width: 560px) { .map { aspect-ratio: 1 / 1; } }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #fff; color: var(--light-muted-2); padding: 28px var(--gutter); font-size: 13px; border-top: 1px solid var(--line); }
.footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px 24px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 700; }
.footer a { color: var(--muted); }
.footer-nav { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ── Sabit alt bar (mobil hızlı iletişim) ────────────────────────────────── */
.dockbar {
  position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 60;
  display: flex; gap: 8px; background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  padding: 8px; border-radius: 999px; box-shadow: 0 10px 30px rgba(20,24,29,.16);
  border: 1px solid var(--line);
  width: min(420px, calc(100% - 24px));
}
.dockbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 8px; border-radius: 999px; color: #fff;
}
.dockbar .d-call { background: var(--light-ink); color: #fff; }
.dockbar .d-wa { background: transparent; color: var(--light-ink); border: 1px solid rgba(20,24,29,.2); }

body { padding-bottom: 72px; }
@media (min-width: 769px) {
  body { padding-bottom: 0; }
  .dockbar { display: none; }
}

/* ── Mobilde hafif tonal katmanlar ───────────────────────────────────────── */
@media (max-width: 560px) {
  body { background: #F6FBFC; }
  .topbar { background: rgba(248,252,253,.97); }
  .hero {
    background:
      radial-gradient(560px 340px at 90% 5%, rgba(138,223,232,.30), transparent 64%),
      linear-gradient(180deg, #F6FCFD 0%, #FFFFFF 58%, #EAF7F9 100%);
  }
  .badge-ghost { background: rgba(255,255,255,.72); }
  .hero-features {
    margin-top: 0;
    padding: 15px;
    border: 1px solid rgba(8,121,138,.16);
    border-radius: 18px;
    background: rgba(21,152,170,.09);
  }
  .stats-band { background: var(--wash); }
  #hizmetler { background: linear-gradient(180deg, #F4FBFC 0%, #FFFFFF 72%); }
  .light { background: #EAF7F9; }
  .footer { background: #F6FBFC; }
}

/* ── Çok sayfalı yapı ───────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  display: flex; align-items: center;
  min-height: 58svh;
  padding: 140px var(--gutter) 86px;
  overflow: hidden;
  background:
    radial-gradient(800px 420px at 84% 8%, rgba(138,223,232,.28), transparent 66%),
    linear-gradient(180deg, #F7FCFD 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(10,62,73,.035) 0 1px, transparent 1px 90px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 850px; margin: 0;
  font-size: clamp(42px, 7vw, 76px); line-height: .98; letter-spacing: -.02em;
}
.page-hero h1 span { color: var(--brand); }
.page-lead {
  max-width: 680px; margin: 24px 0 0;
  color: var(--muted); font-size: clamp(17px, 2.2vw, 21px); line-height: 1.65;
}
.page-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.page-section-first { padding-top: clamp(70px, 9vw, 110px); }

.section-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 40px;
}
.section-heading h2 { margin: 0; }
.text-link { flex: none; padding-bottom: 5px; font-size: 14px; font-weight: 700; }

.home-cta { padding-top: clamp(58px, 8vw, 90px); }
.cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(460px 230px at 92% 5%, rgba(138,223,232,.22), transparent 70%),
    var(--brand-dark);
  box-shadow: 0 22px 55px rgba(10,62,73,.18);
}
.cta-panel .eyebrow { color: var(--accent); }
.cta-panel h2 { margin: 0; color: #fff; font-size: clamp(30px, 4.5vw, 48px); line-height: 1.02; }
.cta-panel p:not(.eyebrow) { max-width: 560px; margin: 16px 0 0; color: rgba(255,255,255,.72); line-height: 1.6; }
.cta-panel-actions { display: flex; flex-direction: column; gap: 10px; min-width: 210px; }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: var(--brand-soft); color: var(--brand-dark); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; color: #fff; }

/* Ana sayfa: talep formu ve konum aynı karar alanında */
.home-request-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 360px at 4% 100%, rgba(138,223,232,.24), transparent 68%),
    linear-gradient(180deg, #F8FCFD 0%, var(--wash) 100%);
  border-top: 1px solid var(--line);
}
.home-request-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(10,62,73,.03) 0 1px, transparent 1px 90px);
}
.home-request-section > .wrap { position: relative; z-index: 1; }
.home-request-head {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(26px, 6vw, 72px); align-items: end; margin-bottom: 36px;
}
.home-request-head h2 { margin: 0; }
.home-request-head > p {
  margin: 0; max-width: 480px; color: var(--muted); font-size: 16px; line-height: 1.65;
}
.home-request-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px; align-items: stretch;
}
.home-form-card, .home-location-card {
  min-width: 0; padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line); border-radius: 24px; background: #fff;
  box-shadow: 0 16px 42px rgba(10,62,73,.08);
}
.home-form-card { display: flex; flex-direction: column; }
.home-form-card form { flex: 1; display: flex; flex-direction: column; }
.home-form-card .f-submit { margin-top: auto; }
.home-location-card { display: flex; flex-direction: column; gap: 20px; }
.home-card-title {
  display: flex; align-items: flex-start; gap: 14px; min-height: 62px; margin-bottom: 22px;
}
.home-card-title h3 { margin: 0; color: var(--brand-dark); font-size: 23px; line-height: 1.15; }
.home-card-title p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.home-card-no {
  display: grid; place-items: center; flex: none; width: 38px; height: 38px;
  border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
}
.home-map { flex: 1; min-height: 285px; aspect-ratio: auto; }
.home-map iframe { border-radius: 16px; }
.home-location-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.home-location-actions .pill { flex: 1; justify-content: center; min-width: 150px; }

@media (max-width: 860px) {
  .home-request-head, .home-request-grid { grid-template-columns: 1fr; }
  .home-request-head { align-items: start; }
  .home-request-head > p { max-width: 620px; }
}
@media (max-width: 560px) {
  .home-request-section { background: linear-gradient(180deg, #F1FAFB 0%, #E6F5F7 100%); }
  .home-request-grid { gap: 14px; }
  .home-form-card, .home-location-card { border-radius: 20px; }
  .home-card-title { min-height: 0; margin-bottom: 18px; }
  .home-form-card .f-row { display: block; }
  .home-map { min-height: 260px; aspect-ratio: 1 / 1; }
  .home-location-actions { flex-direction: column; }
  .home-location-actions .pill { width: 100%; }
}

.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 26px;
  color: var(--muted); font-size: 13px; font-weight: 700;
}
.breadcrumb a { color: var(--accent-ink); }
.detail-hero { min-height: auto; }
.detail-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
.detail-hero h1 { font-size: clamp(38px, 5.6vw, 66px); }
.detail-image {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border: 8px solid #fff; border-radius: 26px;
  box-shadow: 0 22px 55px rgba(10,62,73,.16);
}
.detail-image::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(10,62,73,.1); border-radius: 18px;
}
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-columns {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: clamp(32px, 6vw, 72px); align-items: start;
}
.check-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px; margin: 32px 0 0; padding: 0; list-style: none;
}
.check-list li {
  position: relative; min-height: 52px; padding: 14px 14px 14px 46px;
  border: 1px solid var(--line); border-radius: 14px;
  background: #fff; color: var(--muted); font-size: 14px; line-height: 1.45;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 15px; top: 14px;
  display: grid; place-items: center; width: 21px; height: 21px;
  border-radius: 50%; background: var(--brand-soft); color: var(--accent-ink); font-weight: 800;
}
.issue-panel {
  padding: 28px; border: 1px solid rgba(8,121,138,.16); border-radius: 20px;
  background: var(--wash); box-shadow: 0 12px 32px rgba(10,62,73,.07);
}
.panel-label {
  display: block; margin-bottom: 16px; color: var(--accent-ink);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.issue-panel ul { display: flex; flex-direction: column; gap: 12px; margin: 0 0 24px; padding-left: 20px; }
.issue-panel li { color: var(--muted); font-size: 15px; line-height: 1.5; }
.issue-panel a { font-weight: 700; }

.gallery-large { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.work-shot { aspect-ratio: 16 / 10; margin: 0; }
.work-shot figcaption {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  max-width: calc(100% - 28px); padding: 8px 11px;
  border-radius: 10px; background: rgba(255,255,255,.9);
  color: var(--brand-dark); font-size: 13px; font-weight: 700;
  backdrop-filter: blur(6px);
}

.review-hero-score {
  display: inline-flex; align-items: center; gap: 16px; margin-bottom: 24px;
  padding: 13px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff;
  box-shadow: 0 8px 28px rgba(10,62,73,.08);
}
.review-hero-score strong { font-family: var(--font-display); font-size: 34px; line-height: 1; }
.review-hero-score span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.review-large { min-height: 260px; justify-content: space-between; }
.review-large blockquote { font-size: 17px; }
.external-review-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 24px; padding: 28px; border: 1px solid var(--line); border-radius: 20px;
  background: var(--wash);
}
.external-review-card h2 { max-width: 620px; margin: 8px 0 0; font-size: clamp(24px, 3vw, 34px); }

.request-layout { grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr); gap: clamp(36px, 7vw, 84px); }
.request-promises {
  display: flex; flex-direction: column; gap: 10px; margin: 10px 0 0; padding: 0; list-style: none;
}
.request-promises li {
  position: relative; padding-left: 28px; color: var(--muted); font-size: 14px; font-weight: 600;
}
.request-promises li::before {
  content: "✓"; position: absolute; left: 0; color: var(--accent-ink); font-weight: 800;
}
.contact-rows { gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.request-inline-link { margin-top: 8px; font-weight: 700; }

@media (max-width: 860px) {
  .detail-hero-grid, .detail-columns, .request-layout { grid-template-columns: 1fr; }
  .detail-image { max-width: 620px; }
  .request-layout .form-card { order: -1; }
  .cta-panel, .external-review-card { align-items: flex-start; flex-direction: column; }
  .cta-panel-actions { width: 100%; min-width: 0; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .page-hero { min-height: auto; padding-top: 112px; padding-bottom: 64px; }
  .page-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .page-lead { margin-top: 18px; font-size: 17px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .check-list, .gallery-large { grid-template-columns: 1fr; }
  .cta-panel { border-radius: 22px; }
  .cta-panel-actions { flex-direction: column; }
  .cta-panel-actions .btn { width: 100%; }
  .external-review-card .btn { width: 100%; }
  .footer-grid { align-items: flex-start !important; flex-direction: column; }
  .footer-nav { gap: 10px 16px; }
}

/* ── Açılış animasyonu (klima · serin hava) ──────────────────────────────── */
#splash {
  position: fixed; inset: 0; z-index: 9999; background: #fff;
  display: grid; place-items: center; overflow: hidden;
  animation: splashOut .7s cubic-bezier(.55,0,.45,1) 2.35s forwards;
}
/* Erken kapatma (tıklama/kaydırma) */
#splash.is-hiding {
  animation: none; opacity: 0; visibility: hidden; transform: translateY(-24px);
  transition: opacity .4s ease, transform .4s ease;
}

/* Serin hava akış çizgileri */
.splash-air {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 140%; max-width: 1400px; height: auto; z-index: 0;
  animation: airDrift 3.4s ease-in-out .3s both;
}
.splash-air path {
  fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 640; opacity: 0;
  animation: airDraw 1.5s ease .3s both;
}
.splash-air path:nth-child(2) { animation-delay: .45s; }
.splash-air path:nth-child(3) { animation-delay: .6s; }

/* Kar taneleri */
.flake {
  position: absolute; top: -6%; left: var(--x); z-index: 1;
  font-size: var(--s); line-height: 1; color: var(--brand); opacity: 0;
  animation: flakeFall 2.7s linear var(--d) both;
}

/* Merkez: logo + isim */
.splash-core { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0 24px; text-align: center; }
.splash-badge { position: relative; display: grid; place-items: center; }
.splash-badge svg { position: relative; z-index: 1; animation: splashLogo .85s cubic-bezier(.2,.7,.2,1) .15s both; }
.splash-ring {
  position: absolute; top: 50%; left: 50%; width: 78px; height: 78px; margin: -39px 0 0 -39px;
  border: 2px solid var(--brand); border-radius: 50%; opacity: 0;
  animation: splashRing 1.9s ease-out .2s both;
}
.splash-ring-2 { animation-delay: .65s; }
.splash-name {
  font-family: var(--font-display); font-weight: 600; color: var(--light-ink);
  font-size: clamp(21px, 6vw, 32px); line-height: 1.08; letter-spacing: .05em;
  animation: splashUp .7s ease .55s both;
}
.splash-tag {
  font-size: clamp(11px, 3vw, 13px); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  animation: splashUp .7s ease .92s both;
}

@keyframes splashLogo { 0% { opacity: 0; transform: scale(.72); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1); } }
@keyframes splashUp { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: none; } }
@keyframes splashRing { 0% { opacity: 0; transform: scale(.32); } 22% { opacity: .5; } 100% { opacity: 0; transform: scale(2); } }
@keyframes airDraw { 0% { stroke-dashoffset: 640; opacity: 0; } 30% { opacity: .45; } 100% { stroke-dashoffset: 0; opacity: .45; } }
@keyframes airDrift { 0% { transform: translate(-50%, -50%) translateX(-26px); } 100% { transform: translate(-50%, -50%) translateX(26px); } }
@keyframes flakeFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0); }
  15% { opacity: .75; } 85% { opacity: .75; }
  100% { opacity: 0; transform: translateY(92vh) rotate(230deg); }
}
@keyframes splashOut { 0% { opacity: 1; } 100% { opacity: 0; visibility: hidden; transform: translateY(-24px); } }

/* Hareket azaltma tercihi: animasyonu tamamen atla */
@media (prefers-reduced-motion: reduce) {
  #splash { display: none; }
}
