﻿/* ============================================================
   SERVET İNŞAAT — main.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #0D4746;
  --green-dark: #143D31;
  --green-deep: #0F3226;
  --gold:       #C9A84C;
  --cream:      #F8F6F1;
  --white:      #FFFFFF;
  --text:       #333333;
  --text-light: #666666;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1240px;
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.gold-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0.9rem auto;
}
.gold-line-left { margin-inline: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.4s ease, opacity 0.4s ease;
}

.navbar--hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}


/* Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0;
  min-width: 80px;
  z-index: 901;
  position: relative;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger-lines span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

/* Logo */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 901;
}
.nav-logo img {
  height: 78px;
  width: auto;
  object-fit: contain;
}

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  min-width: 200px;
  justify-content: flex-end;
  z-index: 901;
  position: relative;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
}
.nav-icon-btn svg { width: 17px; height: 17px; }

.nav-insta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.nav-insta svg { width: 17px; height: 17px; }

/* ============================================================
   FULLSCREEN MENU
   ============================================================ */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  visibility: hidden;
}
.fullscreen-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.page-blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
body.menu-open .page-blur-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Left nav column */
.fsm-left {
  width: 641px;
  flex-shrink: 0;
  background: var(--green);
  padding: 5rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fsm-top {
  display: flex;
  flex-direction: column;
}

.fsm-nav-group {
  display: flex;
  flex-direction: column;
  width: fit-content;
  margin: 0 auto 0 3rem;
}

.fsm-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fsm-nav a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: left;
  color: #ffffff;
  padding: 0.6rem 0;
  transition: color 0.25s ease;
}
.fsm-nav a:hover,
.fsm-nav a.active {
  color: #F7DF6B;
}

.fsm-nav-item-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
}
.fsm-nav-item-wrap > a { flex: none; }

.fsm-submenu-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.25s ease;
  flex-shrink: 0;
}
.fsm-submenu-toggle svg { width: 16px; height: 16px; display: block; }
.fsm-submenu-toggle:hover { color: #F7DF6B; }
.fsm-has-submenu.open .fsm-submenu-toggle { transform: rotate(180deg); color: #F7DF6B; }

.fsm-has-submenu { position: relative; }

.fsm-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1.4rem;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.fsm-has-submenu.open .fsm-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(4px);
}

.fsm-submenu li a {
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  padding: 0.4rem 0;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
  display: block;
  text-transform: none;
  white-space: nowrap;
}
.fsm-submenu li a:hover,
.fsm-submenu li a.active { color: #F7DF6B; }

.fsm-footer-insta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 2.5rem;
  transition: color 0.25s ease;
}
.fsm-footer-insta:hover { color: #F7DF6B; }

.fsm-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsm-footer-logo {
  width: 245px;
  height: 117px;
}

/* Right content column */
.fsm-right {
  width: 631px;
  flex-shrink: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.fsm-close {
  position: absolute;
  top: calc(2rem + 50px);
  left: calc(641px + 631px + 1.5rem);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  padding: 0;
  z-index: 2001;
}
.fsm-close:hover {
  background: #ffffff;
  color: var(--green);
  border-color: #ffffff;
}

/* Dar ekranda buton beyaz fsm-right üzerine gelir → yeşile dön, sağa yasla */
@media (max-width: 1332px) {
  .fsm-close {
    left: auto;
    right: 1.5rem;
    background: rgba(13,71,70,0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(13,71,70,0.25);
    color: var(--green);
  }
  .fsm-close:hover {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
  }
}

/* 2x2 project grid in menu */
.fsm-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: flex-start;
  padding-top: 7rem;
}

a.fsm-project-card, a.taahhut-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fsm-project-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}
.fsm-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fsm-project-card:hover img { transform: scale(1); }

.fsm-project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.fsm-project-card-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  white-space: normal;
  word-break: keep-all;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 1;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  box-shadow: 1px 1px 2px rgba(255,255,255,0.25), -1px -1px 2px rgba(0,0,0,0.2);
  transition: background 0.25s ease, color 0.25s ease;
}
.fsm-project-card:hover .fsm-project-card-label {
  background: #ffffff;
  color: #0D4746;
}

/* Bottom of fsm-right */
.fsm-bottom {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fsm-insta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0,0,0,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}
.fsm-insta-link:hover { color: var(--text); }
.fsm-insta-link svg { width: 16px; height: 16px; }

.fsm-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201,168,76,0.5);
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.fsm-play-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--white);
}
.fsm-play-btn svg { width: 18px; height: 18px; }

