/* ==========================================================================
   Ekol Koltuk — Anasayfa (Google Ads açılış sayfası)
   Bu dosya SADECE index.html tarafından kullanılır. Diğer sayfalar
   assets/css/style.css kullanmaya devam eder.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Değişkenler + temel sıfırlama
   -------------------------------------------------------------------------- */
:root {
  --navy: #0a1d4e;
  --navy-800: #102a6b;
  --navy-900: #061334;
  --gold: #c9a227;
  --gold-600: #ab8a1a;
  --gold-100: #f6edd2;
  --wa: #16a34a;
  --wa-600: #128a3e;
  --ivory: #f7f5f0;
  --white: #ffffff;
  --ink: #1a1a2e;
  --muted: #5a6072;
  --line: #e4e2dc;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10, 29, 78, 0.07);
  --shadow: 0 12px 32px rgba(10, 29, 78, 0.12);
  --shadow-lg: 0 26px 60px rgba(10, 29, 78, 0.22);

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: 20px;
  --topbar-h: 38px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   2. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease,
              border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 10px 24px rgba(201, 162, 39, 0.34); }
.btn-gold:hover { background: #d8b12f; box-shadow: 0 14px 30px rgba(201, 162, 39, 0.44); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(22, 163, 74, 0.32); }
.btn-wa:hover { background: var(--wa-600); box-shadow: 0 14px 30px rgba(22, 163, 74, 0.42); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-800); }

.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

.btn-outline { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }

.btn-lg { padding: 17px 32px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   3. Üst bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { opacity: 0.72; flex: 0 0 auto; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--gold); }
.topbar-phone { color: var(--gold) !important; }

@media (max-width: 860px) {
  .topbar { font-size: 0.76rem; }
  /* Çalışma saatlerini gizle — telefon numarasına yer aç */
  .topbar-left .topbar-item + .topbar-item { display: none; }
}
@media (max-width: 700px) {
  /* Uzun konum metni telefonu kenardan taşırıyordu */
  .tb-long { display: none; }
  .topbar { font-size: 0.72rem; }
  .topbar-inner { gap: 10px; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(10, 29, 78, 0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-800) 100%);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.16rem;
  flex: 0 0 auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.28rem; font-weight: 700; color: var(--navy);
  white-space: nowrap;
}
.brand-name span { color: var(--gold); }
.brand-tag {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: center; }
.main-nav a {
  padding: 9px 11px;
  text-decoration: none;
  font-size: 0.91rem; font-weight: 600;
  color: var(--ink);
  border-radius: 9px;
  white-space: nowrap;
}
.main-nav a:hover { background: var(--ivory); color: var(--navy); }
.main-nav a.is-current { color: var(--navy); background: var(--gold-100); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 20px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Telefon butonu dar masaüstünde menüyü sıkıştırıyor — gizle, üst barda zaten var */
@media (max-width: 1320px) {
  .header-cta .btn-header-call { display: none; }
}

@media (max-width: 1150px) {
  .nav-toggle { display: grid; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(10, 29, 78, 0.14);
    padding: 8px var(--gutter) 18px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 10px; border-radius: 10px; }
}

/* Dar telefonlarda marka + WhatsApp + hamburger yan yana sığmıyordu:
   WhatsApp butonu ikona iner, hamburger her zaman erişilebilir kalır. */
@media (max-width: 620px) {
  .header-inner { gap: 10px; min-height: 64px; }
  .brand-mark { width: 36px; height: 36px; font-size: 1.02rem; border-radius: 10px; }
  .brand-name { font-size: 1.08rem; }
  .brand-tag { font-size: 0.57rem; letter-spacing: 0.1em; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 11px 14px; }
  .header-cta .btn-wa .wa-txt { display: none; }
  .nav-toggle { width: 44px; height: 44px; flex: 0 0 auto; }
}

/* --------------------------------------------------------------------------
   4. Hero + slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  isolation: isolate;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
/* Yavaş yakınlaşma — sadece aktif slaytta */
.hero-slide.is-active img { animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(6, 19, 52, 0.94) 0%, rgba(6, 19, 52, 0.82) 38%,
                    rgba(6, 19, 52, 0.42) 66%, rgba(6, 19, 52, 0.28) 100%),
    linear-gradient(to top, rgba(6, 19, 52, 0.7) 0%, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
  padding-block: 68px 96px;
  min-height: 620px;
}

.hero-copy { color: #fff; max-width: 660px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.14);
  border-radius: 999px;
  font-size: 0.79rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--gold-100);
  margin: 0 0 18px;
}
.hero-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex: 0 0 auto;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.95rem, 4.1vw, 3.25rem);
  margin: 0 0 6px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.35);
}
.hero h1 em { font-style: normal; color: var(--gold); }

