@charset "UTF-8";
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Logo green palette */
  --g-deep:    #063e22;
  --g-dark:    #0a4f2a;
  --g-mid:     #18723c;
  --g-leaf:    #2d8a47;
  --g-light:   #7dad50;
  --g-lime:    #a1be4e;
  --accent:    #a1be4e;
  --accent-lt: #c0d674;

  --cream:     #f5f0e6;
  --cream-dk:  #e6dec9;
  --white:     #fdfcf9;
  --txt:       #1a1a16;
  --txt-mid:   #4a4a42;
  --txt-lt:    #7c7c6e;
  --nav-h:     96px;
}

html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: 'Raleway', sans-serif; background: var(--white); color: var(--txt); overflow-x: hidden; font-size: 16px; max-width: 100vw; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--g-deep); }
::-webkit-scrollbar-thumb { background: var(--accent); }

h1, h2, h3, h4 { font-family: 'GFS Didot',  serif; font-weight: 400; line-height: 1.1; letter-spacing: -.5px; }
em { font-family:  'GFS Didot', serif; font-style: italic; font-weight: 400; }

.cnt { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.label { display: block; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.gold-rule { display: block; width: 56px; height: 1px; background: var(--accent); margin: 28px 0; }

.rv { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
.rv[data-d="1"] { transition-delay: .1s; }
.rv[data-d="2"] { transition-delay: .2s; }
.rv[data-d="3"] { transition-delay: .3s; }
.rv[data-d="4"] { transition-delay: .4s; }

/* SVG icon helper */
.i { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; color: currentColor; }
.i svg { width: 100%; height: 100%; stroke: currentColor; }
.i.lg { width: 40px; height: 40px; }
.i.sm { width: 22px; height: 22px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ NAV â”€â”€â”€ */
#nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; padding: 0 60px;
  transition: background .4s, box-shadow .4s; }
#nav.sc { background: rgba(6, 62, 34, 0.96); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(161,190,78,.22); }

.logo-wrap { display: flex; align-items: center; text-decoration: none; position: relative; }
.logo-svg { width: 92px; height: 92px; display: block; position: relative; z-index: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,.25)); }
.logo-tag { position: absolute; top: 50%; left: 46px; transform: translate(-50%, -50%); width: 110px; height: 110px; background: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.18); z-index: 0; }
.logo-svg .logo-txt { fill: var(--cream); }
.logo-svg .logo-bld-1 { fill: #a1be4e; }
.logo-svg .logo-bld-2 { fill: #7dad50; }
.logo-svg .logo-bld-3 { fill: #18723c; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(245,240,230,.82); text-decoration: none; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color .3s; }
.nav-links a:hover { color: var(--accent-lt); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--g-deep);
  padding: 10px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(161,190,78,.35);
  transition: background .3s, transform .25s, box-shadow .3s;
}
.nav-cta:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(161,190,78,.45);
}

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 1.6px; background: var(--cream); transition: all .3s; }

.mob-menu { position: fixed; inset: 0; z-index: 999; background: var(--g-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity .4s; }
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a { font-family: 'GFS Didot', serif; font-size: 36px; color: var(--cream); text-decoration: none; transition: color .3s; }
.mob-menu a:hover { color: var(--accent); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ HERO + SLIDER â”€â”€â”€ */
#hero { height: 100vh; position: relative; overflow: hidden; }

.slider { position: absolute; inset: 0; }
.slide {position: absolute;inset: 0;opacity: 0;transition: opacity 1.2s ease;background-size: cover;background-position: 0 -80px;}
.slide.on { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(6,62,34,.34) 0%, rgba(6,62,34,.14) 38%, rgba(6,62,34,.55) 75%, rgba(6,62,34,.96) 100%);
  }

.hero-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; z-index: 2; text-align: center; padding: 0 24px; }

.hero-eyebrow { font-size: 13px; letter-spacing: 5px; color: var(--accent-lt); text-transform: uppercase; margin-bottom: 32px; opacity: 0; animation: fu 1s .3s forwards; }