/* Mobile-only header (hidden on desktop) */
.fsm-mobile-header { display: none; }
.fsm-mobile-logo   { display: none; }
.fsm-mh-spacer     { display: none; }

/* ============================================================
   HERO PIN — scroll sahnesi
   ============================================================ */
#hero-pin {
  position: relative;
  height: 300vh;
}

#hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  overflow: hidden;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,71,70,0.75) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  will-change: transform;
  padding: 0 1rem;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5.5vw, 70px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 6.5vw, 85px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-play-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hero-play-btn img {
  display: block;
  height: 64px;
  width: auto;
}
.hero-play-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 33px);
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
}
.hero-play-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-indicator svg { width: 20px; height: 20px; }

/* ============================================================
   ROLEX CARDS — videonun üstüne kayan panel
   ============================================================ */
#cards-section {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 5rem;
  gap: 1.5rem;
  z-index: 10;
  transform: translateY(100%);
  will-change: transform;
}

.rolex-card {
  position: relative;
  flex: 1;
  height: 85vh;
  max-height: 800px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.rolex-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.rolex-card:hover img { transform: scale(1.04); }

/* desktop: track is layout-transparent */
.cards-track { display: contents; }
.cards-nav-btn { display: none; }

.rolex-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
}
.rolex-card-label {
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}
.rolex-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.rolex-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ============================================================
   NEDEN BİZ
   ============================================================ */
.neden-section {
  background: var(--cream);
  padding: 7rem 0;
}
.neden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.neden-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.neden-left p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: gap 0.3s ease, color 0.3s ease;
}
.link-arrow:hover { gap: 1rem; color: var(--gold); }
.neden-logo { margin-top: 2.5rem; }
.neden-logo img { height: 40px; width: auto; }
.neden-right img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

/* ============================================================
   WHY FEATURES (4 icons)
   ============================================================ */
.why-features {
  background: var(--white);
  padding: 5.5rem 0;
}
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(27,77,62,0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.why-feature:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 6px 28px rgba(27,77,62,0.07);
  transform: translateY(-4px);
}
.why-feature img {
  height: 58px;
  width: auto;
  margin: 0 auto 1.3rem;
}
.why-feature h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.why-feature p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.75;
}

/* ============================================================
   PROJELER SLIDER
   ============================================================ */
.projects-section {
  background: var(--white);
  padding: 1.5rem 0 4rem;
  margin-top: -12rem;
}
.projects-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.projects-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 75px);
  font-weight: 700;
  color: #0D4746;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.projects-header .quote {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: #555;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}

.slider-wrapper {
  position: relative;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  background: #0D4746;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.slider-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #C9A84C;
}
.slider-arrow:hover { background: #143D31; }

.slider-track-outer {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.slide-card {
  flex: 0 0 45%;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.slide-card-img {
  height: 260px;
  overflow: hidden;
}
.slide-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.slide-card:hover .slide-card-img img { transform: scale(1.05); }

.slide-card-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  margin-top: 0.75rem;
}

.slider-dots { display: none; }
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(27,77,62,0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
}
.slider-dot.active {
  background: var(--green);
  transform: scale(1.3);
}
.projects-footer {
  text-align: right;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27,77,62,0.1);
}
.projects-footer a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.projects-footer a:hover { color: var(--gold); }

/* ============================================================
   TAMAMLANAN TAAHHÜTLER
   ============================================================ */
.commitments-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.commitments-video {
  position: relative;
  overflow: hidden;
}
.commitments-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.commitments-content {
  background: var(--green);
  padding: 5.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commitments-content .section-tag {
  font-size: 0.88rem;
}
.commitments-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.commitments-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.btn-circle-gold {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-circle-gold:hover { background: var(--gold); color: var(--white); }
.btn-circle-gold svg { width: 20px; height: 20px; }

/* ============================================================
   TARİHÇE
   ============================================================ */
.tarihce-section {
  background: var(--white);
  padding: 7rem 0;
}
.tarihce-header {
  text-align: center;
  margin-bottom: 3rem;
}
.tarihce-header .section-tag {
  font-size: 0.88rem;
}
.tarihce-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.tarihce-tabs {
  display: none;
}

.tarihce-carousel {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.tab-btn {
  padding: 0.55rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  border: 1.5px solid rgba(27,77,62,0.35);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.tarihce-body { flex: 1; position: relative; }

.tarihce-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tarihce-arrow:hover {
  background: var(--green);
  color: var(--gold);
  border-color: var(--green);
}
.tarihce-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.tab-content.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tab-year {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}

.tab-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.tab-project {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(27,77,62,0.1);
}
.tab-project:last-child { border-bottom: none; margin-bottom: 0; }
.tab-project h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.tab-project p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
}


/* ============================================================
   CONTACT INFO SECTION (anasayfa)
   ============================================================ */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,77,62,0.78);
  z-index: 1;
}

.contact-info-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.contact-left { }
.contact-right { text-align: left; }
.contact-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.contact-form-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-top: 1.5rem;
}
.contact-info-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.contact-info-inner .gold-line {
  margin-bottom: 3rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}
.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}
a.contact-info-value:hover { color: var(--gold); }

