/* Güney Göl Yıldızı — Apple-inspired public theme */
:root {
  --gg-text: #1d1d1f;
  --gg-muted: #6e6e73;
  --gg-line: rgba(60, 60, 67, 0.12);
  --gg-fill: #f5f5f7;
  --gg-surface: #ffffff;
  --gg-navy: #1a365d;
  --gg-navy-soft: rgba(26, 54, 93, 0.08);
  --gg-accent: #1a365d;
  --gg-ok: #248a3d;
  --gg-danger: #d70015;
  --gg-radius: 14px;
  --gg-radius-sm: 10px;
  --gg-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 28px rgba(0, 0, 0, 0.05);
  --gg-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gg-header-h: 64px;
  --gg-max: 1180px;
}

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

html {
  width: 100%;
  margin: 0;
  background: var(--gg-fill);
  font-family: var(--gg-font);
  color: var(--gg-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  background: var(--gg-fill);
}

a { color: var(--gg-navy); text-decoration: none; }
a:hover { opacity: 0.88; }

.web-body-width {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  min-height: 60vh;
  position: relative;
}

/* ---------- Header ---------- */
.top-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--gg-header-h);
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--gg-line);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}

.header-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gg-text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.header-brand img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 8px;
}

.header-left,
.header-right { display: none; }

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.desktop-nav { width: auto; padding: 0; }
.desktop-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav ul li {
  display: inline-block;
  position: relative;
  padding: 0;
}
.desktop-nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gg-text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-transform: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.desktop-nav ul li a:hover {
  background: var(--gg-fill);
  color: var(--gg-navy);
}
.desktop-nav ul li .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 8px;
  background: var(--gg-surface);
  border: 1px solid var(--gg-line);
  border-radius: 14px;
  box-shadow: var(--gg-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.desktop-nav ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.desktop-nav ul li .sub-menu li { display: block; width: 100%; }
.desktop-nav ul li .sub-menu li a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--gg-text);
  font-size: 13px;
  font-weight: 550;
}
.desktop-nav ul li .sub-menu li a:hover {
  background: var(--gg-navy-soft);
  color: var(--gg-navy);
  padding-left: 12px;
}