/* Slayta bağlı değişen metin bloğu — CLS olmaması için sabit min yükseklik */
.hero-rotator { position: relative; min-height: 132px; margin: 14px 0 26px; }
.hero-rot {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}
.hero-rot.is-active { opacity: 1; visibility: visible; transform: none; }
.hero-rot h2 {
  color: var(--gold);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  margin: 0 0 6px;
}
.hero-rot p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  margin: 0;
  max-width: 560px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hero-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.hero-pills li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.19);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero-pills svg { color: var(--gold); flex: 0 0 auto; }

/* Slider kontrolleri */
.hero-arrows {
  position: absolute; z-index: 3;
  right: var(--gutter); bottom: 108px;
  display: flex; gap: 8px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(6, 19, 52, 0.42);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color 0.16s ease, border-color 0.16s ease;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }

/* Anahtar kelime sekmeleri = slider navigasyonu */
.hero-tabs {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 19, 52, 0.62);
  backdrop-filter: blur(10px);
}
.hero-tabs-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hero-tab {
  position: relative;
  appearance: none;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  padding: 17px 14px;
  font-size: 0.88rem; font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease;
}
.hero-tab:first-child { border-left: 0; }
.hero-tab:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.hero-tab[aria-selected="true"] { color: #fff; background: rgba(255, 255, 255, 0.1); }
.hero-tab::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.hero-tab[aria-selected="true"]::after { transform: scaleX(1); }
.hero-tab[aria-selected="true"].is-timing::after { animation: tabProgress 6s linear forwards; }
@keyframes tabProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-tab small { display: block; font-weight: 500; font-size: 0.74rem; opacity: 0.62; margin-top: 2px; }

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-block: 46px 62px; min-height: 0; }
  .hero-copy { max-width: none; }
  .hero-arrows { display: none; }
  .hero-tabs-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-tabs-inner::-webkit-scrollbar { display: none; }
  .hero-tab { flex: 0 0 auto; min-width: 178px; scroll-snap-align: start; }
}
@media (max-width: 560px) {
  .hero-rotator { min-height: 158px; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------------------------
   5. WhatsApp Teklif Sihirbazı
   -------------------------------------------------------------------------- */
.wizard {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.wizard-head { margin-bottom: 18px; }
.wizard-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.11em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  margin-bottom: 10px;
}
.wizard-title { font-size: 1.32rem; margin: 0 0 4px; }
.wizard-sub { font-size: 0.88rem; color: var(--muted); margin: 0; }

.wizard-progress { display: flex; gap: 6px; margin: 16px 0 18px; }
.wizard-progress span {
  height: 4px; flex: 1;
  background: var(--line); border-radius: 4px;
  transition: background-color 0.25s ease;
}
.wizard-progress span.is-done { background: var(--gold); }

.wizard-steps { list-style: none; margin: 0; padding: 0; }
.wizard-step { display: none; }
.wizard-step.is-active { display: block; animation: wizIn 0.28s ease; }
@keyframes wizIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.wizard-label {
  display: block;
  font-size: 0.79rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 11px;
}

.wizard-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wopt {
  appearance: none;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 12px 13px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
  line-height: 1.32;
}
.wopt:hover { border-color: var(--navy); transform: translateY(-1px); }
.wopt[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold-100);
  color: var(--navy);
}
.wopt-wide { grid-column: 1 / -1; }

.wizard-select {
  width: 100%;
  appearance: none;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6072' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding: 13px 40px 13px 14px;
  font-size: 0.94rem; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.wizard-select:focus { border-color: var(--navy); outline: none; }

.wizard-back {
  appearance: none; border: 0; background: none;
  color: var(--muted); font-size: 0.84rem; font-weight: 600;
  cursor: pointer; padding: 8px 0 0;
  display: inline-flex; align-items: center; gap: 5px;
}
.wizard-back:hover { color: var(--navy); }

.wizard-summary {
  display: none;
  background: var(--ivory);
  border: 1px dashed var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}
.wizard-summary.is-visible { display: block; }
.wizard-summary strong { color: var(--navy); font-weight: 700; }

.wizard-foot { margin-top: 16px; }
.wizard-call {
  display: block;
  text-align: center;
  margin-top: 11px;
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: none;
}
.wizard-call b { color: var(--navy); }
.wizard-call:hover b { color: var(--gold-600); }
.wizard-note {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .wizard { padding: 20px 18px 18px; }
  .wizard-opts { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   6. Genel bölüm başlıkları
   -------------------------------------------------------------------------- */
.section { padding-block: 78px; }
.section-alt { background: var(--ivory); }
.section-navy { background: var(--navy-900); color: rgba(255, 255, 255, 0.86); }
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section-head.is-left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.section-navy .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.65rem, 3.1vw, 2.5rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section-navy .section-head p { color: rgba(255, 255, 255, 0.74); }

/* --------------------------------------------------------------------------
   7. Güven şeridi
   -------------------------------------------------------------------------- */
.trustbar { background: var(--navy); color: #fff; padding-block: 26px; }
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-icon {
  width: 42px; height: 42px; flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold);
  display: grid; place-items: center;
}
.trust-item b { display: block; font-size: 1.02rem; line-height: 1.25; }
.trust-item span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.66); }

@media (max-width: 860px) { .trustbar-grid { grid-template-columns: 1fr 1fr; gap: 18px 14px; } }
@media (max-width: 460px) { .trustbar-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   8. Hizmet kartları
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-rank {
  position: absolute; top: 12px; left: 12px;
  background: rgba(6, 19, 52, 0.82);
  color: var(--gold);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.svc-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.24rem; margin-bottom: 8px; }
.svc-body p { color: var(--muted); font-size: 0.93rem; margin-bottom: 16px; flex: 1; }
.svc-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.svc-actions .btn { padding: 10px 18px; font-size: 0.87rem; }
.svc-link {
  font-size: 0.87rem; font-weight: 700; color: var(--navy);
  text-decoration: none; border-bottom: 2px solid var(--gold-100);
  padding-bottom: 1px;
}
.svc-link:hover { border-color: var(--gold); }

@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

/* İkincil hizmet rozetleri */
.svc-more {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: center;
}
.svc-more-label { font-size: 0.86rem; font-weight: 700; color: var(--muted); }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.86rem; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}
.chip:hover { border-color: var(--gold); background: var(--gold-100); transform: translateY(-1px); }
.chip svg { color: var(--gold-600); }

/* --------------------------------------------------------------------------
   9. Galeri + lightbox
   -------------------------------------------------------------------------- */
.filterbar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 30px;
}
.filter-btn {
  appearance: none;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 19px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn[aria-pressed="true"] {
  background: var(--navy); border-color: var(--navy); color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gal-item {
  position: relative;
  appearance: none; border: 0; padding: 0;
  background: var(--ivory);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 16 / 9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6, 19, 52, 0.72) 0%, transparent 52%);
  opacity: 0; transition: opacity 0.25s ease;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap {
  position: absolute; left: 13px; right: 13px; bottom: 11px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem; font-weight: 600;
  text-align: left;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-item.is-hidden { display: none; }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 10, 26, 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1400px, 94vw);
  max-height: 84vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lb-caption {
  position: absolute; bottom: 26px; left: 0; right: 0;
  text-align: center; color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem; padding-inline: 60px;
}
.lb-btn {
  position: absolute;
  appearance: none; border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lb-btn:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 42px; height: 42px; }
  .lb-caption { padding-inline: 20px; bottom: 14px; font-size: 0.82rem; }
}

/* --------------------------------------------------------------------------
   10. Süreç
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy-900);
  display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.24rem; font-weight: 700;
  margin-bottom: 15px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 7px; }
.step p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0; }

@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   11. Neden biz + istatistik
   -------------------------------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 48px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-stat {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.why-stat b { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); line-height: 1; }
.why-stat span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.72); }

.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.why-list li { display: flex; gap: 13px; align-items: flex-start; }
.why-check {
  width: 26px; height: 26px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-100); color: var(--gold-600);
  display: grid; place-items: center;
  margin-top: 2px;
}
.why-list b { display: block; color: var(--navy); font-size: 1rem; }
.why-list p { margin: 2px 0 0; color: var(--muted); font-size: 0.92rem; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 52px; }
  .why-stat { right: 14px; bottom: -18px; }
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.stat {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
}
.stat b { display: block; font-family: var(--font-head); font-size: 2.1rem; color: var(--navy); line-height: 1.05; }
.stat span { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   12. Yorumlar
   -------------------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px 24px;
  display: flex; flex-direction: column;
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.02rem; margin-bottom: 12px; }
.review p { color: var(--muted); font-size: 0.95rem; flex: 1; font-style: italic; }
.review-by { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.88rem;
  flex: 0 0 auto;
}
.review-by b { display: block; font-size: 0.94rem; color: var(--navy); }
.review-by span { font-size: 0.8rem; color: var(--muted); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   13. Bölgeler
   -------------------------------------------------------------------------- */
.regions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 9px;
}
/* 36 bölge mobilde tek sütunda çok uzun bir liste oluşturuyordu */
@media (max-width: 620px) {
  .regions { grid-template-columns: 1fr 1fr; gap: 7px; }
  .region { padding: 10px 11px; font-size: 0.79rem; gap: 6px; }
}
.region {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.15s ease;
}
.region:hover { border-color: var(--gold); background: var(--gold-100); transform: translateY(-2px); }
.region svg { color: var(--gold-600); flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   14. Kapanış CTA
   -------------------------------------------------------------------------- */
.cta-final {
  position: relative;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute; top: -160px; right: -120px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.26) 0%, transparent 66%);
}
.cta-final-inner { position: relative; text-align: center; padding-block: 76px; }
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.cta-final p { color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; max-width: 620px; margin: 0 auto 30px; }
.cta-final-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.cta-final-note { margin: 24px 0 0; font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); }

