/* ============================================================
   HAS ÇEVRE DÜZENLEME VE PEYZAJ — hascevre.com
   Koyu premium tema · Marka yeşili + taş tonları
   ============================================================ */

:root {
  /* Renkler */
  --bg: #141714;
  --bg-2: #1a1e1a;
  --surface: #1f241f;
  --surface-2: #262c26;
  --border: #2f372f;
  --border-soft: #283028;

  --green: #3f7d3f;
  --green-bright: #5aa657;
  --green-soft: #8fce8c;
  --green-dark: #2f5f2f;
  --stone: #cbbfa6;
  --stone-dim: #a89c84;

  --text: #f1f4f0;
  --text-2: #c3cbc2;
  --text-3: #96a095;

  --whatsapp: #22c15e;

  /* Tipografi */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Ölçüler */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.18;
  font-weight: 700;
  text-wrap: balance;
}

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

::selection { background: var(--green); color: #fff; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #06240f;
  box-shadow: 0 10px 28px rgba(34, 193, 94, 0.28);
}
.btn-whatsapp:hover { background: #2eda6f; transform: translateY(-2px); }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(63, 125, 63, 0.32);
}
.btn-green:hover { background: #488c48; transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(241, 244, 240, 0.35);
  color: var(--text);
  background: rgba(20, 23, 20, 0.25);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--green-soft); color: var(--green-soft); transform: translateY(-2px); }

/* ---------- Üst bar + Navigasyon ---------- */
.topbar {
  background: #0f120f;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--text-3);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: var(--text-3); transition: color 0.2s; white-space: nowrap; }
.topbar a:hover { color: var(--green-soft); }
.topbar svg { width: 14px; height: 14px; }
.topbar-right { display: flex; gap: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 18, 15, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand img { width: 46px; height: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  line-height: 1.15;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active {
  color: var(--green-soft);
  text-decoration: underline;
  text-decoration-color: var(--green-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { min-height: 44px; padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }

/* Mobil menü */
@media (max-width: 960px) {
  .topbar-right .hide-mobile { display: none !important; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 115px);
    overflow-y: auto;
    padding: 14px 28px 36px;
    background: #0d100d;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav-links a { font-size: 20px; padding: 16px 12px; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .nav-links .nav-links-cta { margin-top: 22px; display: grid; gap: 12px; border: 0; padding: 0; }
  body.nav-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle .icon-menu { display: none; }
  body.nav-open .nav-toggle .icon-close { display: block; }
}
@media (min-width: 961px) { .nav-links-cta { display: none; } }

/* ---------- Kahraman (hero) ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 18, 15, 0.55) 0%, rgba(15, 18, 15, 0.25) 45%, rgba(20, 23, 20, 0.97) 100%),
    linear-gradient(100deg, rgba(10, 14, 10, 0.82) 0%, rgba(10, 14, 10, 0.45) 55%, rgba(10, 14, 10, 0.15) 100%);
}
.hero-content { max-width: 720px; padding-block: 120px 90px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green-bright);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green-soft); }
.hero p.lead {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 640px;
}
.hero-stats > div {
  padding: 20px 34px 0 0;
  margin-right: 34px;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--text);
}
.hero-stats strong span { color: var(--green-soft); }
.hero-stats small { font-size: 13.5px; color: var(--text-3); }

/* Mobil: butonlar eşit genişlikte, istatistikler tek sıra 3 sütun */
@media (max-width: 620px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 42px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 14px;
  }
  .hero-stats > div { padding: 16px 0 0; margin-right: 0; }
  .hero-stats strong { font-size: 23px; }
  .hero-stats small { font-size: 11.5px; display: block; margin-top: 2px; }
}

/* Alt sayfa hero'su */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 12vw, 150px) 0 clamp(50px, 7vw, 80px);
}
.page-hero .hero-media { z-index: -2; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 18, 15, 0.72) 0%, rgba(20, 23, 20, 0.88) 60%, var(--bg) 100%);
}
.page-hero h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 800; margin-bottom: 14px; }
.page-hero p { max-width: 640px; font-size: clamp(15.5px, 1.8vw, 18px); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-3);
  margin-bottom: 26px;
}
.breadcrumb a:hover { color: var(--green-soft); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--stone); }