.mobile-menu-btn {
  display: none;
  background: var(--gg-fill);
  border: 1px solid var(--gg-line);
  color: var(--gg-text);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  z-index: 120;
}
.mobile-menu-btn:hover { background: #fff; color: var(--gg-navy); }

/* ---------- Hero slider ---------- */
.slider-section {
  margin: 0;
  padding: 0;
  width: 100%;
}
.slider-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #0b1a2e;
}
.slides {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide { min-width: 100%; }
.slide img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  display: block;
}
.slide-fallback {
  width: 100%;
  height: min(52vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a365d 0%, #2a4a7a 55%, #0f2744 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ---------- Content ---------- */
.content-wrapper {
  width: 100%;
  max-width: var(--gg-max);
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.section-title {
  font-weight: 750;
  font-size: 28px;
  color: var(--gg-text);
  padding: 0;
  margin: 0 0 20px;
  text-transform: none;
  letter-spacing: -0.03em;
  display: block;
}
.section-kicker {
  font-size: 12px;
  font-weight: 650;
  color: var(--gg-muted);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.section-header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.section-header-box .section-title { margin: 0; }
.btn-geri {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--gg-line);
  background: var(--gg-surface);
  color: var(--gg-navy);
  font-size: 13px;
  font-weight: 650;
  transition: background 0.15s ease;
}
.btn-geri:hover { background: var(--gg-fill); opacity: 1; }

.page-content-box {
  background: var(--gg-surface);
  padding: 28px;
  border-radius: var(--gg-radius);
  border: 1px solid var(--gg-line);
  box-shadow: none;
  line-height: 1.7;
  color: var(--gg-muted);
  font-size: 15px;
}
.page-content-box img {
  max-width: 100%;
  height: auto;
  border-radius: var(--gg-radius-sm);
}

.gg-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gg-navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(26, 54, 93, 0.28);
  transition: filter 0.15s ease, transform 0.2s ease;
}
.gg-cta:hover { filter: brightness(1.06); transform: translateY(-1px); opacity: 1; }
.gg-cta-wrap { text-align: center; margin-top: 36px; }

.gg-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  background: var(--gg-surface);
  border-radius: var(--gg-radius);
  border: 1px dashed var(--gg-line);
  color: var(--gg-muted);
  font-weight: 600;
}
.gg-empty i { display: block; font-size: 28px; opacity: 0.35; margin-bottom: 10px; }

/* Haber / duyuru */
.haber-duyuru-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 64px;
}
.hd-list { display: flex; flex-direction: column; gap: 12px; }
.hd-item {
  display: flex;
  gap: 16px;
  background: var(--gg-surface);
  border: 1px solid var(--gg-line);
  text-decoration: none;
  padding: 16px;
  border-radius: var(--gg-radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hd-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--gg-shadow);
  border-color: rgba(26, 54, 93, 0.22);
  text-decoration: none;
  color: inherit;
  opacity: 1;
}
.hd-date {
  background: var(--gg-fill);
  color: var(--gg-muted);
  min-width: 64px;
  text-align: center;
  padding: 10px 6px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hd-date span {
  display: block;
  font-size: 24px;
  color: var(--gg-navy);
  font-weight: 750;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.04em;
}
.hd-content h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--gg-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hd-content p {
  margin: 0;
  font-size: 13px;
  color: var(--gg-muted);
  line-height: 1.5;
}

/* İlanlar */
.ilanlar-wrapper {
  width: 100%;
  max-width: var(--gg-max);
  margin: 0 auto;
  min-height: 60vh;
  padding: 40px 24px 64px;
  font-family: var(--gg-font);
}
.sayfa-ust-baslik {
  font-size: 28px;
  color: var(--gg-text);
  font-weight: 750;
  border-bottom: 1px solid var(--gg-line);
  padding-bottom: 16px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
}
.ilan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.ilan-card {
  background: var(--gg-surface);
  border-radius: var(--gg-radius);
  overflow: hidden;
  border: 1px solid var(--gg-line);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.ilan-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gg-shadow);
  opacity: 1;
}
.ilan-img-box {
  position: relative;
  width: 100%;
  height: 190px;
  background: var(--gg-fill);
  overflow: hidden;
}
.ilan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ilan-card:hover .ilan-img { transform: scale(1.04); }
.ilan-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
.kiralik { background: var(--gg-navy); }
.satilik { background: #334155; }
.ilan-body {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ilan-price {
  font-size: 20px;
  font-weight: 750;
  color: var(--gg-navy);
  letter-spacing: -0.03em;
}
.ilan-title {
  font-size: 14px;
  font-weight: 650;
  color: var(--gg-text);
  line-height: 1.4;
  margin: 0;
}
.ilan-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--gg-line);
  margin-top: auto;
  gap: 8px;
  flex-wrap: wrap;
}
.ilan-features span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gg-muted);
  font-weight: 600;
}
.ilan-features i { color: var(--gg-navy); }
.incele-cubuk {
  background: var(--gg-fill);
  padding: 11px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--gg-navy);
  border-top: 1px solid var(--gg-line);
  transition: 0.2s;
}
.ilan-card:hover .incele-cubuk {
  background: var(--gg-navy);
  color: #fff;
}