/* ── İletişim Formu ── */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.cf-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cf-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cf-input::placeholder { color: rgba(255,255,255,0.35); }
.cf-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.13);
}
.cf-textarea { resize: vertical; min-height: 130px; }
.cf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.cf-select option { background: #1b4d3e; color: #fff; }

.cf-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.cf-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cf-check input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231b4d3e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.cf-check span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 0.25rem;
}
.btn-submit:hover { background: var(--white); }

/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.instagram-section {
  background: var(--white);
  padding: 5.5rem 0 9rem;
  text-align: center;
}
.insta-header {
  margin-bottom: 3rem;
  padding: 0 2rem;
}
.insta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 1rem;
}
.insta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.3;
}
.insta-grid {
  display: flex;
  justify-content: center;
  gap: 27px;
  margin-bottom: 3rem;
  overflow: hidden;
}
.insta-img-link {
  display: block;
  width: 296px;
  height: 296px;
  flex-shrink: 0;
  overflow: hidden;
}
.insta-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.insta-img-link:hover img { transform: scale(1.06); }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.insta-handle img { height: 34px; width: auto; }
.insta-handle:hover { color: var(--gold); }

/* ============================================================
   INSTAGRAM LİGHTBOX
   ============================================================ */
.ilb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.ilb-overlay.open { display: flex; }
.ilb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}
.ilb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.ilb-close:hover { opacity: 1; }
.ilb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.25s ease;
}
.ilb-nav:hover { background: var(--gold); border-color: var(--gold); }
.ilb-nav svg { width: 22px; height: 22px; stroke: currentColor; }
.ilb-prev { left: 1.5rem; }
.ilb-next { right: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */

/* Inline-style ile tanımlanan footer sınıfları için taşma koruması */
.footer-title {
  overflow-wrap: break-word;
  word-break: break-word;
  font-size: clamp(1.2rem, 2.5vw, 32px);
}

.footer-divider {
  width: clamp(160px, 35%, 420px) !important;
}

footer {
  background: var(--green-dark);
  padding: 3.5rem 0 0;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
  align-items: start;
  padding-bottom: 3rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 340px;
}

.footer-contact {
  text-align: center;
  width: 100%;
}
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease;
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.footer-bottom-left svg { width: 15px; height: 15px; }

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-right a {
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
}
.footer-bottom-right a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
}
.video-modal video { width: 100%; }
.modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.modal-close:hover { color: var(--white); }
.modal-close svg { width: 18px; height: 18px; }

/* ============================================================
   INNER PAGE HERO (for hakkimizda, iletisim etc.)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(27,77,62,0.7) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content .breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}

/* ============================================================
   HAKKIMIZDA PAGE
   ============================================================ */
.about-bg-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
}
.about-intro {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 7rem 0;
  text-align: center;
}
.about-intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
}
.about-intro .section-tag {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.about-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-intro .gold-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.about-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto 1.25rem;
}
/* WHY CHOOSE */
.about-intro {
  margin-bottom: 0;
  padding-bottom: 7rem;
}
.about-reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-reason-card {
  aspect-ratio: 286 / 227;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-reason-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.about-reason-card img {
  height: clamp(32px, 4.4vw, 56px);
  width: auto;
  margin-bottom: 0.75rem;
}
.about-reason-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(0.8rem, 1.4vw, 1.1rem);
  color: #F7DF6B;
  margin-bottom: 0.35rem;
}
.about-reason-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.3vw, 1.05rem);
  color: #000000;
  line-height: 1.6;
}