.hero-title { font-family: 'GFS Didot', serif; font-size: clamp(72px, 11vw, 144px); font-weight: 400; color: var(--cream); line-height: .92; letter-spacing: -2px; opacity: 0; animation: fu 1s .6s forwards; }
.hero-title em { color: var(--accent-lt); }

.hero-tagline { margin-top: 32px; font-size: 16px; color: rgba(245,240,230,.75); letter-spacing: 6px; text-transform: uppercase; opacity: 0; animation: fu 1s .9s forwards; font-weight: 500; }

.hero-divider { width: 1px; height: 56px; background: linear-gradient(to bottom, var(--accent), transparent); margin: 38px auto 0; opacity: 0; animation: fu 1s 1.1s forwards; }

.hero-stats {
  position: absolute; bottom: 210px; left: 0; right: 0;
  display: flex; gap: 96px; justify-content: center;
  z-index: 4; padding: 0 24px;
  opacity: 0; animation: fu 1s 1.3s forwards;
}
.hs { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hs-n { font-family: 'GFS Didot', serif; font-size: 52px; color: var(--cream); line-height: 1; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.hs-l { font-size: 12px; letter-spacing: 4px; color: var(--accent-lt); text-transform: uppercase; font-weight: 700; white-space: nowrap; }

/* Hero Form (Talep Formu) */
.hero-form {
  position: absolute;
  right: 60px;
  top: 50%;
  margin-top: -17px;          /* (navTop 96px âˆ’ dotsBottom 130px) / 2 â†’ gÃ¶rsel olarak ortalar */
  transform: translateY(-50%);
  width: 400px;
  max-width: calc(100vw - 80px);
  z-index: 6;
  background: rgba(10, 50, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(161,190,78,.22);
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35), 0 4px 12px rgba(0, 0, 0, .2);
  opacity: 0;
  animation: heroFormFade 1s 1.5s forwards;
}
@keyframes heroFormFade { to { opacity: 1; } }
.hero-form-title {
  font-family: 'GFS Didot',  serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-lt);
  line-height: 1.4;
  margin-bottom: 22px;
  text-align: center;
}
.hf-input, .hf-select {
  width: 100%;
  padding: 13px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 26px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  outline: none;
  transition: all .3s;
  margin-bottom: 10px;
}
.hf-input::placeholder { color: rgba(245,240,230,.65); }
.hf-input:focus, .hf-select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}
.hf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4.5l4 4 4-4' stroke='%23dfead4' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}
.hf-select option { background: var(--g-deep); color: var(--cream); }
.hf-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 18px;
}
.hf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(245,240,230,.7);
}
.hf-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.hf-check.long { font-size: 10.5px; line-height: 1.5; color: rgba(245,240,230,.55); }
.hf-btn {
  width: 100%;
  padding: 14px;
  background: var(--g-mid);
  border: 1px solid rgba(161,190,78,.4);
  border-radius: 26px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.hf-btn:hover { background: var(--g-leaf); border-color: var(--accent); }

.s-dots { position: absolute; bottom: 130px; left: 0; right: 0; display: flex; justify-content: center; gap: 12px; z-index: 5; opacity: 0; animation: fu 1s 1.5s forwards; }
.s-dot { width: 36px; height: 2px; background: rgba(255,255,255,.28); border: none; cursor: pointer; padding: 0; transition: background .3s; }
.s-dot.on { background: var(--accent); }

.hero-scroll { position: absolute; bottom: 38px; left: 0; right: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; z-index: 5; opacity: 0; animation: fu 1s 1.7s forwards; }
.hero-scroll span { font-size: 11px; letter-spacing: 4px; color: var(--accent-lt); text-transform: uppercase; font-weight: 600; }
.scroll-bar { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); animation: sb 2s infinite; }
@keyframes fu { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sb { 0%,100% { opacity:.35; } 50% { opacity:1; } }

/* ticker */
.banner-strip { background: var(--g-mid); overflow: hidden; }
.banner-ticker { display: flex; align-items: center; padding: 18px 0; white-space: nowrap; animation: ticker 26s linear infinite; }
.banner-ticker span { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: rgba(245,240,230,.85); padding: 0 36px; font-weight: 500; }
.banner-ticker em { color: var(--accent-lt); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ PROJE â”€â”€â”€ */
#proje { background: var(--g-deep); padding: 140px 0; }
.proje-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.proje-text .label { margin-bottom: 18px; }
.proje-text h2 { font-size: clamp(44px, 5vw, 72px); color: var(--cream); margin-bottom: 30px; }
.proje-text p { font-size: 16px; line-height: 1.9; color: rgba(245,240,230,.7); margin-bottom: 14px; }

.proje-quote { margin-top: 40px; padding: 28px 32px; border-left: 2px solid var(--accent); background: rgba(161,190,78,.08); }
.proje-quote p {font-family: 'GFS Didot', serif;font-size: 40px;color: var(--cream);line-height: 1.5;}

.proje-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pn { background: var(--g-dark); padding: 44px 32px; transition: background .35s; cursor: default; }
.pn:hover { background: var(--g-mid); }
.pn .n { font-family: 'GFS Didot', serif; font-size: 56px; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.pn .l { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,230,.55); font-weight: 600; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ ORMAN â”€â”€â”€ */
#orman { overflow: hidden; }
.orman-vis { height: 72vh; position: relative;
  background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=85') center/cover no-repeat;
  display: flex; align-items: center; }
.orman-vis::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,62,34,.9) 42%, transparent); }
.orman-copy { position: relative; z-index: 1; padding: 0 60px; max-width: 700px; }
.orman-copy .label { margin-bottom: 18px; }
.orman-copy h2 { font-size: clamp(42px, 5vw, 72px); color: var(--cream); margin-bottom: 26px; }
.orman-copy p { font-size: 16px; line-height: 1.9; color: rgba(245,240,230,.78); }

