/* =====================================================================
   Zemisar Grup İnşaat — site stili
   Marka renkleri mevcut tasarımdan korunmuştur.
   ===================================================================== */

:root {
  --yesil:       #294a34;
  --yesil-koyu:  #1b3423;
  --yesil-ac:    #477557;
  --altin:       #916c35;
  --altin-ac:    #c49a52;
  --krem:        #f5f0e8;
  --krem-koyu:   #ece4d7;
  --beyaz:       #ffffff;
  --gri:         #6b7280;
  --gri-ac:      #9ca3af;
  --metin:       #1a1a1a;
  --cizgi:       #e5e0d6;
  --golge:       0 1px 2px rgba(26,26,26,.04), 0 10px 30px rgba(26,26,26,.06);
  --golge-buyuk: 0 20px 50px rgba(26,26,26,.12);
  --baslik-font: 'Playfair Display', Georgia, serif;
  --govde-font:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gecis:       .25s cubic-bezier(.4, 0, .2, 1);
  --kenar:       clamp(18px, 5vw, 60px);
}

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

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

body {
  font-family: var(--govde-font);
  color: var(--metin);
  background: var(--beyaz);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { font-family: var(--baslik-font); font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }

.kap { max-width: 1280px; margin: 0 auto; padding-inline: var(--kenar); }

/* ---------------------------------------------------------- ust bar */
.ustbar {
  background: var(--yesil-koyu); color: #cfd8d0; font-size: 13px;
  padding: 9px var(--kenar); display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.ustbar a { display: inline-flex; align-items: center; gap: 7px; color: #cfd8d0; transition: color var(--gecis); }
.ustbar a:hover { color: var(--altin-ac); }
.ustbar .bosluk { flex: 1 1 auto; }
.ustbar-bilgi { display: inline-flex; align-items: center; gap: 7px; }
.ustbar svg { width: 15px; height: 15px; stroke: var(--altin-ac); flex-shrink: 0; }
.dil-sec {
  display: inline-flex; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; overflow: hidden;
}
.dil-sec a { padding: 2px 11px; font-size: 12px; letter-spacing: .04em; }
.dil-sec a.aktif { background: var(--altin); color: #fff; }

/* ---------------------------------------------------------- baslik */
.tepe {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--cizgi);
  transition: box-shadow var(--gecis);
}
.tepe.kayrak { box-shadow: 0 2px 20px rgba(26,26,26,.08); }
.tepe-ic {
  display: flex; align-items: center; gap: 30px;
  padding: 14px var(--kenar); max-width: 1280px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo img { height: 42px; width: auto; }
.logo-yazi { font-family: var(--baslik-font); font-size: 18px; line-height: 1.15; color: var(--yesil); }
.logo-yazi small {
  display: block; font-family: var(--govde-font); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--altin); font-weight: 500;
}
.ana-menu { display: flex; gap: 30px; margin-left: auto; }
.ana-menu a {
  font-size: 14.5px; font-weight: 500; color: #3d4a40; padding: 6px 0;
  position: relative; transition: color var(--gecis);
}
.ana-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--altin); transition: width var(--gecis);
}
.ana-menu a:hover, .ana-menu a.aktif { color: var(--yesil); }
.ana-menu a:hover::after, .ana-menu a.aktif::after { width: 100%; }
.menu-dugme { display: none; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.menu-dugme span { display: block; width: 23px; height: 2px; background: var(--yesil); margin: 5px 0; transition: var(--gecis); }

.mobil-menu {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: var(--beyaz);
  z-index: 100; transform: translateX(100%); transition: transform var(--gecis);
  padding: 24px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--golge-buyuk);
  overflow-y: auto;
}
.mobil-menu.acik { transform: translateX(0); }
.mobil-menu a { padding: 13px 4px; border-bottom: 1px solid var(--cizgi); font-size: 16px; }
.mobil-menu .kapat { align-self: flex-end; background: none; border: 0; font-size: 26px; cursor: pointer; line-height: 1; color: var(--gri); }
.perde { position: fixed; inset: 0; background: rgba(26,26,26,.45); z-index: 99; opacity: 0; pointer-events: none; transition: opacity var(--gecis); }
.perde.acik { opacity: 1; pointer-events: auto; }

/* ---------------------------------------------------------- dugmeler */
.dugme {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 27px; border-radius: 4px; border: 1.5px solid transparent;
  background: var(--yesil); color: #fff; font-size: 14.5px; font-weight: 500;
  cursor: pointer; transition: var(--gecis); white-space: nowrap; letter-spacing: .01em;
}
.dugme:hover { background: var(--yesil-ac); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(41,74,52,.22); }
.dugme-altin { background: var(--altin); }
.dugme-altin:hover { background: var(--altin-ac); box-shadow: 0 8px 20px rgba(145,108,53,.28); }
.dugme-cizgi { background: transparent; border-color: var(--yesil); color: var(--yesil); }
.dugme-cizgi:hover { background: var(--yesil); color: #fff; }
.dugme-beyaz { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); color: #fff; backdrop-filter: blur(4px); }
.dugme-beyaz:hover { background: #fff; color: var(--yesil); border-color: #fff; }
.dugme-kucuk { padding: 9px 18px; font-size: 13.5px; }
.dugme svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------- hero */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-fon { position: absolute; inset: 0; z-index: 0; }
.hero-fon img { width: 100%; height: 100%; object-fit: cover; }
.hero-fon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,36,25,.93) 0%, rgba(27,52,35,.82) 42%, rgba(41,74,52,.42) 100%);
}
.hero-ic { position: relative; z-index: 1; width: 100%; padding-block: clamp(60px, 10vh, 110px); }
.hero-ust {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--altin-ac); margin-bottom: 20px; font-weight: 500;
}
.hero-ust::before { content: ''; width: 38px; height: 1px; background: var(--altin-ac); }
.hero h1 { font-size: clamp(33px, 5.6vw, 62px); margin-bottom: 20px; max-width: 15ch; }
.hero p { font-size: clamp(15px, 1.6vw, 18px); max-width: 54ch; color: rgba(255,255,255,.9); margin-bottom: 32px; }
.hero-dugmeler { display: flex; gap: 13px; flex-wrap: wrap; }