/* ---------- Bölümler ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-tight { padding: clamp(44px, 6vw, 70px) 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--border-soft); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(27px, 3.6vw, 40px); font-weight: 800; margin-bottom: 14px; }
.section-head p { font-size: 16.5px; color: var(--text-3); }

.section-foot { margin-top: 40px; text-align: center; }

/* ---------- Referans logo şeridi ---------- */
.logo-strip {
  position: relative;
  padding: 38px 0 42px;
  background: var(--bg-2);
  border-block: 1px solid var(--border-soft);
  overflow: hidden;
}
.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 160px);
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2) 12%, transparent);
}
.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2) 12%, transparent);
}
.logo-strip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 34px;
  padding: 0 24px;
}
.logo-strip-label::before,
.logo-strip-label::after {
  content: "";
  height: 1px;
  flex: 0 1 190px;
}
.logo-strip-label::before {
  background: linear-gradient(90deg, transparent, rgba(90, 166, 87, 0.55));
}
.logo-strip-label::after {
  background: linear-gradient(270deg, transparent, rgba(90, 166, 87, 0.55));
}
.marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 75s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-right: clamp(48px, 7vw, 92px);
}
.logo-card {
  position: relative;
  flex: 0 0 auto;
  width: 186px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: transparent;
  transition: transform 0.3s var(--ease), background 0.35s, box-shadow 0.35s;
}
.logo-card img {
  max-height: 60px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.35s var(--ease);
}
.logo-card .logo-renk {
  position: absolute;
  opacity: 0;
}
.logo-card:hover {
  transform: translateY(-3px);
  background: rgba(240, 242, 238, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}
.logo-card:hover .logo-mono { opacity: 0; }
.logo-card:hover .logo-renk { opacity: 1; }
.logo-card img[src*="ayazoglu"] {
  max-height: 76px;
  max-width: 160px;
}
.logo-card img[src*="-atl"] {
  max-height: 48px;
}
.logo-card img[src*="ozabdioglu"] {
  max-height: 80px;
}
@media (max-width: 620px) {
  .logo-card { width: 156px; height: 86px; }
  .logo-card img { max-height: 52px; max-width: 126px; }
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Google yorumları ---------- */
.g-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.g-rating .g-logo { width: 28px; height: 28px; flex: none; }
.g-rating strong { font-size: 26px; font-weight: 800; line-height: 1; }
.g-stars { color: #fbbc04; font-size: 19px; letter-spacing: 3px; line-height: 1; }
.g-count { color: var(--text-3); font-size: 14px; }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 166, 87, 0.4);
}
.review-stars { color: #fbbc04; font-size: 15px; letter-spacing: 3px; }
.review-text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.review-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.review-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--green-soft);
  font-weight: 700;
  font-size: 16px;
}
.review-author strong { display: block; font-size: 14.5px; }
.review-author div span { color: var(--text-3); font-size: 12.5px; }
.reviews-cta { text-align: center; margin-top: clamp(30px, 4vw, 44px); }

/* ---------- Kartlar ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(90, 166, 87, 0.45);
  box-shadow: var(--shadow);
}
.card-media {
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 24px 24px 26px; }
.card-body h3 { font-size: 19.5px; margin-bottom: 10px; }
.card-body p { font-size: 15px; color: var(--text-3); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--green-soft);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.card:hover .card-link svg, .card-link:hover svg { transform: translateX(5px); }

/* Hizmet listesi (detay sayfası) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-row:last-child { border-bottom: 0; }
.service-row:nth-child(even) .service-media { order: 2; }
.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-soft);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media.contain {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
}
.service-media.contain img { object-fit: contain; height: 100%; }
.service-body h3 { font-size: clamp(22px, 2.6vw, 28px); margin-bottom: 14px; }
.service-body p { color: var(--text-3); margin-bottom: 12px; }
.service-body ul { margin-top: 16px; display: grid; gap: 10px; }
.service-body li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-2);
}
.service-body li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--green-bright); }
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-media { order: 0; }
}

/* ---------- Ürün kartları ---------- */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(203, 191, 166, 0.4);
  box-shadow: var(--shadow);
}
.product-media {
  background: var(--surface-2);
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }
.product-body { padding: 16px 18px 18px; }
.product-body h3 { font-size: 16px; font-weight: 600; }
.product-body small { font-size: 12.5px; color: var(--text-3); }
.product-body small a { color: var(--green-soft); text-decoration: underline; text-underline-offset: 2px; }
.product-body small a:hover { color: var(--green-bright); }

/* Renk kartları */
.color-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.color-card:hover { transform: translateY(-4px); border-color: rgba(90, 166, 87, 0.5); }
.color-card img { aspect-ratio: 1 / 0.72; width: 100%; object-fit: cover; }
.color-card figcaption {
  padding: 11px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}