.orman-cards { background: var(--cream); padding: 100px 0; }
.orman-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--cream-dk); }
.oc { background: var(--white); padding: 48px 32px; transition: background .35s; }
.oc:hover { background: var(--g-deep); }
.oc:hover .oc-icon { color: var(--accent); }
.oc:hover .oc-title { color: var(--cream); }
.oc:hover .oc-desc { color: rgba(245,240,230,.65); }
.oc-icon { color: var(--g-mid); margin-bottom: 24px; transition: color .35s; }
.oc-title { font-family: 'GFS Didot', serif; font-size: 24px; color: var(--g-deep); margin-bottom: 12px; transition: color .35s; }
.oc-desc { font-size: 14px; line-height: 1.7; color: var(--txt-mid); transition: color .35s; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ VÄ°LLA TÄ°PLERÄ° â”€â”€â”€ */
#villa-tipleri { background: var(--white); padding: 140px 0; }
.vt-head { text-align: center; margin-bottom: 80px; }
.vt-head .label { margin-bottom: 16px; }
.vt-head h2 { font-size: clamp(42px, 5vw, 68px); color: var(--g-deep); }
.vt-head p { margin-top: 20px; font-size: 16px; line-height: 1.8; color: var(--txt-mid); max-width: 620px; margin-left: auto; margin-right: auto; }

.vt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.vt { position: relative; overflow: hidden; background: var(--g-dark); padding: 56px 36px; transition: background .4s; }
.vt:hover { background: var(--g-mid); }
.vt-num { position: absolute; top: 16px; right: 26px; font-family: 'GFS Didot', serif; font-size: 96px; color: rgba(255,255,255,.06); line-height: 1; transition: color .4s; }
.vt:hover .vt-num { color: rgba(255,255,255,.12); }
.vt-icon { color: var(--accent-lt); margin-bottom: 28px; }
.vt-title { font-family: 'GFS Didot', serif; font-size: 26px; color: var(--cream); margin-bottom: 8px; line-height: 1.15; }
.vt-sub { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; font-weight: 600; }
.vt-desc { font-size: 14px; line-height: 1.7; color: rgba(245,240,230,.65); }
.vt-rule { width: 32px; height: 1px; background: var(--accent); margin: 24px 0; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ SOSYAL â”€â”€â”€ */
#sosyal { background: var(--g-deep); padding: 140px 0; }
.sosyal-head { text-align: center; margin-bottom: 72px; }
.sosyal-head .label { margin-bottom: 16px; }
.sosyal-head h2 { font-size: clamp(42px, 5vw, 68px); color: var(--cream); }
.sosyal-head p { margin-top: 18px; font-size: 16px; line-height: 1.8; color: rgba(245,240,230,.6); max-width: 540px; margin-left: auto; margin-right: auto; }

.sosyal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.sg { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.sg.lg { /* eski 2-kolon span kaldÄ±rÄ±ldÄ±; tÃ¼m gÃ¶rseller eÅŸit boyutta */ }
.sg img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.sg:hover img { transform: scale(1.07); }
.sg-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,62,34,.92) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.sg-icon { color: var(--accent-lt); margin-bottom: 10px; opacity: 0; transform: translateY(8px); transition: all .4s; }
.sg:hover .sg-icon { opacity: 1; transform: translateY(0); }
.sg-name { font-family: 'GFS Didot', serif; font-size: 26px; color: var(--cream); }
.sg-desc { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,240,230,.6); margin-top: 5px; font-weight: 500; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ KAT PLANLARI â”€â”€â”€ */
#katplanlar { background: var(--cream); padding: 140px 0; }
.kp-head { text-align: center; margin-bottom: 56px; }
.kp-head .label { margin-bottom: 16px; }
.kp-head h2 { font-size: clamp(42px, 5vw, 68px); color: var(--g-deep); }

.kp-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 56px; border-bottom: 1px solid var(--cream-dk); flex-wrap: wrap; }
.kp-tab { padding: 16px 32px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; color: var(--txt-lt); font-weight: 700; font-family: 'Raleway', sans-serif; border: none; background: transparent; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .3s; font-size: 18px; }
.kp-tab:hover { color: var(--g-deep); }
.kp-tab.on { color: var(--g-deep); border-bottom-color: var(--accent); }

.kp-panel { display: none; }
.kp-panel.on { display: block; }

.kp-row {display: grid;/* grid-template-columns: 1fr 1.25fr; */gap: 80px;align-items: center;}
.kp-info .label { margin-bottom: 16px; }
.kp-info h3 { font-size: clamp(34px, 4vw, 52px); color: var(--g-deep); margin-bottom: 18px; }
.kp-info > p { font-size: 15px; line-height: 1.85; color: var(--txt-mid); margin-bottom: 32px; }

.kp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--cream-dk); margin-bottom: 36px; }
.kps { background: var(--white); padding: 22px 24px; }
.kps-v { font-family: 'GFS Didot', serif; font-size: 26px; color: var(--g-deep); }
.kps-k { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--txt-lt); margin-top: 4px; font-weight: 600; }