.hero-sayilar { display: flex; gap: clamp(24px, 5vw, 60px); margin-top: 52px; flex-wrap: wrap; }
.hero-sayilar div strong {
  display: block; font-family: var(--baslik-font); font-size: clamp(26px, 3.4vw, 38px);
  color: var(--altin-ac); font-weight: 600; line-height: 1.1;
}
.hero-sayilar div span { font-size: 13px; color: rgba(255,255,255,.75); letter-spacing: .03em; }

/* ---------------------------------------------------------- arama kutusu */
.arama-kutu {
  background: #fff; border-radius: 6px; box-shadow: var(--golge-buyuk);
  padding: 20px; display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  align-items: end;
}
.arama-sar { max-width: 1280px; margin: -46px auto 0; padding-inline: var(--kenar); position: relative; z-index: 5; }
.arama-kutu label {
  display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--gri); margin-bottom: 6px; font-weight: 500;
}
.arama-kutu select, .arama-kutu input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--cizgi); border-radius: 4px;
  background: var(--beyaz); font-size: 14.5px; transition: border-color var(--gecis);
}
.arama-kutu select:focus, .arama-kutu input:focus { outline: none; border-color: var(--altin); }
.arama-kutu .dugme { width: 100%; padding-block: 12px; }

/* ---------------------------------------------------------- bolum basligi */
.bolum { padding-block: clamp(56px, 8vw, 100px); }
.bolum-krem { background: var(--krem); }
.bolum-yesil { background: var(--yesil); color: #fff; }
.bolum-bas { max-width: 640px; margin-bottom: 44px; }
.bolum-bas.orta { margin-inline: auto; text-align: center; }
.bolum-etiket {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--altin); font-weight: 500; margin-bottom: 14px;
}
.bolum-etiket::before { content: ''; width: 30px; height: 1px; background: var(--altin); }
.bolum-bas.orta .bolum-etiket::after { content: ''; width: 30px; height: 1px; background: var(--altin); }
.bolum-bas h2 { font-size: clamp(27px, 3.6vw, 42px); margin-bottom: 13px; }
.bolum-bas p { color: var(--gri); font-size: 16px; }
.bolum-yesil .bolum-bas p { color: rgba(255,255,255,.78); }
.bolum-yesil .bolum-etiket { color: var(--altin-ac); }
.bolum-yesil .bolum-etiket::before, .bolum-yesil .bolum-etiket::after { background: var(--altin-ac); }