/* İlan detay */
.detay-penceresi {
  background: var(--gg-surface);
  border-radius: 18px;
  border: 1px solid var(--gg-line);
  padding: 24px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  box-shadow: var(--gg-shadow);
}
.d-ust-bar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gg-line);
  padding-bottom: 14px;
}
.d-baslik {
  font-size: 22px;
  color: var(--gg-text);
  font-weight: 750;
  margin: 0;
  letter-spacing: -0.03em;
}
.d-baslik i { color: var(--gg-navy); }
.btn-kapat {
  background: var(--gg-fill);
  color: var(--gg-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid var(--gg-line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-kapat:hover { background: var(--gg-text); color: #fff; opacity: 1; }
.ana-resim-kutu {
  width: 100%;
  height: 400px;
  background: var(--gg-fill);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gg-line);
}
.ana-resim { width: 100%; height: 100%; object-fit: contain; }
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.thumb-img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: 0.2s;
}
.thumb-img:hover,
.thumb-img.aktif { opacity: 1; border-color: var(--gg-navy); }
.bilgi-paneli { display: flex; flex-direction: column; gap: 16px; }
.d-fiyat-kutu {
  background: var(--gg-fill);
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--gg-line);
}
.d-fiyat {
  font-size: 30px;
  font-weight: 750;
  color: var(--gg-navy);
  display: block;
  letter-spacing: -0.03em;
}
.d-tablo {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--gg-line);
}
.d-satir {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gg-line);
  font-size: 14px;
}
.d-satir:last-child { border-bottom: none; }
.d-label { color: var(--gg-muted); font-weight: 600; }
.d-val { color: var(--gg-text); font-weight: 700; }
.paylas-kutu {
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--gg-line);
  text-align: center;
}
.paylas-baslik {
  font-size: 12px;
  font-weight: 700;
  color: var(--gg-muted);
  margin-bottom: 10px;
}
.paylas-btn-grup { display: flex; gap: 8px; }
.btn-share {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}
.btn-wp { background: #25D366; }
.btn-wp:hover { filter: brightness(0.95); color: #fff; opacity: 1; }
.btn-fb { background: #1877F2; }
.btn-fb:hover { filter: brightness(0.95); color: #fff; opacity: 1; }

/* Haber liste / detay */
.detay-resim {
  width: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 24px;
}
.detay-tarih {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gg-navy);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 8px;
}
.detay-tarih.is-soft { background: var(--gg-fill); color: var(--gg-muted); border: 1px solid var(--gg-line); }
.liste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.liste-card {
  background: var(--gg-surface);
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.liste-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gg-shadow);
  opacity: 1;
}
.liste-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gg-fill);
  border-bottom: 1px solid var(--gg-line);
}
.liste-body {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.liste-tarih {
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 650;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.liste-baslik {
  color: var(--gg-text);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.liste-ozet {
  color: var(--gg-muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}
.btn-devam {
  align-self: flex-start;
  background: var(--gg-fill);
  color: var(--gg-navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  border: 1px solid var(--gg-line);
}
.liste-card:hover .btn-devam {
  background: var(--gg-navy);
  color: #fff;
  border-color: var(--gg-navy);
}

/* İletişim */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}
.iletisim-kutu {
  background: var(--gg-surface);
  padding: 28px;
  border-radius: var(--gg-radius);
  border: 1px solid var(--gg-line);
}
.iletisim-kutu h3 {
  color: var(--gg-text);
  font-size: 20px;
  margin: 0 0 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.iletisim-liste { list-style: none; padding: 0; margin: 0; }
.iletisim-liste li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gg-muted);
  font-size: 14px;
  line-height: 1.55;
}
.iletisim-liste li i { color: var(--gg-navy); font-size: 16px; margin-top: 3px; }
.form-grup { margin-bottom: 16px; }
.form-grup label {
  display: block;
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-kontrol {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--gg-line);
  border-radius: 12px;
  font-family: var(--gg-font);
  font-size: 14px;
  color: var(--gg-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-kontrol:focus {
  outline: none;
  border-color: var(--gg-navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.14);
}
.btn-gonder {
  background: var(--gg-navy);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-family: var(--gg-font);
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 6px 18px rgba(26, 54, 93, 0.24);
}
.btn-gonder:hover { filter: brightness(1.05); }
.harita-kutu {
  width: 100%;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--gg-line);
  background: var(--gg-fill);
}
.form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-weight: 650;
  font-size: 14px;
}
.form-alert--ok { background: rgba(36, 138, 61, 0.1); color: var(--gg-ok); }
.form-alert--err { background: rgba(215, 0, 21, 0.08); color: var(--gg-danger); }
.captcha-box {
  background: var(--gg-fill);
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed var(--gg-line);
}

/* Personel */
.personel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;
}
.personel-card {
  background: var(--gg-surface);
  border-radius: var(--gg-radius);
  overflow: hidden;
  border: 1px solid var(--gg-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  max-width: 320px;
  margin: auto;
  width: 100%;
}
.personel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gg-shadow);
}
.personel-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gg-fill);
  border-bottom: 1px solid var(--gg-line);
}
.personel-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.personel-card:hover .personel-img-box img { transform: scale(1.04); }
.personel-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-muted);
  font-size: 42px;
  opacity: 0.35;
}
.personel-info { padding: 18px 14px 20px; }
.personel-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--gg-text);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.personel-title {
  font-weight: 550;
  font-size: 13px;
  color: var(--gg-muted);
  margin: 0 0 12px;
}
.personel-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.personel-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gg-fill);
  border: 1px solid var(--gg-line);
  color: var(--gg-navy);
  font-size: 13px;
}
.personel-social a:hover { background: var(--gg-navy); color: #fff; opacity: 1; }

/* Galeri + lightbox */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.galeri-kart {
  display: block;
  border-radius: var(--gg-radius);
  overflow: hidden;
  border: 1px solid var(--gg-line);
  background: var(--gg-surface);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.galeri-kart:hover {
  transform: translateY(-3px);
  box-shadow: var(--gg-shadow);
  opacity: 1;
}
.galeri-resim {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gg-fill);
}
.galeri-resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.galeri-kart:hover .galeri-resim img { transform: scale(1.05); }
.galeri-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.72));
  color: #fff;
}
.g-baslik {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.g-ikon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gg-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.galeri-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gg-muted);
  font-size: 36px;
  opacity: 0.3;
}
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#lightbox-img {
  max-width: min(960px, 94vw);
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
#lightbox-kapat {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