.kp-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--g-deep); color: var(--cream); padding: 15px 30px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; font-family: 'Raleway', sans-serif; transition: background .3s; }
.kp-btn:hover { background: var(--g-mid); }
.kp-btn .i { width: 18px; height: 18px; }

.kp-vis { background: var(--white); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 0; box-shadow: 0 24px 80px rgba(0,0,0,.06); min-height: 480px; overflow: hidden; }
.kp-vis-tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 1px solid var(--cream-dk); background: #fafaf6; }
.kp-vis-tab { padding: 12px 18px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; color: var(--txt-lt); font-weight: 700; font-family: 'Raleway', sans-serif; border: none; background: transparent; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .3s; }
.kp-vis-tab:hover { color: var(--g-deep); }
.kp-vis-tab.on { color: var(--g-deep); border-bottom-color: var(--accent); background: #fff; }
.kp-vis-imgwrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 28px; min-height: 420px; }
.kp-vis-imgwrap img { max-width: 100%; max-height: 540px; object-fit: contain; cursor: zoom-in; }
.kp-vis-empty { color: var(--txt-lt); font-style: italic; font-size: 14px; }
.fp { width: 100%; max-width: 540px; }
.fp-placeholder { width: 100%; height: 420px; background: var(--cream-dk); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.fp-placeholder h3 { font-size: 48px; color: var(--g-deep); }
.fp-placeholder span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 700; }