.bas-satir { display: flex; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.bas-satir .bolum-bas { margin-bottom: 0; flex: 1 1 380px; }

/* ---------------------------------------------------------- ilan kartlari */
.ilan-izgara { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }

.ilan-kart {
  background: #fff; border: 1px solid var(--cizgi); border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column; transition: var(--gecis);
}
.ilan-kart:hover { transform: translateY(-4px); box-shadow: var(--golge-buyuk); border-color: transparent; }
.ilan-gorsel { position: relative; aspect-ratio: 4 / 3; background: var(--krem-koyu); overflow: hidden; }
.ilan-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ilan-kart:hover .ilan-gorsel img { transform: scale(1.05); }
.ilan-gorsel .bos {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--yesil-ac), var(--yesil)); color: rgba(255,255,255,.35);
}
.ilan-gorsel .bos svg { width: 54px; height: 54px; }
.ilan-rozet {
  position: absolute; top: 13px; left: 13px; background: var(--yesil); color: #fff;
  font-size: 11.5px; font-weight: 500; padding: 5px 13px; border-radius: 3px; letter-spacing: .04em;
}
.ilan-rozet.kiralik { background: var(--altin); }
.ilan-rozet.satildi { background: #8a2c26; }
.ilan-foto-sayi {
  position: absolute; bottom: 13px; right: 13px; background: rgba(20,26,20,.72); color: #fff;
  font-size: 11.5px; padding: 4px 10px; border-radius: 3px; display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(3px);
}
.ilan-govde { padding: 18px 19px 20px; display: flex; flex-direction: column; flex: 1; }
.ilan-fiyat { font-family: var(--baslik-font); font-size: 22px; color: var(--yesil); font-weight: 600; }
.ilan-fiyat small { font-family: var(--govde-font); font-size: 13px; color: var(--gri); font-weight: 400; }
.ilan-baslik { font-size: 16.5px; font-weight: 500; margin: 7px 0 5px; line-height: 1.4; }
.ilan-kart:hover .ilan-baslik { color: var(--yesil); }
.ilan-konum { display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--gri); }
.ilan-konum svg { width: 15px; height: 15px; stroke: var(--altin); flex-shrink: 0; }
.ilan-ozet {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 15px; padding-top: 14px;
  border-top: 1px solid var(--cizgi); font-size: 13px; color: #4b5563;
}
.ilan-ozet span { display: inline-flex; align-items: center; gap: 6px; }
.ilan-ozet svg { width: 16px; height: 16px; stroke: var(--yesil-ac); flex-shrink: 0; }
.ilan-govde .bosluk { flex: 1; }