/* İhale / teklif */
.ihale-vitrin {
  max-width: var(--gg-max);
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.ihale-baslik {
  text-align: left;
  color: var(--gg-text);
  margin: 0 0 28px;
  font-weight: 750;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.ihale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.ihale-kart {
  background: var(--gg-surface);
  border-radius: var(--gg-radius);
  border: 1px solid var(--gg-line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.ihale-kart:hover {
  transform: translateY(-3px);
  box-shadow: var(--gg-shadow);
}
.ihale-kart.kart-kapali { opacity: 0.72; }
.kart-govde { padding: 18px; flex-grow: 1; }
.kart-kategori {
  font-size: 11px;
  color: #fff;
  background: var(--gg-navy);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
}
.kategori-kapali { background: #8e8e93; }
.kart-isim {
  font-size: 16px;
  color: var(--gg-text);
  margin: 0 0 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.kart-tarih {
  font-size: 13px;
  color: var(--gg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tarih-kapali { color: var(--gg-danger); font-weight: 700; }
.kart-alt {
  background: var(--gg-fill);
  padding: 14px 18px;
  border-top: 1px solid var(--gg-line);
  text-align: right;
}
.btn-teklif {
  background: var(--gg-navy);
  color: #fff !important;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}
.btn-teklif:hover { filter: brightness(1.06); opacity: 1; }
.btn-pasif {
  background: #e5e5ea;
  color: var(--gg-muted);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
  cursor: not-allowed;
}

.teklif-sayfa {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}
.ilan-detay {
  background: var(--gg-surface);
  border: 1px solid var(--gg-line);
  padding: 24px;
  border-radius: var(--gg-radius);
  margin-bottom: 20px;
}
.ilan-detay h2 {
  margin: 0 0 12px;
  color: var(--gg-text);
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.ilan-detay .ozet {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gg-muted);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--gg-line);
  padding-bottom: 14px;
}
.ilan-detay .aciklama {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gg-muted);
}
.form-kutu {
  background: var(--gg-surface);
  padding: 28px;
  border-radius: var(--gg-radius);
  border: 1px solid var(--gg-line);
}
.form-kutu h3 {
  margin: 0 0 22px;
  color: var(--gg-text);
  text-align: left;
  font-size: 18px;
  font-weight: 750;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row .form-grup {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.basarili-mesaj {
  background: rgba(36, 138, 61, 0.1);
  color: var(--gg-ok);
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(36, 138, 61, 0.2);
  font-weight: 650;
}
.hata-mesaji {
  background: rgba(215, 0, 21, 0.08);
  color: var(--gg-danger);
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid rgba(215, 0, 21, 0.15);
  font-weight: 650;
}

/* Footer */
.site-footer {
  background: #0f1c2e;
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 20px;
  margin-top: 0;
  border-top: none;
  font-family: var(--gg-font);
}
.footer-container {
  max-width: var(--gg-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  max-height: 52px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
  padding-right: 12px;
}
.social-links { display: flex; gap: 8px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.2s;
}
.social-links a:hover {
  background: #fff;
  color: var(--gg-navy);
  opacity: 1;
}
.footer-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.footer-title::after { display: none; }
.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.sitemap-list li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  font-weight: 550;
  transition: 0.2s;
}
.sitemap-list li a::before { display: none; }
.sitemap-list li a:hover { color: #fff; transform: none; }
.footer-contact p {
  font-size: 13px;
  margin: 0 0 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.footer-contact p i { color: rgba(255, 255, 255, 0.45); font-size: 14px; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 18px 24px;
  max-width: var(--gg-max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom .imza { font-weight: 550; color: rgba(255, 255, 255, 0.45); }
.footer-bottom .imza a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-bottom .imza a:hover { color: #fff; }

/* Vertical menu */
.left-vertical-menu-table {
  position: fixed;
  top: 0;
  left: -340px;
  width: min(320px, 88vw);
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  overflow-y: auto;
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: 30px;
}
.left-vertical-menu-table.active { left: 0; }
.menu-header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gg-navy);
  padding: 18px 16px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.menu-header-area .araBaslik {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.menu-header-area .anaCategeory {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-menu-list {
  list-style: none;
  padding: 14px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-menu-list .araBaslik {
  font-size: 11px;
  font-weight: 700;
  color: var(--gg-muted);
  text-transform: uppercase;
  margin: 12px 0 4px 8px;
  letter-spacing: 0.04em;
  border: none;
  padding: 0;
}
.v-menu-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gg-fill);
  border: 1px solid var(--gg-line);
  display: flex;
  align-items: center;
  transition: 0.2s;
}
.v-menu-item:hover { border-color: rgba(26, 54, 93, 0.25); background: #fff; }
.v-menu-item a {
  display: block;
  padding: 13px 16px;
  width: 100%;
  color: var(--gg-text);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  text-shadow: none;
}
.v-menu-item:hover a { color: var(--gg-navy); }
.v-menu-item::before { display: none; }
.anaCategeory-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  border-left: 1px solid var(--gg-line);
  color: var(--gg-muted);
  background: rgba(255, 255, 255, 0.7);
}
.anaCategeory-btn::after { content: "›"; font-size: 18px; font-weight: 700; }
.anaCategeory-btn:hover { background: var(--gg-navy); color: #fff; border-color: var(--gg-navy); }
.menu-overlay-dark {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  z-index: 1040;
  display: none;
}

@media (max-width: 992px) {
  .haber-duyuru-grid,
  .iletisim-grid,
  .detay-penceresi,
  .footer-container { grid-template-columns: 1fr; gap: 20px; }
  .content-wrapper,
  .ilanlar-wrapper,
  .ihale-vitrin,
  .teklif-sayfa { padding-left: 18px; padding-right: 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .top-header { padding: 0 14px; gap: 10px; }
  .header-nav,
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .header-brand img { height: 34px; }
  .slide img { height: 42vh; min-height: 220px; }
  .section-title,
  .sayfa-ust-baslik,
  .ihale-baslik { font-size: 22px; }
  .hd-item { flex-direction: column; align-items: stretch; }
  .hd-date {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 12px;
  }
  .ilan-grid { grid-template-columns: 1fr; }
  .detay-penceresi { padding: 16px; }
  .ana-resim-kutu { height: 240px; }
  .d-satir { flex-direction: column; gap: 4px; }
  .paylas-btn-grup { flex-direction: column; }
  .liste-grid { grid-template-columns: 1fr; }
}