.bod-grid { width: 100%; padding: 32px; background: var(--cream-dk); }
.bod-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bod-cell { background: white; padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.bod-cell .i { color: var(--g-mid); }
.bod-cell-name { font-family: 'GFS Didot', serif; font-size: 18px; color: var(--g-deep); }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ LOKASYON â”€â”€â”€ */
#lokasyon { background: var(--g-deep); padding: 140px 0; }
.lok-head .label { margin-bottom: 16px; }
.lok-head h2 { font-size: clamp(42px, 5vw, 68px); color: var(--cream); margin-bottom: 64px; }
.lok-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.lok-intro p { font-size: 16px; line-height: 1.9; color: rgba(245,240,230,.7); margin-bottom: 44px; }

.dists { display: flex; flex-direction: column; gap: 1px; }
.dist { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: var(--g-dark); transition: background .3s; }
.dist:hover { background: var(--g-mid); }
.dist-n { font-size: 14px; color: rgba(245,240,230,.78); font-weight: 500; }
.dist-v { font-family: 'GFS Didot', serif; font-size: 22px; color: var(--accent); }

.lok-map { position: relative; overflow: hidden; align-self: stretch; min-height: 600px; display: flex; flex-direction: column; }
.lok-map .map-iframe-wrap { position: relative; flex: 1; min-height: 540px; }
.lok-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.85); pointer-events: none; }
.lok-map .map-clickthru { position: absolute; inset: 0; z-index: 3; cursor: pointer; background: transparent; text-indent: -9999px; overflow: hidden; }
.lok-map .map-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); pointer-events: none; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lok-map .map-marker img { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(0,0,0,.45)); }
.lok-map .map-marker .map-marker-lbl { background: var(--g-deep); color: var(--accent-lt); padding: 4px 12px; border-radius: 4px; font-family: 'GFS Didot', serif; font-size: 14px; letter-spacing: 1px; box-shadow: 0 4px 12px rgba(0,0,0,.35); }
.map-img { width: 100%; min-height: 400px;
  background: linear-gradient(rgba(6,62,34,.45), rgba(6,62,34,.45)),
	url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=900&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; min-height: 380px; }