/* ---------------------------------------------------------- hizmet kartlari */
.hizmet-izgara { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.hizmet-kart {
  background: #fff; padding: 32px 28px; border-radius: 6px; border: 1px solid var(--cizgi);
  transition: var(--gecis); position: relative; overflow: hidden;
}
.hizmet-kart::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--altin); transform: scaleY(0); transform-origin: top; transition: transform var(--gecis);
}
.hizmet-kart:hover { transform: translateY(-3px); box-shadow: var(--golge); }
.hizmet-kart:hover::before { transform: scaleY(1); }
.hizmet-ikon {
  width: 50px; height: 50px; border-radius: 5px; background: var(--krem);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.hizmet-ikon svg { width: 25px; height: 25px; stroke: var(--altin); }
.hizmet-kart h3 { font-size: 19px; margin-bottom: 9px; }
.hizmet-kart p { color: var(--gri); font-size: 14.5px; }

/* ---------------------------------------------------------- deger listesi */
.deger-izgara { display: grid; gap: 30px 34px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.deger { display: flex; gap: 15px; }
.deger-ikon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: rgba(196,154,82,.16);
  display: flex; align-items: center; justify-content: center;
}
.deger-ikon svg { width: 21px; height: 21px; stroke: var(--altin-ac); }
.deger h3 { font-size: 17px; margin-bottom: 5px; }
.deger p { font-size: 14.5px; color: rgba(255,255,255,.75); }
.bolum-krem .deger-ikon { background: rgba(145,108,53,.14); }
.bolum-krem .deger-ikon svg { stroke: var(--altin); }
.bolum-krem .deger p { color: var(--gri); }

/* ---------------------------------------------------------- ilan listesi sayfasi */
.sayfa-tepe {
  background: var(--yesil); color: #fff; padding-block: clamp(38px, 6vw, 62px);
  position: relative; overflow: hidden;
}
.sayfa-tepe::after {
  content: ''; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(196,154,82,.1);
}
.sayfa-tepe h1 { font-size: clamp(28px, 4vw, 44px); position: relative; }
.sayfa-tepe p { color: rgba(255,255,255,.78); margin-top: 8px; position: relative; }
.kirinti { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 12px; position: relative; }
.kirinti a:hover { color: var(--altin-ac); }

.liste-duzen { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: 32px; align-items: start; }
.filtre-panel {
  background: #fff; border: 1px solid var(--cizgi); border-radius: 6px; padding: 22px;
  position: sticky; top: 92px;
}
.filtre-panel h3 { font-size: 17px; margin-bottom: 16px; }
.filtre-grup { margin-bottom: 17px; }
.filtre-grup > label {
  display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--gri); margin-bottom: 7px; font-weight: 500;
}
.filtre-grup select, .filtre-grup input {
  width: 100%; padding: 9px 11px; border: 1px solid var(--cizgi); border-radius: 4px; font-size: 14px;
}
.filtre-grup select:focus, .filtre-grup input:focus { outline: none; border-color: var(--altin); }
.filtre-ikili { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filtre-panel .dugme { width: 100%; margin-top: 4px; }
.filtre-temizle { display: block; text-align: center; margin-top: 10px; font-size: 13.5px; color: var(--gri); }
.filtre-temizle:hover { color: var(--altin); }

.liste-arac {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px; flex-wrap: wrap;
  padding-bottom: 16px; border-bottom: 1px solid var(--cizgi);
}
.liste-arac .sonuc { font-size: 14.5px; color: var(--gri); }
.liste-arac .sonuc strong { color: var(--metin); }
.liste-arac select { padding: 8px 11px; border: 1px solid var(--cizgi); border-radius: 4px; font-size: 14px; }
.liste-arac .bosluk { flex: 1; }
.filtre-ac { display: none; }

.bos-sonuc { text-align: center; padding: 70px 20px; }
.bos-sonuc svg { width: 54px; height: 54px; stroke: var(--gri-ac); margin-bottom: 16px; }
.bos-sonuc h3 { font-size: 21px; margin-bottom: 9px; }
.bos-sonuc p { color: var(--gri); max-width: 46ch; margin: 0 auto 22px; }

.sayfalama { display: flex; gap: 6px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.sayfalama a, .sayfalama span {
  min-width: 40px; padding: 9px 13px; text-align: center; border: 1px solid var(--cizgi);
  border-radius: 4px; font-size: 14px; transition: var(--gecis);
}
.sayfalama a:hover { border-color: var(--altin); color: var(--altin); }
.sayfalama .aktif { background: var(--yesil); border-color: var(--yesil); color: #fff; }

/* ---------------------------------------------------------- ilan detay */
.detay-duzen { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; align-items: start; }

.galeri { border-radius: 6px; overflow: hidden; background: var(--krem-koyu); }
.galeri-ana { position: relative; aspect-ratio: 16 / 10; background: var(--krem-koyu); }
.galeri-ana img { width: 100%; height: 100%; object-fit: cover; }
.galeri-ana .bos { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--yesil-ac), var(--yesil)); }
.galeri-ana .bos svg { width: 70px; height: 70px; stroke: rgba(255,255,255,.35); }
.galeri-ok {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,.9); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--gecis);
}
.galeri-ok:hover { background: #fff; box-shadow: var(--golge); }
.galeri-ok.sol { left: 14px; }
.galeri-ok.sag { right: 14px; }
.galeri-ok svg { width: 20px; height: 20px; stroke: var(--yesil); }
.galeri-sayac {
  position: absolute; bottom: 14px; right: 14px; background: rgba(20,26,20,.72); color: #fff;
  font-size: 12.5px; padding: 5px 12px; border-radius: 3px; backdrop-filter: blur(3px);
}
.galeri-serit { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: #fff; }
.galeri-serit button {
  flex: 0 0 88px; height: 62px; border: 2px solid transparent; border-radius: 4px;
  overflow: hidden; cursor: pointer; padding: 0; background: none; opacity: .62; transition: var(--gecis);
}
.galeri-serit button.aktif, .galeri-serit button:hover { opacity: 1; border-color: var(--altin); }
.galeri-serit img { width: 100%; height: 100%; object-fit: cover; }

.detay-bas { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; margin: 28px 0 6px; }
.detay-bas h1 { font-size: clamp(24px, 3.2vw, 34px); flex: 1 1 340px; }
.detay-fiyat { font-family: var(--baslik-font); font-size: clamp(26px, 3.4vw, 34px); color: var(--yesil); font-weight: 600; }
.detay-konum { display: flex; align-items: center; gap: 7px; color: var(--gri); font-size: 15px; margin-bottom: 6px; }
.detay-konum svg { width: 17px; height: 17px; stroke: var(--altin); }
.detay-no { font-size: 13px; color: var(--gri-ac); }

.ozet-serit {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px;
  background: var(--cizgi); border: 1px solid var(--cizgi); border-radius: 6px; overflow: hidden; margin: 26px 0;
}
.ozet-serit div { background: #fff; padding: 17px 15px; text-align: center; }
.ozet-serit svg { width: 21px; height: 21px; stroke: var(--altin); margin: 0 auto 7px; }
.ozet-serit strong { display: block; font-size: 16px; font-weight: 600; }
.ozet-serit span { font-size: 12.5px; color: var(--gri); }

.detay-bolum { margin-bottom: 34px; }
.detay-bolum h2 {
  font-size: 21px; margin-bottom: 16px; padding-bottom: 11px; border-bottom: 1px solid var(--cizgi);
}
.detay-metin { color: #3f4a42; font-size: 15.5px; white-space: pre-line; }

.ozellik-liste { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 30px; }
.ozellik-liste div {
  display: flex; justify-content: space-between; gap: 14px; padding: 11px 0;
  border-bottom: 1px dashed var(--cizgi); font-size: 14.5px;
}
.ozellik-liste dt, .ozellik-liste .ad { color: var(--gri); }
.ozellik-liste .deger { font-weight: 500; text-align: right; }

.donanim { display: flex; flex-wrap: wrap; gap: 9px; }
.donanim span {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px; background: var(--krem);
  border-radius: 3px; font-size: 14px;
}
.donanim svg { width: 16px; height: 16px; stroke: var(--yesil-ac); }

#detayHarita { height: 340px; border-radius: 6px; border: 1px solid var(--cizgi); }

/* ---------------------------------------------------------- iletisim yan panel */
.yan-kutu {
  background: #fff; border: 1px solid var(--cizgi); border-radius: 6px; padding: 24px;
  position: sticky; top: 92px;
}
.yan-kutu h3 { font-size: 18px; margin-bottom: 5px; }
.yan-kutu > p { font-size: 14px; color: var(--gri); margin-bottom: 18px; }
.yan-kutu .dugme { width: 100%; margin-bottom: 9px; }

.form-alan { margin-bottom: 13px; }
.form-alan label { display: block; font-size: 13px; margin-bottom: 5px; color: #3f4a42; font-weight: 500; }
.form-alan input, .form-alan select, .form-alan textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--cizgi); border-radius: 4px;
  font-size: 14.5px; background: #fff; transition: border-color var(--gecis);
}
.form-alan textarea { min-height: 108px; resize: vertical; }
.form-alan input:focus, .form-alan select:focus, .form-alan textarea:focus { outline: none; border-color: var(--altin); }
.form-ikili { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.form-not { font-size: 12px; color: var(--gri-ac); margin-top: 10px; }

.uyari-kutu { padding: 14px 17px; border-radius: 4px; margin-bottom: 18px; font-size: 14.5px; border: 1px solid; }
.uyari-basarili { background: #eaf4ed; border-color: #bcdcc7; color: #1b5c34; }
.uyari-hata     { background: #fbecea; border-color: #f0c9c4; color: #8a2c26; }

/* ---------------------------------------------------------- iletisim sayfasi */
.iletisim-duzen { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 44px; align-items: start; }
.iletisim-bilgi { display: grid; gap: 22px; }
.iletisim-satir { display: flex; gap: 15px; align-items: flex-start; }
.iletisim-satir .ikon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 4px; background: var(--krem);
  display: flex; align-items: center; justify-content: center;
}
.iletisim-satir .ikon svg { width: 20px; height: 20px; stroke: var(--altin); }
.iletisim-satir h4 { font-family: var(--govde-font); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--gri); font-weight: 500; margin-bottom: 3px; }
.iletisim-satir p, .iletisim-satir a { font-size: 15.5px; }
.iletisim-satir a:hover { color: var(--altin); }

/* ---------------------------------------------------------- alt bilgi */
.alt { background: var(--yesil-koyu); color: #b9c4bb; padding-block: 56px 0; font-size: 14.5px; }
.alt-izgara { display: grid; gap: 38px; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
.alt h4 {
  font-family: var(--govde-font); color: #fff; font-size: 12.5px; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 17px; font-weight: 500;
}
.alt-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.alt-logo img { height: 44px; }
.alt-logo .logo-yazi { color: #fff; }
.alt p { max-width: 40ch; line-height: 1.75; }
.alt ul { list-style: none; display: grid; gap: 9px; }
.alt a { transition: color var(--gecis); }
.alt a:hover { color: var(--altin-ac); }
.alt-iletisim li { display: flex; gap: 10px; align-items: flex-start; }
.alt-iletisim svg { width: 16px; height: 16px; stroke: var(--altin-ac); flex-shrink: 0; margin-top: 4px; }
.sosyal { display: flex; gap: 10px; margin-top: 18px; }
.sosyal a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center; transition: var(--gecis);
}
.sosyal a:hover { background: var(--altin); border-color: var(--altin); }
.sosyal svg { width: 17px; height: 17px; stroke: currentColor; }
.alt-serit {
  margin-top: 46px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center; font-size: 13.5px; color: #8fa093;
}
.alt-serit .bosluk { flex: 1; }

/* ---------------------------------------------------------- whatsapp dugmesi */
.wa-dugme {
  position: fixed; right: 20px; bottom: 20px; width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center; z-index: 70;
  box-shadow: 0 6px 22px rgba(37,211,102,.42); transition: var(--gecis);
}
.wa-dugme:hover { transform: scale(1.07); }
.wa-dugme svg { width: 28px; height: 28px; fill: #fff; }

/* ---------------------------------------------------------- animasyon */
.gorun { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.gorun.icinde { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .gorun { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- duyarli */
@media (max-width: 1080px) {
  .liste-duzen { grid-template-columns: 1fr; }
  .filtre-panel { position: static; display: none; }
  .filtre-panel.acik { display: block; }
  .filtre-ac { display: inline-flex; }
  .detay-duzen { grid-template-columns: 1fr; }
  .yan-kutu { position: static; }
  .alt-izgara { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .ana-menu { display: none; }
  .menu-dugme { display: block; }
  .tepe-ic .dugme { display: none; }
  .iletisim-duzen { grid-template-columns: 1fr; }
  .ustbar .gizle-mobil { display: none !important; }
}
@media (max-width: 560px) {
  .alt-izgara { grid-template-columns: 1fr; }
  .form-ikili { grid-template-columns: 1fr; }
  .arama-sar { margin-top: 0; padding-block: 24px; background: var(--krem); }
  .hero-sayilar { gap: 22px; }
}