/* Management */
.management-section {
  background: var(--white);
  padding: 7rem 0;
}
.management-header {
  text-align: center;
  margin-bottom: 4rem;
}
.management-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  color: var(--green);
}
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin-inline: auto;
}
.management-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.management-card-img {
  width: 100%;
  aspect-ratio: 694 / 628;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--cream);
  position: relative;
}
.management-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.management-card:hover .management-card-img img { transform: scale(1.03); }

.management-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.management-card-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.2);
}

.management-card-body {}
.management-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.3rem;
}
.management-card-body .role {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.management-card-body p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.87rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-top: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: gap 0.3s ease, color 0.3s ease;
}
.read-more-btn:hover { gap: 0.7rem; color: var(--gold); }
.read-more-btn.open svg { transform: rotate(90deg); }
.read-more-btn svg { transition: transform 0.3s ease; }

.bio-full {
  display: none;
  text-align: center;
}
.bio-full.open { display: block; }
.bio-full p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.bio-full p:last-child { margin-bottom: 0; }

/* Process */
.process-section {
  position: relative;
}
.process-bg-img {
  width: 100%;
  height: 55vw;
  object-fit: cover;
  object-position: center;
  display: block;
}
.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,28,28,0.55);
}
.process-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}
.process-title-block {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}
.process-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.process-title-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  align-self: flex-start;
  max-width: 520px;
  margin-left: clamp(2rem, 8vw, 8rem);
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.process-step-icon {
  height: clamp(32px, 3.5vw, 52px);
  width: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
  filter: brightness(0) invert(1);
}
.process-step-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  color: var(--white);
  margin-bottom: 0.35rem;
}
.process-step-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
/* ============================================================
   NEDEN BANNER — YENİ (anasayfa)
   ============================================================ */
/* ============================================================
   NEDEN BANNER — YENİ (anasayfa)
   ============================================================ */
.neden-section-yeni {
  background: #fff;
}
.neden-baslik-yeni {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  color: #0D4746;
  line-height: 1.15;
  text-align: center;
  padding: clamp(3rem, 6vw, 6rem) 1.5rem clamp(1.5rem, 3vw, 3rem);
  margin: 0;
}
.neden-img-wrap {
  position: relative;
  overflow: hidden;
}
.neden-bg-img {
  display: block;
  width: 100%;
  height: clamp(380px, 50vw, 780px);
  object-fit: cover;
  object-position: center top;
}
.neden-overlay {
  display: none;
}
.neden-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 8vw, 10rem);
  max-width: 820px;
}
.neden-cizgi {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
}
.neden-metin {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin: 0 0 1rem 0;
}
.neden-logo-banner {
  height: clamp(48px, 6vw, 100px);
  width: auto;
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
  display: block;
}
.neden-devam-link {
  color: #F7DF6B;
  font-weight: 700;
  text-decoration: none;
}
.neden-devam-link:hover { text-decoration: underline; }
.neden-inner--cards {
  max-width: none;
  left: 0;
  right: 0;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem) 5%;
  box-sizing: border-box;
}
.neden-inner--cards .about-reasons-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 2vw, 2rem) !important;
  width: 100% !important;
  margin: 0 !important;
  align-items: start !important;
  justify-items: center !important;
}
.neden-inner--cards .about-reason-card {
  aspect-ratio: 1/1 !important;
  height: unset !important;
  width: min(100%, clamp(130px, 16vw, 220px)) !important;
  overflow: hidden !important;
  min-height: unset !important;
}