.map-pin { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); animation: pp 2.2s infinite; }
@keyframes pp { 0%,100%{box-shadow:0 0 0 5px rgba(161,190,78,.28),0 0 0 12px rgba(161,190,78,.1);} 50%{box-shadow:0 0 0 10px rgba(161,190,78,.18),0 0 0 20px rgba(161,190,78,.06);} }
.pin-lbl { font-family: 'GFS Didot', serif; font-size: 18px; color: var(--cream); letter-spacing: 2px; }
.map-foot { background: rgba(10,79,42,.7); padding: 20px 26px; display: flex; justify-content: space-between; align-items: center; }
.map-addr { font-size: 13px; color: rgba(245,240,230,.65); letter-spacing: 1px; }
.map-link { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); text-decoration: none; transition: opacity .3s; font-weight: 600; }
.map-link:hover { opacity: .7; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ GALERÄ° â”€â”€â”€ */
#galeri { background: var(--white); padding: 140px 0; }
.gal-head { text-align: center; margin-bottom: 52px; }
.gal-head .label { margin-bottom: 16px; }
.gal-head h2 { font-size: clamp(42px, 5vw, 68px); color: var(--g-deep); }

.gal-filter { display: flex; justify-content: center; gap: 4px; margin-bottom: 44px; flex-wrap: wrap; }
.gf-btn { padding: 11px 24px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; font-family: 'Raleway', sans-serif; border: 1px solid var(--cream-dk); background: transparent; color: var(--txt-lt); cursor: pointer; transition: all .3s; }
.gf-btn.on, .gf-btn:hover { background: var(--g-deep); color: var(--cream); border-color: var(--g-deep); }

.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.gi { overflow: hidden; position: relative; cursor: zoom-in; aspect-ratio: 4/3; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.gi:hover img { transform: scale(1.06); }
.gi-ov { position: absolute; inset: 0; background: rgba(6,62,34,0); display: flex; align-items: center; justify-content: center; transition: background .4s; }
.gi:hover .gi-ov { background: rgba(6,62,34,.36); }
.gi-plus { color: var(--cream); opacity: 0; transform: scale(.7); transition: all .3s; }
.gi:hover .gi-plus { opacity: 1; transform: scale(1); }

.lb { position: fixed; inset: 0; z-index: 2000; background: rgba(6, 62, 34, 0.50); backdrop-filter: blur(8px) saturate(1.05); -webkit-backdrop-filter: blur(8px) saturate(1.05); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 18px; }
.lb.open { display: flex; }
.lb-frame { background: #fff; padding: 14px 14px 0; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.35); display: flex; flex-direction: column; max-width: 92vw; max-height: 86vh; }
.lb-frame img { display: block; max-width: 100%; max-height: calc(86vh - 96px); object-fit: contain; }
.lb-caption { font-family: 'GFS Didot', serif; color: var(--g-deep); font-size: 22px; text-align: center; padding: 16px 12px 18px; min-height: 56px; box-sizing: border-box; }
.lb-close { position: absolute; top: 22px; right: 28px; font-size: 30px; color: var(--cream); cursor: pointer; opacity: .75; background: none; border: none; transition: opacity .3s; }
.lb-close:hover { opacity: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: none; color: var(--cream); padding: 14px 18px; cursor: pointer; transition: background .3s; display: flex; align-items: center; justify-content: center; }
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-nav .i { width: 22px; height: 22px; }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Ä°LETÄ°ÅžÄ°M â”€â”€â”€ */
#iletisim {
  background:
	linear-gradient(rgba(6,62,34,.88), rgba(6,62,34,.88)),
	url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80') center/cover no-repeat fixed;
  padding: 160px 0;
}
.il-row { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.il-left .label { margin-bottom: 20px; }
.il-left h2 { font-size: clamp(42px, 4.8vw, 64px); color: var(--cream); margin-bottom: 22px; }
.il-left > p { font-size: 15px; line-height: 1.9; color: rgba(245,240,230,.62); margin-bottom: 44px; }

.contacts { display: flex; flex-direction: column; gap: 22px; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 46px; height: 46px; border: 1px solid rgba(161,190,78,.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.ci-icon .i { width: 20px; height: 20px; }
.ci-body { display: flex; flex-direction: column; gap: 4px; }
.ci-lbl { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.ci-val { font-size: 16px; color: var(--cream); }
.ci-val a { color: inherit; text-decoration: none; }
.ci-val a:hover { color: var(--accent); }

.form {display: grid;/* grid-template-columns: 1fr 1fr; */gap: 16px;}
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg.full { grid-column: span 2; }
.fg label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.05); border: 1px solid rgba(161,190,78,.26);
  color: var(--cream); padding: 14px 18px;
  font-family: 'Raleway', sans-serif; font-size: 14px; outline: none;
  transition: border-color .3s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg select option { background: var(--g-deep); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-sub { grid-column: span 2; margin-top: 8px; }
.btn-send { width: 100%; padding: 16px; background: var(--accent); color: var(--g-deep); border: none; font-family: 'Raleway', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background .3s; }
.btn-send:hover { background: var(--accent-lt); }
.form-note { grid-column: span 2; font-size: 12px; color: rgba(245,240,230,.32); text-align: center; margin-top: 6px; }
.kvkkalt {grid-column: span 2;}
.bilgi-cta {
    display: inline-flex;
    align-items: center;
    background: var(--accent);
    color: var(--g-deep);
    padding: 10px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(161, 190, 78, .35);
    transition: background .3s, transform .25s, box-shadow .3s;
}
.pasif_label.actif {
    opacity: 0.4;
    -webkit-appearance: none;
}

/*  FOOTER  */
footer { background: var(--g-deep); border-top: 1px solid rgba(161,190,78,.16); padding: 80px 0 40px; }
.ft-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 60px; }
.ft-brand p { font-size: 14px; line-height: 1.7; color: rgba(245,240,230,.45); margin-top: 18px; max-width: 280px; }
.ft-holding { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,230,.3); margin-top: 24px; font-weight: 600; }
.ft-holding a { color: var(--accent); text-decoration: none; opacity: .85; }
.ft-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 700; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: 14px; color: rgba(245,240,230,.55); text-decoration: none; transition: color .3s; }
.ft-col a:hover { color: var(--cream); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.ft-bottom p {font-size: 12px;color: rgba(245,240,230,.28);letter-spacing: 1px;font-family: 'Roboto', sans-serif;}
.ft-socials { display: flex; gap: 10px; }
.ft-soc { width: 36px; height: 36px; border: 1px solid rgba(161,190,78,.22); display: flex; align-items: center; justify-content: center; color: rgba(245,240,230,.45); font-size: 13px; font-weight: 700; text-decoration: none; transition: all .3s; }
.ft-soc:hover { border-color: var(--accent); color: var(--accent); }
.teralogo img{ width: 70px;}

/* SECTION BANNERS */
.sec-banner {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
  position: relative;
}
.sec-banner.on { display: block; }
.sec-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(6,62,34,.25) 100%);
  pointer-events: none;
}
.proje-ozellik {
    position: relative;
    overflow: hidden;
    background: var(--g-dark);
    padding: 15px 15px;
    transition: background .4s;
}
.ozellik-ikon img {
	width: 100px;
}
.ozellik-ikon {
	text-align: center;
}
.ozellik-title {
    font-family: 'GFS Didot', serif;
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.15;
    text-align: center;
}
a {
	color: #19733d;
}
#cookiePopup{
	width: 100%;
	background: rgba(0,0,0,.9)!important;
	color: #aaa!important;
	padding: 1em 1.8em;
	-ms-flex-direction: row;
	flex-direction: row;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	line-height: 1.5em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 99999;
	padding-bottom:50px;
}
#cookiePopup p{
	color: #aaa!important;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	max-width: 100%;
	line-height:1.5;
	color: #76675a;
}
#cookiePopup p a{
	color: #aaa!important;
	text-decoration: underline;
}
#cookiePopup p span{
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
}
#cookiePopup .cookiePopupClose{
	background: #76675a;
	color: #FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	position: absolute;
	padding: 6px 30px;
	right:0px; bottom:0px;
}