/* --------------------------------------------------------------------------
   15. SSS
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  appearance: none; border: 0; background: none;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 21px 4px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.08rem; font-weight: 700; color: var(--navy);
  cursor: pointer;
}
.faq-q svg { flex: 0 0 auto; color: var(--gold-600); transition: transform 0.24s ease; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-a > div { padding: 0 4px 21px; color: var(--muted); font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); padding-block: 62px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 46px;
}
.site-footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }
.footer-about p { font-size: 0.92rem; line-height: 1.72; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; text-decoration: none; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: rgba(255, 255, 255, 0.5); }

.footer-contact { display: grid; gap: 15px; }
.fc-item { display: flex; gap: 12px; }
.fc-icon {
  width: 34px; height: 34px; flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(201, 162, 39, 0.16); color: var(--gold);
  display: grid; place-items: center;
}
.fc-item small {
  display: block; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.fc-item b, .fc-item a { font-size: 0.94rem; color: #fff; font-weight: 600; }
.fc-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-size: 0.84rem;
}
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   17. Yüzen + yapışkan dönüşüm çubukları
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 95;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.44);
  text-decoration: none;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.5);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.28); opacity: 0; }
}

.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 96;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(10, 29, 78, 0.13);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  gap: 9px;
}
.mobile-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.92rem; }

@media (max-width: 860px) {
  .mobile-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 74px; }
}

/* --------------------------------------------------------------------------
   18. Görünüme girince canlanma + hareket tercihi
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-slide.is-active img { animation: none; }
}

/* --------------------------------------------------------------------------
   19. Yazdırma
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .hero-tabs, .wa-float, .mobile-bar, .filterbar, .hero-arrows { display: none !important; }
  .hero-scrim { background: none; }
  body { padding-bottom: 0; }
}