.grid-colors { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .grid-colors { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .grid-colors { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Proje galerisi ---------- */
.project {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(34px, 5vw, 56px);
}
.project-head {
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 44px) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: baseline;
  justify-content: space-between;
}
.project-head h3 { font-size: clamp(21px, 2.6vw, 27px); }
.project-loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--stone);
}
.project-loc svg { width: 15px; height: 15px; }
.project-desc {
  padding: 14px clamp(24px, 4vw, 44px) 0;
  max-width: 760px;
  color: var(--text-3);
  font-size: 15.5px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px clamp(24px, 4vw, 44px) 6px;
}
.project-tags span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--green-soft);
  background: rgba(63, 125, 63, 0.14);
  border: 1px solid rgba(90, 166, 87, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 22px clamp(24px, 4vw, 44px) clamp(24px, 4vw, 40px);
}
.project-gallery a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-soft);
  cursor: zoom-in;
}
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.project-gallery a:hover img { transform: scale(1.07); }
@media (max-width: 760px) { .project-gallery { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 10, 8, 0.92);
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close svg { width: 24px; height: 24px; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ---------- Neden biz / özellik ---------- */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(63, 125, 63, 0.16);
  border: 1px solid rgba(90, 166, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-soft);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 17.5px; margin-bottom: 7px; }
.feature p { font-size: 14.5px; color: var(--text-3); }

/* ---------- Hikaye / hakkımızda ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .badge-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(15, 18, 15, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
}
.badge-overlay strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--green-soft);
}
.badge-overlay small { font-size: 12.5px; color: var(--text-3); }
.split-body h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 18px; }
.split-body p { margin-bottom: 16px; color: var(--text-3); }
.split-body p strong { color: var(--stone); font-weight: 600; }

/* Zaman çizelgesi */
.timeline { display: grid; gap: 0; margin-top: 10px; }
.timeline-item {
  position: relative;
  padding: 0 0 34px 34px;
  border-left: 2px solid var(--border);
}
.timeline-item:last-child { padding-bottom: 4px; border-left-color: transparent; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(90, 166, 87, 0.18);
}
.timeline-item time {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.timeline-item h3 { font-size: 18.5px; margin: 6px 0 8px; }
.timeline-item p { font-size: 15px; color: var(--text-3); }

/* ---------- CTA bandı ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: clamp(70px, 10vw, 110px) 0;
}
.cta-band .hero-media { z-index: -2; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 26, 18, 0.93), rgba(15, 22, 15, 0.88));
}
.cta-band h2 { font-size: clamp(27px, 3.8vw, 42px); font-weight: 800; margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; color: var(--text-2); }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.contact-card:hover { border-color: rgba(90, 166, 87, 0.45); transform: translateY(-3px); }
.contact-card .feature-icon { width: 50px; height: 50px; }
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p, .contact-card a.line { display: block; font-size: 15.5px; color: var(--text-3); }
.contact-card a.line { padding: 3px 0; transition: color 0.2s; }
.contact-card a.line:hover { color: var(--green-soft); }
.contact-card a.line strong { color: var(--text-2); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3.4;
  background: var(--surface);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e110e;
  border-top: 1px solid var(--border-soft);
  padding: clamp(50px, 7vw, 80px) 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 48px);
  padding-bottom: 46px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-3); margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--green-soft); }
.footer-col li { color: var(--text-3); }
.footer-col li strong { color: var(--text-2); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-3);
}

/* ---------- Yüzen iletişim butonları ---------- */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease);
}
.float-btn:hover { transform: scale(1.09); }
.float-btn:active { transform: scale(0.95); }
.float-btn svg { width: 28px; height: 28px; }
.float-wa { background: var(--whatsapp); }
.float-call { background: var(--green); }
@media (min-width: 961px) { .float-call { display: none; } }

/* ---------- Görünürlük animasyonu ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .marquee-group { flex-wrap: wrap; justify-content: center; padding: 0; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.note {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(203, 191, 166, 0.08);
  border: 1px solid rgba(203, 191, 166, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--stone);
}
.note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

/* ---------- SSS (Sıkça Sorulan Sorular) ---------- */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--green-soft);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  flex: none;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 20px 18px; color: var(--text-2); }

/* ---------- Bölge sayfaları: diğer bölgeler link bloğu ---------- */
.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.region-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.region-links a:hover {
  border-color: var(--green-bright);
  color: var(--text);
  background: var(--surface-2);
}