@media (max-width: 768px) {
  .neden-img-wrap { display: flex; flex-direction: column; }
  .neden-bg-img {
    height: auto;
    object-position: center center;
    position: static;
    order: 1;
  }
  .neden-overlay { display: none; }
  .neden-inner {
    position: static;
    order: 2;
    padding: 2rem 1.5rem;
    max-width: 100%;
    background: #0D4746;
  }
  .neden-metin { font-size: 0.88rem; color: rgba(255,255,255,0.88); }
  .neden-inner--cards { padding: 2rem 1.5rem; }
  .neden-inner--cards .about-reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ============================================================
   TAMAMLANAN TAAHHÜTLER PAGE
   ============================================================ */
.taahhutler-intro {
  background: var(--white);
  padding: 7rem 0 5rem;
  text-align: center;
}
.taahhutler-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.taahhutler-intro .quote-text {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 1rem;
  color: #555;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.85;
}

.taahhutler-grid-section {
  background: var(--white);
  padding: 2rem 0 7rem;
}
.taahhutler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.taahhutler-grid--single {
  grid-template-columns: minmax(0, 400px);
  justify-content: center;
}
.taahhut-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
}
.taahhut-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.taahhut-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.taahhut-card-body {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.taahhut-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  box-shadow: 1px 1px 2px rgba(255,255,255,0.25), -1px -1px 2px rgba(0,0,0,0.2);
  transition: background 0.25s ease, color 0.25s ease;
}
.taahhut-card:hover .taahhut-card-body h3 {
  background: #ffffff;
  color: #0D4746;
}

/* Other projects section */
.diger-projeler {
  background: var(--green);
  padding: 6rem 0;
}
.diger-projeler .projects-header h2 { color: var(--white); }
.diger-projeler .projects-header .quote { color: rgba(255,255,255,0.65); }
.diger-projeler .gold-line { background: var(--gold); }

.diger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.diger-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.diger-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}
.diger-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

/* ============================================================
   İLETİŞİM PAGE
   ============================================================ */
.iletisim-map-section {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: 480px;
  background: var(--white);
}
.iletisim-map {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.iletisim-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-yol-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s ease;
  z-index: 1000;
}
.map-yol-btn:hover { background: var(--green-dark); }
.map-yol-btn svg { width: 16px; height: 16px; }

.iletisim-info {
  background: var(--green);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.iletisim-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.iletisim-info-item p,
.iletisim-info-item a {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  display: block;
  transition: color 0.25s ease;
}
.iletisim-info-item a:hover { color: var(--white); }

/* ============================================================
   PROJELER SECTION
   ============================================================ */
#projeler-section {
  background: #fff;
  padding: 7rem 0 10rem;
  overflow-x: hidden;
}

.projeler-baslik {
  text-align: center;
  padding: 0 2rem 2.5rem;
}

.projeler-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6.5vw, 80px);
  color: #0D4746;
  margin-top: 0;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.projeler-alinti {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: #555;
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.tamamlanan-link-text {
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #000;
  text-align: left;
}

.projeler-carousel-wrap {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 10vw, 10rem);
  margin-top: 2rem;
  padding-left: max(1.25rem, calc(50vw - 667px));
}

.proje-arrows {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-shrink: 0;
}

.proje-arrow {
  width: clamp(52px, 5.5vw, 75px);
  height: clamp(52px, 5.5vw, 75px);
  background: #0D4746;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proje-arrow svg {
  width: 80%;
  height: 80%;
}

.projeler-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.proje-track {
  display: flex;
  gap: 24px;
  position: relative;
  will-change: transform;
}