@media (max-width: 768px) { .sec-banner { height: 220px; } }

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (min-width: 1200px) {
  .hero-inner { padding-right: 480px; }
  .hero-stats { right: 480px; }
}
@media (max-width: 1200px) {
  .hero-form { right: 32px; width: 360px; padding: 32px 28px; }
  .hero-form-title { font-size: 19px; }
}
@media (max-width: 980px) {
  .hero-form-trigger { display: inline-flex !important; }
  .hero-form-close { display: flex !important; }
  .hero-form {
	position: fixed; inset: 0; margin: 0;
	width: auto; max-width: none; height: auto; max-height: none;
	border-radius: 0; padding: 80px 22px 28px; transform: none;
	box-sizing: border-box;
	background: rgba(6, 62, 34, 0.96);
	backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
	animation: none; opacity: 0; pointer-events: none; visibility: hidden;
	overflow-y: auto; z-index: 9999;
	transition: opacity .35s ease, visibility 0s .35s;
  }
  .hero-form.open { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity .35s ease; }
  .hero-form-close { display: flex; }
}
.hero-form-trigger {
  display: none;
  position: absolute; left: 50%; bottom: 165px; transform: translateX(-50%); z-index: 7;
  align-items: center; gap: 10px;
  background: var(--accent); color: var(--g-deep);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 12px 22px; border: none; border-radius: 4px;
  box-shadow: 0 8px 22px rgba(161,190,78,.35); cursor: pointer;
}
.hero-form.closed { display: none !important; }
.hero-form-close {
  display: flex;
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border: none; cursor: pointer;
  background: rgba(255,255,255,.08); color: #fff;
  border-radius: 50%; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  transition: background .2s ease;
}
.hero-form-close:hover { background: rgba(255,255,255,.18); }
@media (max-width: 1200px) {
  .proje-grid { grid-template-columns: 1fr; gap: 60px; }
  .vt-grid { grid-template-columns: 1fr 1fr; }
  .kp-row { grid-template-columns: 1fr; }
  .lok-row { grid-template-columns: 1fr; }
  .il-row { grid-template-columns: 1fr; gap: 60px; }
  .ft-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cnt { padding: 0 28px; }
  .orman-cards-grid { grid-template-columns: 1fr 1fr; }
  .sosyal-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gi.w8, .gi.w4, .gi.w6 { grid-column: span 1; }
  .gi.w8 { grid-column: span 2; }
}
@media (max-width: 768px) {
  #nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .cnt { padding: 0 20px; }
  .hero-stats { gap: 14px; flex-wrap: nowrap; bottom: 230px; justify-content: space-between; padding: 0 16px; }
  .hs { gap: 6px; flex: 1; min-width: 0; }
  .hs-n { font-size: 26px; }
  .hs-l { font-size: 8px; letter-spacing: 1.5px; white-space: normal; text-align: center; line-height: 1.2; }
  .vt-grid { grid-template-columns: 1fr; }
  .orman-copy { padding: 0 28px; }
  .form { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
  .form-sub, .form-note { grid-column: span 1; }
  .ft-row { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 14px; }
  .kp-tabs { justify-content: flex-start; overflow-x: auto; }
  .logo-svg { width: 76px; height: 76px; }
  /* PROJE bÃ¶lÃ¼mÃ¼ mobil */
  #proje { padding: 80px 0; }
  .proje-grid { gap: 40px; }
  .proje-text h2 { font-size: 32px; margin-bottom: 18px; line-height: 1.15; }
  .proje-text p { font-size: 14px; line-height: 1.75; }
  .proje-quote { padding: 18px 20px; margin-top: 24px; }
  .proje-quote p { font-size: 16px; }
  .pn { padding: 24px 18px; }
  .pn .n { font-size: 36px; }
  .pn .l { font-size: 10px; letter-spacing: 1.5px; }
  /* DiÄŸer bÃ¶lÃ¼m baÅŸlÄ±klarÄ±nÄ± da kÃ¼Ã§Ã¼lt */
  .orman-head h2, .vt-head h2, .sosyal-head h2, .lok-head h2, .kp-head h2, .gal-head h2, .il-head h2 { font-size: 32px; }
  section { padding-left: 0; padding-right: 0; }
  #proje, #orman, #villa-tipleri, #sosyal, #katplanlar, #lokasyon, #galeri, #iletisim { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 480px) {
  .orman-cards-grid { grid-template-columns: 1fr; }
  .sosyal-grid { grid-template-columns: 1fr; }
  .proje-nums { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 8px; padding: 0 10px; }
  .hs-n { font-size: 22px; }
  .hs-l { font-size: 7px; letter-spacing: 1px; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
}
/* Mobilde section background gÃ¶rselleri iÃ§in fixed attachment problem yaratÄ±yor â€” scroll moduna dÃ¼ÅŸÃ¼r ve ekrana sÄ±ÄŸdÄ±r */
@media (max-width: 900px) {
  #proje, #orman, #villa-tipleri, #sosyal, #katplanlar, #lokasyon, #galeri, #iletisim {
	background-attachment: scroll !important;
	background-size: cover !important;
	background-position: center center !important;
  }
}
@media only screen and (max-width: 1700px) {
	.hero-form-title {
		font-size: 22px;
		line-height: normal;
		margin-bottom: 7px;
	}
 	.hf-input, .hf-select {
		padding: 7px 20px;}
	.slide {
		background-position: 0 -40px;
	}
}
@media only screen and (max-width: 1400px) {
	.nav-cta, .bilgi-cta {
		padding: 10px 10px;
		font-size: 16px;
	}
	#nav {
		padding: 0 40px;
	}
	.slide {
    	background-position: 0 -50px;
	}
	.orman-vis {
		height: 85vh;
	}
	#nav.sc {
		height: 80px;
	}
	.logo-wrap img{
		height: 130px !important;
	}
}
@media only screen and (max-width: 500px) {
    .fg.full {
        grid-column:span 2 !important;
    }
	    .slide {
        background-position: -52px 0px;
    }
	    .form {
        width: 100%;
        display: block;
    }
}

@media only screen and (max-width: 389px) {
	.slide {
        background-position: 0px 0px;
    }
	    .logo-wrap img {
        height: 100px !important;
        top: -23px;
        left: -20px;
    }
}