.proje-slot {
  flex: 0 0 clamp(300px, 46vw, 670px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.proje-img-wrap {
  overflow: hidden;
  border-radius: 8px;
  height: clamp(190px, 25vw, 339px);
}

.proje-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  #projeler-section {
    padding: 3rem 0 4rem;
  }
  .projeler-title {
    font-size: clamp(36px, 12vw, 60px);
  }
  .projeler-carousel-wrap {
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    gap: 1.25rem;
  }
  .proje-arrows {
    order: 2;
    justify-content: center;
  }
  .projeler-viewport {
    order: 1;
  }
  .proje-track {
    gap: 0;
  }
  .proje-slot {
    flex: 0 0 100vw;
    padding: 0 1.25rem;
    box-sizing: border-box;
  }
  .proje-img-wrap {
    height: clamp(200px, 56vw, 320px);
  }
  .tamamlanan-link-text {
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
.neden-devam-mobil { display: none; }

@media (max-width: 1200px) {
  .neden-baslik { font-size: clamp(2rem, 5.5vw, 4.5rem) !important; }
}

@media (max-width: 1300px) {
  .fsm-left { width: 50%; }
  .fsm-right { width: 50%; }
}

@media (max-width: 1100px) {
  .fsm-left { width: 55%; }
  .fsm-right { width: 45%; }
  .management-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-content { gap: 3rem; }
  .tarihce-tabs { flex-wrap: wrap; gap: 0.5rem; }
}



/* ── Ara genişliklerde (901-1600px) başlık-resim üst üste binmesi kaldırıldı ── */
@media (min-width: 901px) and (max-width: 1600px) {
  .neden-baslik-wrap { padding: 4rem 2rem 2rem !important; margin-bottom: 0 !important; }
  .neden-banner-img { height: clamp(480px, 50vw, 800px) !important; }
  .neden-banner-overlay { padding: 2.5rem 3rem !important; margin-left: 0 !important; align-items: center !important; }
  .neden-banner-content { max-width: clamp(200px, 50%, 600px) !important; margin-top: 0 !important; overflow-wrap: break-word; word-break: break-word; }
  .neden-p { font-size: clamp(1rem, 1.5vw, 1.6rem) !important; line-height: 1.45 !important; margin-bottom: 0.75rem !important; overflow-wrap: break-word; word-break: break-word; }
  .neden-p-ikinci { display: none !important; }
  .neden-logo-banner { height: clamp(70px, 8vw, 110px) !important; margin-top: 1.5rem !important; }
}

@media (max-width: 900px) {
  .neden-grid { grid-template-columns: 1fr; gap: 3rem; }
  .neden-right img { height: 360px; }

  .projects-section { margin-top: 0; }

  /* Neden biz banner — mobil */
  .neden-baslik-wrap { padding: 2.5rem 1.5rem 1rem !important; margin-bottom: 0 !important; }
  .neden-baslik { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
  .neden-banner-wrap { display: block; position: relative; }
  .neden-banner-img { height: 420px !important; object-fit: cover; object-position: center top; }
  .neden-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: transparent !important;
    padding: 2rem !important;
    margin-left: 0 !important;
    align-items: center !important;
    order: unset;
  }
  .neden-banner-content { max-width: clamp(200px, 70%, 500px) !important; margin-top: 0 !important; overflow-wrap: break-word; word-break: break-word; }
  .neden-p { font-size: 0.78rem !important; line-height: 1.5 !important; margin-bottom: 0.5rem !important; overflow-wrap: break-word; word-break: break-word; }
  .neden-p-ikinci { display: none !important; }
  .neden-mobil-gizle { display: none; }
  .neden-devam-mobil { display: inline-block; color: #F7DF6B; font-weight: 800; font-family: 'Jost', sans-serif; font-size: 0.78rem; text-decoration: none; margin-bottom: 0.75rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
  .neden-logo-banner { height: 48px !important; margin-top: 0.75rem !important; }
  .commitments-section { grid-template-columns: 1fr; }
  .commitments-video { min-height: 300px; }
  .process-bg-img { height: auto; min-height: unset; position: static; }
  .process-section { display: flex; flex-direction: column; }
  .process-overlay { display: none; }
  .process-inner { position: static; padding: 2rem 1.5rem; gap: 1.5rem; background: var(--green); }
  .process-title { color: var(--white); font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .process-title-line { background: rgba(255,255,255,0.4); }
  .process-steps { margin-left: 0; max-width: 100%; align-self: stretch; }
  .process-step-icon { filter: brightness(0) invert(1); }
  .process-step-text h3 { font-size: 0.95rem; }
  .process-step-text p { font-size: 0.82rem; }
  .contact-info-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-left { order: 2; }
  .contact-right { order: 1; text-align: center; }
  .contact-right .gold-line { margin-inline: auto; }
  .contact-info-item { flex-direction: column; align-items: center; text-align: center; }
  .contact-info-value { text-align: center; }
  .cf-row { grid-template-columns: 1fr; }
  .iletisim-map-section { grid-template-columns: 1fr; }
  .iletisim-map { min-height: 320px; }
  .management-grid { grid-template-columns: 1fr; }
  .process-steps { margin-left: 0; max-width: 100%; align-self: center; }
  .footer-main { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-intro { padding: 4rem 0 3rem; }
  .about-reason-card { padding: 0.6rem 0.5rem; overflow: hidden; }
  .about-reason-card img { height: 3.5vw; margin-bottom: 0.3rem; }
  .about-reason-card h3 { font-size: 1.6vw; margin-bottom: 0.15rem; }
  .about-reason-card p { font-size: 1.3vw; line-height: 1.4; }
}


@media (max-width: 768px) {
  .navbar { padding: 2.5rem 1.5rem; }

  /* ── Fullscreen menu — mobile ── */
  .fullscreen-menu { flex-direction: column; overflow-y: auto; overflow-x: hidden; }

  .fsm-close { display: none; }

  .fsm-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green);
    padding: 1.1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
    order: 0;
  }
  .fsm-mobile-header .fsm-close {
    display: flex;
    position: static;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #ffffff;
  }
  .fsm-mobile-header .fsm-close:hover {
    background: #ffffff;
    color: var(--green);
    border-color: #ffffff;
  }
  .fsm-mobile-logo { display: block; height: 44px; width: auto; }
  .fsm-mh-spacer   { display: block; width: 38px; }

  .fsm-right {
    display: block;
    width: 100%;
    order: 1;
    padding: 0;
    background: var(--white);
  }
  .fsm-project-grid { padding: 0.75rem; gap: 6px; }
  .fsm-project-card { border-radius: 6px; }

  .fsm-left {
    width: 100%;
    order: 2;
    padding: 0 1.5rem 3rem;
    background: #ffffff;
  }
  .fsm-nav-group { margin: 0; width: 100%; }
  .fsm-nav ul { gap: 0; }
  .fsm-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: none;
    font-size: 1rem;
    color: #0D4746;
  }
  .fsm-nav a:hover,
  .fsm-nav a.active { color: #0D4746; opacity: 0.55; }
  .fsm-submenu-toggle { color: var(--green); }
  .fsm-submenu {
    background: rgba(13,71,70,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(247,223,107,0.25);
  }
  .fsm-submenu li a { color: rgba(255,255,255,0.65); }
  .fsm-submenu li a:hover,
  .fsm-submenu li a.active { color: #F7DF6B; }
  .fsm-footer-insta { margin-top: 2rem; color: #0D4746; opacity: 0.7; }
  .fsm-logo-wrap { flex: unset; padding-top: 2rem; background: #ffffff; }
  .fsm-footer-logo { width: 160px; height: auto; }

  #cards-section { padding: 2rem 1.5rem; overflow: hidden; align-items: center; }
  .cards-track {
    display: flex;
    width: 100%;
    height: 58vh;
    gap: 0.6875rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .rolex-card { flex: 0 0 75%; height: 58vh; max-height: none; border-radius: 10px; }
  .rolex-card-title { font-size: 1.6rem; }
  .cards-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    cursor: pointer;
  }
  .cards-nav-btn svg { width: 20px; height: 20px; }
  .cards-nav-btn { transition: background 0.25s, border-color 0.25s, transform 0.25s; }
  .cards-nav-btn:hover { background: #fff; border-color: #fff; color: #2e7d32; transform: translateY(-50%) scale(1.1); }
  .cards-nav-prev { left: 0.5rem; display: none; }
  .cards-nav-next { right: 0.5rem; display: none; }
  #hero-pin { height: 250vh; }

  .why-features-grid { grid-template-columns: repeat(2, 1fr); }

  .slide-card { flex: 0 0 100%; }

  .tarihce-carousel { gap: 1rem; }
  .tarihce-arrow { width: 40px; height: 40px; flex-shrink: 0; }
  .tarihce-arrow svg { width: 16px; height: 16px; }

  .tarihce-body .tab-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: absolute;
  }
  .tab-year { font-size: 3rem; }

  .taahhutler-grid { grid-template-columns: repeat(2, 1fr); }
  .taahhutler-grid--single { grid-template-columns: minmax(0, 80vw); }
  .diger-grid { grid-template-columns: 1fr; }

  .nav-insta span { display: none; }
  .nav-icon-btn span { display: none; }
  .hero-title { font-size: clamp(1.8rem, 8.5vw, 3rem); white-space: nowrap; }
  .hero-eyebrow { font-size: clamp(1.6rem, 7.5vw, 2.6rem); }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.8rem); white-space: nowrap; }
  .hero-eyebrow { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .nav-logo img { height: 52px; }
  .why-features-grid { grid-template-columns: 1fr; }
  .management-card-img { height: 300px; }
  .insta-grid {
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 1.25rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .insta-grid::-webkit-scrollbar { display: none; }
  .insta-img-link {
    width: 72vw;
    height: 72vw;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
}

/* ============================================================
   PROJE DETAY SAYFASI
============================================================ */
.proje-hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proje-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.2) 100%);
}
.proje-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
}
.proje-hero-firma {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
}
.proje-hero-baslik {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.proje-hero-alt {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

.proje-content-bg {
  background-image: url('../public/images/ortak/architectural.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.proje-content-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  pointer-events: none;
}
.proje-hakkinda {
  padding: 7rem 2rem 3rem;
  background: transparent;
  position: relative;
}
.proje-hakkinda-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.proje-hakkinda h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 0;
}
.proje-hakkinda p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
}
.proje-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e0e8e8;
  border: 1px solid #e0e8e8;
  margin-top: 3rem;
}
.proje-info-item {
  background: #fff;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.proje-info-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0D4746;
  opacity: 0.7;
}
.proje-info-value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0D4746;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .proje-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .proje-info-grid { grid-template-columns: 1fr; }
  .proje-info-item { padding: 1.25rem 1.5rem; }
}

.proje-galeri {
  background: transparent;
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 1;
}
.proje-galeri-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}
.proje-galeri-viewport {
  overflow: hidden;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.proje-galeri-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.proje-galeri-item {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}
.proje-galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.proje-galeri-item:hover img { transform: scale(1.05); }

/* Galeri Lightbox */
.galeri-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.galeri-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.galeri-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
.galeri-lb-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.galeri-lb-close:hover { opacity: 1; }
.galeri-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #0D4746;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeri-lb-prev { left: 1.5rem; }
.galeri-lb-next { right: 1.5rem; }
.galeri-lb-nav svg { width: 80%; height: 80%; }

.proje-lokasyon {
  background: #0D4746;
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}
.proje-lokasyon-bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0.35;
  pointer-events: none;
}
.proje-lokasyon-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.proje-lokasyon-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.proje-lokasyon-map {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .proje-galeri-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .proje-galeri-grid { grid-template-columns: 1fr; }
  .proje-lokasyon-map { height: 280px; }
}


@media (max-width: 1024px) {
  .neden-icerik {
    max-width: 52%;
    padding: 2rem 1.5rem 2rem 2.5rem;
  }
  .neden-metin {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .neden-logo {
    height: 50px;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .neden-icerik {
    max-width: 60%;
    padding: 1.5rem 1rem 1.5rem 1.5rem;
  }
  .neden-metin {
    font-size: 0.72rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }
  .neden-logo {
    height: 40px;
    margin-top: 0.75rem;
  }
  .neden-banner {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .neden-icerik {
    max-width: 68%;
    padding: 1.2rem 0.75rem 1.2rem 1.2rem;
  }
  .neden-metin {
    font-size: 0.65rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
  }
  .neden-logo {
    height: 32px;
    margin-top: 0.5rem;
  }
  .neden-banner {
    min-height: 280px;
  }
}

/* ============================================================
   ARAMA OVERLAY
   ============================================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 35, 34, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 1.5rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow-y: auto;
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay-close {
  position: fixed;
  top: 1.25rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10001;
}
.search-overlay-close:hover { color: #fff; }

.search-input-wrap {
  width: 100%;
  max-width: 680px;
  position: relative;
  margin-bottom: 2.5rem;
}
.search-input-wrap svg {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-input:focus {
  border-color: #F7DF6B;
  background: rgba(255,255,255,0.1);
}

.search-results {
  width: 100%;
  max-width: 680px;
}
.search-results-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s;
  cursor: pointer;
  border: 1px solid transparent;
}
.search-result-item:hover,
.search-result-item.focused {
  background: rgba(247,223,107,0.08);
  border-color: rgba(247,223,107,0.2);
}
.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F7DF6B;
}
.search-result-body {
  flex: 1;
  min-width: 0;
}
.search-result-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F7DF6B;
  opacity: 0.7;
  flex-shrink: 0;
}
.search-empty {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 2rem 0;
}
