/* ═══════════════════════════════════════════════════
   DEKA LIFE GROUP — Main CSS  (Biva-inspired layout)
═══════════════════════════════════════════════════ */

/* ════════════════════════════════════════
   LOGO INTRO — Sinematik giriş
════════════════════════════════════════ */
#logoIntro {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity;
}
#logoIntro.intro-hiding { opacity: 0; pointer-events: none; }
#logoIntroImg {
  height: 220px;
  opacity: 0;
  animation: introFadeIn 0.8s 0.3s ease forwards;
  will-change: transform, opacity;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease;
  transform-origin: center center;
}
#logoIntroBar {
  width: 0; height: 1px; background: var(--gold);
  animation: introBar 4.4s 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes introFadeIn { to { opacity: 1; } }
@keyframes introBar { to { width: 220px; } }

/* ════════════════════════════════════════
   SECTION REVEAL — Scroll animasyonu
════════════════════════════════════════ */
.section-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
              transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
:root {
  --gold:    #C9A84C;
  --gold-lt: #E8C96A;
  --gold-dk: #A8832A;
  --black:   #07101e;   /* lacivert-antrasit siyah */
  --dark:    #0c1726;   /* ana arka plan */
  --dark-2:  #122035;   /* kart / panel */
  --dark-3:  #1a2d46;   /* vurgu paneller */
  --white:   #ffffff;
  --text-lt: #8a9ab5;
  --nav-h:   80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--dark); color: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; font-weight: 600; }

/* ════════════════════════════════════════
   NAVBAR — Hamburger only (biva style)
════════════════════════════════════════ */
.main-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(7,16,30,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  transition: background 0.35s, box-shadow 0.35s;
}
.main-navbar.scrolled {
  background: rgba(7,16,30,0.97);
  box-shadow: 0 2px 32px rgba(0,0,0,0.6);
}
.navbar-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px;
}
.navbar-brand { display: flex; align-items: center; }
.navbar-brand img.navbar-logo { height: 68px; }

.navbar-right { display: flex; align-items: center; gap: 20px; }
.lang-switcher { display: flex; align-items: center; gap: 7px; }
.lang-btn { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); cursor: pointer; transition: color 0.2s; }
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.lang-sep { color: rgba(255,255,255,0.15); font-size: 0.7rem; }

/* Hamburger button */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer; padding: 10px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 26px; height: 1.5px; background: rgba(255,255,255,0.8);
  transition: transform 0.35s, opacity 0.35s, width 0.35s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .navbar-inner { padding: 0 20px; }
  .navbar-brand img.navbar-logo { height: 52px; }
}

/* ════════════════════════════════════════
   FULLSCREEN MENU OVERLAY
════════════════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(7,16,30,0.98);
  display: flex; align-items: stretch;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1), visibility 0.45s;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.menu-overlay__close {
  position: absolute; top: 24px; right: 32px;
  width: 48px; height: 48px; background: none; border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; z-index: 1;
}
.menu-overlay__close:hover { border-color: var(--gold); color: var(--gold); }

.menu-overlay__inner {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 80px 10vw; width: 100%;
}

.menu-overlay__nav {
  display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 60px;
}
.menu-overlay__link {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.45); font-weight: 600; line-height: 1.2;
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-block; letter-spacing: 0.01em;
}
.menu-overlay__link:hover { color: var(--white); letter-spacing: 0.04em; }

.menu-overlay__footer {
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; width: 100%;
}
.menu-overlay__contact-item {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.menu-overlay__contact-item:hover { color: var(--gold); }
.menu-overlay__contact-item i { color: var(--gold); }
.menu-overlay__social { display: flex; gap: 12px; }
.menu-overlay__social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.9rem; transition: all 0.2s;
}
.menu-overlay__social a:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════
   VIDEO MODAL
════════════════════════════════════════ */
.video-modal {
  position: fixed; inset: 0; z-index: 3000; background: rgba(4,10,20,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal__close {
  position: absolute; top: 20px; right: 24px;
  width: 48px; height: 48px; background: none; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.video-modal__close:hover { border-color: var(--gold); color: var(--gold); }
.video-modal__frame {
  width: 90vw; max-width: 1100px;
  position: relative; padding-bottom: 50.625%; /* 90vw × 9/16 */
  height: 0; overflow: hidden;
}
.video-modal__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ════════════════════════════════════════
   HOMEPAGE — Hero Slider (biva style)
════════════════════════════════════════ */
.home-wrapper { padding-top: var(--nav-h); }

.home-hero {
  display: flex;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* LEFT: media panel */
.home-hero__media {
  width: 60%;
  position: relative;
  overflow: hidden;
  background: var(--black);
  flex-shrink: 0;
}
.home-hero__media-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transition: opacity 0.6s;
}
.home-hero__media video,
.home-hero__media iframe.hero-video-frame {
  position: absolute; top: 50%; left: 50%;
  width: 180%; height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none;
}
.home-hero__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 100%);
}
.home-hero__media-logo {
  position: absolute; bottom: 36px; left: 36px; z-index: 2;
  opacity: 0.9;
}
.home-hero__media-logo img { height: 52px; filter: brightness(10); }

/* Hero play button */
.hero-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3; width: 72px; height: 72px;
  background: rgba(201,168,76,0.18); border: 2px solid var(--gold);
  color: var(--white); font-size: 1.8rem; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.hero-play-btn:hover { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }
.hero-play-btn i { margin-left: 4px; }

/* RIGHT: project info slider */
.home-hero__slides {
  width: 40%;
  height: calc(100vh - var(--nav-h));
  background: var(--dark-2);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.05);
}

/* Sağ panel arka planı — Swiper'dan bağımsız, tam doldurur */
.right-panel-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.82);
  transition: opacity 0.5s ease;
  z-index: 0;
}
.right-panel-bg--next {
  opacity: 0;
  z-index: 1;
}

/* Hero Swiper — şeffaf, sadece içerik katmanı */
.home-hero-swiper {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  position: relative;
  z-index: 2;
  background: transparent;
}
.home-hero-swiper .swiper-wrapper { height: 100%; }
.home-hero-swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
}
.home-hero-swiper .slide-gradient {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(4,10,22,0.92) 0%, rgba(4,10,22,0.1) 55%, transparent 100%);
}
.home-hero-swiper .slide-content {
  position: relative;
  z-index: 2;
  padding: 48px 44px;
}
.home-hero-slide__cat {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.home-hero-slide__cat::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.home-hero-slide__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--white);
  font-weight: 700; line-height: 1.15; margin-bottom: 12px;
}
.home-hero-slide__desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 28px; max-width: 320px;
}
.home-hero-slide__btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 12px 22px;
  transition: background 0.25s, color 0.25s; align-self: flex-start;
}
.home-hero-slide__btn:hover { background: var(--gold); color: var(--dark); }
.home-hero-nav {
  display: flex; align-items: center; padding: 16px 44px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 12px; justify-content: space-between;
  position: relative; z-index: 3; flex-shrink: 0;
}
.home-hero-nav-btns { display: flex; gap: 8px; }
.hero-prev, .hero-next {
  width: 38px; height: 38px; background: transparent;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.hero-prev:hover, .hero-next:hover { border-color: var(--gold); color: var(--gold); }
.hero-pagination { display: flex; gap: 6px; align-items: center; }
.hero-pag-dot {
  width: 20px; height: 2px; background: rgba(255,255,255,0.2);
  cursor: pointer; transition: background 0.3s, width 0.3s;
}
.hero-pag-dot.active { background: var(--gold); width: 32px; }

/* ── Tablet ── */
@media (max-width: 991px) {
  .home-hero { flex-direction: column; height: auto; }
  .home-hero__media { width: 100%; height: 55vw; min-height: 280px; }
  .home-hero__slides { width: 100%; height: 60vw; min-height: 320px; }
  .home-hero-swiper .slide-content { padding: 32px 28px; }
  .home-hero-nav { padding: 14px 24px; }
}

/* ── Mobile: medya paneli full, slides üstüne overlay ── */
@media (max-width: 767px) {
  .home-hero {
    position: relative;
    height: 100vh;
    flex-direction: row;
  }
  /* Sol medya paneli tam ekran */
  .home-hero__media {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }
  /* Mobilde resim gizle — video veya düz renk */
  .home-hero__media-bg { display: none; }
  .home-hero__media-logo img { height: 36px; }

  /* Sağ panel: medyanın üstüne şeffaf overlay */
  .home-hero__slides {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    border-left: none !important;
    z-index: 2;
  }
  /* Slide'ların kendi arka plan resmini gizle (sol panel kullanılıyor) */
  .home-hero-swiper .slide-bg { display: none; }
  .home-hero-swiper .slide-gradient {
    background: linear-gradient(to top, rgba(4,10,22,0.92) 0%, rgba(4,10,22,0.1) 60%, transparent 100%);
  }
  .home-hero-swiper .slide-content { padding: 24px 22px 20px; }
  .home-hero-slide__title { font-size: 1.25rem; }
  .home-hero-slide__desc { display: none; }
  .home-hero-nav {
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 10px 20px;
  }
}

/* ════════════════════════════════════════
   HOMEPAGE — Project Sections (alternating)
════════════════════════════════════════ */
.proj-section {
  display: flex;
  min-height: 100vh;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.proj-section--alt { flex-direction: row-reverse; }

/* Brand / Info Panel */
.proj-section__brand {
  width: 35%;
  flex-shrink: 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.proj-section__brand-bg {
  position: absolute; inset: 0;
  background: var(--dark-3) center/cover no-repeat;
}
.proj-section__brand-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 100%);
}
.proj-section__brand-content {
  position: relative; z-index: 2;
  height: 100%; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 48px 44px;
}
.proj-section__eyebrow {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.proj-section__eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.proj-section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem); color: var(--white);
  font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.proj-section__desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.75; margin-bottom: 28px; max-width: 320px;
}
.proj-section__cta {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 12px 22px;
  transition: background 0.25s, color 0.25s; align-self: flex-start;
}
.proj-section__cta:hover { background: var(--gold); color: var(--dark); }

/* Section video background */
.section-video-frame {
  position: absolute; top: 50%; left: 50%;
  width: 200%; height: 200%;
  transform: translate(-50%, -50%);
  pointer-events: none; border: none; z-index: 0;
}
/* Section play button */
.section-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3; width: 64px; height: 64px;
  background: rgba(201,168,76,0.15); border: 2px solid var(--gold);
  color: var(--white); font-size: 1.6rem; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.section-play-btn:hover { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }
.section-play-btn i { margin-left: 3px; }

/* Grid side */
.proj-section__grid { flex: 1; min-width: 0; overflow: hidden; }
.proj-section__grid-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.proj-section__grid-header span {
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 991px) {
  .proj-section, .proj-section--alt { flex-direction: column; min-height: auto; }
  .proj-section__brand { width: 100%; position: relative; top: auto; height: 52vw; min-height: 240px; }
  .proj-section__brand-content { padding: 28px 24px; }
}

/* ════════════════════════════════════════
   PROJECT CARDS — Gallery / Frame style
════════════════════════════════════════ */
.proj-grid {
  display: grid;
  /* columns set via inline style (repeat(N,1fr)) for dynamic count */
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: rgba(255,255,255,0.08);
  padding: 0;
}

/* Mobile overrides beat inline styles */
@media (max-width: 991px) {
  .proj-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 767px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 479px) {
  .proj-grid { grid-template-columns: 1fr !important; }
}

.proj-card {
  display: block; position: relative;
  aspect-ratio: 2/3; overflow: hidden;
  background: var(--dark-3);
  border: 3px solid rgba(255,255,255,0.88);
  outline: 1px solid rgba(255,255,255,0.18);
  outline-offset: 3px;
  transition: border-color 0.35s, outline-color 0.35s;
}
.proj-card::before {
  content: '';
  position: absolute; inset: 5px; z-index: 2;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
  transition: border-color 0.35s;
}
.proj-card:hover { border-color: #ffffff; }
.proj-card:hover::before { border-color: rgba(255,255,255,0.35); }

.proj-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(40%) brightness(0.75);
  transition: filter 0.55s, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.proj-card:hover img { filter: grayscale(0%) brightness(0.95); transform: scale(1.05); }
.proj-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(4,10,22,0.92) 0%, rgba(4,10,22,0.25) 55%, transparent 100%);
  transition: background 0.4s;
}
.proj-card:hover .proj-card__overlay {
  background: linear-gradient(to top, rgba(4,10,22,0.95) 0%, rgba(4,10,22,0.4) 65%, transparent 100%);
}
.proj-card__info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 48px 20px 22px;
  background: linear-gradient(to top, rgba(4,10,22,0.97) 0%, rgba(4,10,22,0.7) 55%, transparent 100%);
}
.proj-card__cat {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px;
}
.proj-card__title {
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  color: var(--white); font-weight: 700;
  line-height: 1.2; margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}
.proj-card__incele {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark); background: var(--gold);
  padding: 8px 16px;
  opacity: 1; transform: translateY(0);
  transition: background 0.25s;
}
.proj-card:hover .proj-card__incele { background: var(--gold-lt); }
/* Small card variant — related projects on detail page */
.proj-card--sm { aspect-ratio: 3/2 !important; }
.proj-card--sm .proj-card__title { font-size: 0.7rem; margin-bottom: 6px; }
.proj-grid--related { gap: 3px; background: none; padding: 0; }

.proj-card__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,0.08);
}

/* ── HOMEPAGE STATS ── */
.home-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.home-stat {
  padding: 44px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.home-stat:last-child { border-right: none; }
.home-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--gold);
  font-weight: 700; display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.home-stat-plus { font-size: 1.4rem; }
.home-stat-label { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 10px; }
@media (max-width: 767px) {
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .home-stat:nth-child(2) { border-right: none; }
}

/* ── HOMEPAGE NEWS ── */
.home-news { border-top: 1px solid rgba(255,255,255,0.06); }
.home-news-header {
  padding: 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.home-news-header h3 {
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
}
.home-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 767px) { .home-news-grid { grid-template-columns: 1fr; } }
.home-news-card {
  display: block; color: var(--white); padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.2s;
}
.home-news-card:last-child { border-right: none; }
.home-news-card:hover { background: rgba(255,255,255,0.03); color: var(--white); }
.home-news-img { aspect-ratio: 16/9; overflow: hidden; background: var(--dark-3); margin-bottom: 16px; }
.home-news-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(40%); transition: filter 0.4s; }
.home-news-card:hover .home-news-img img { filter: grayscale(0%); }
.home-news-date { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
.home-news-title { font-size: 0.88rem; color: var(--white); line-height: 1.45; font-family: 'Playfair Display', serif; }

/* ── HOME CTA ── */
.home-cta { border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 20px; text-align: center; }
.home-cta h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: var(--white); margin-bottom: 12px; }
.home-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 32px; }

/* ════════════════════════════════════════
   INNER PAGES
════════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); background: var(--dark); min-height: 100vh; }
.projects-page { padding-top: var(--nav-h); background: var(--dark); min-height: 100vh; }
.section-py { padding: 80px 0; }

/* Page Header */
.page-header {
  position: relative; min-height: 200px;
  display: flex; align-items: flex-end;
  background: var(--black) center/cover no-repeat;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-header--sm { min-height: 160px; }
.page-header__overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 100%); }
.page-header__content { position: relative; z-index: 2; padding-top: 36px; }
.page-header__title { font-size: clamp(1.6rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 10px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--gold); font-size: 0.78rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* Filter bar (projects list) */
.home-right-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--dark-2);
  position: sticky; top: var(--nav-h); z-index: 10;
}
.home-right-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.home-rtab {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  padding: 7px 14px; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.2s;
}
.home-rtab:hover, .home-rtab.active { color: var(--gold); border-color: var(--gold); }

/* ── Project Detail ── */
.proj-detail-hero { position: relative; height: 70vh; overflow: hidden; background: var(--black); }
.proj-detail-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.proj-detail-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%); }
.proj-detail-hero__title {
  position: absolute; bottom: 48px; left: 0; right: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem); color: var(--white); font-weight: 700;
}
.proj-detail-wrap { display: flex; border-top: 1px solid rgba(255,255,255,0.06); }
.proj-detail-sidebar {
  width: 300px; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: var(--nav-h); height: fit-content; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.proj-sidebar-inner { padding: 36px 28px; }
.proj-sidebar-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.proj-info-list { list-style: none; padding: 0; }
.proj-info-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.proj-info-list .lbl { display: block; font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
.proj-info-list .val { color: var(--white); font-size: 0.85rem; }
.proj-detail-main { flex: 1; min-width: 0; padding: 40px; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; margin-bottom: 4px; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ── Project Gallery (all images visible) ── */
.proj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; margin-bottom: 40px; }
.proj-gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--dark-3);
}
.proj-gallery-item:first-child { grid-column: 1 / -1; }
.proj-gallery-item:first-child img { aspect-ratio: 16/9; }
.proj-gallery-item:not(:first-child) img { aspect-ratio: 4/3; }
.proj-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.88);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.35s;
}
.proj-gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
.proj-gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(4,10,22,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-size: 1.6rem; color: rgba(255,255,255,0.9);
}
.proj-gallery-item:hover .proj-gallery-item__overlay { opacity: 1; }

/* ── Lightbox ── */
.proj-lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(4,10,22,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.proj-lightbox.open { opacity: 1; visibility: visible; }
.proj-lightbox__img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: 88vw; max-height: 86vh;
}
.proj-lightbox__img-wrap img {
  max-width: 88vw; max-height: 86vh;
  object-fit: contain;
  transition: opacity 0.2s;
}
.proj-lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px; background: none;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; z-index: 2;
}
.proj-lightbox__prev, .proj-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; background: none;
  border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s; z-index: 2;
}
.proj-lightbox__prev { left: 20px; }
.proj-lightbox__next { right: 20px; }
.proj-lightbox__close:hover,
.proj-lightbox__prev:hover,
.proj-lightbox__next:hover { border-color: var(--gold); color: var(--gold); }
.proj-lightbox__counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.proj-lightbox__thumb-strip {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; max-width: 80vw; overflow-x: auto;
}
.proj-lightbox__thumb {
  width: 52px; height: 36px; object-fit: cover; cursor: pointer;
  opacity: 0.4; transition: opacity 0.2s; flex-shrink: 0;
  border: 1px solid transparent;
}
.proj-lightbox__thumb.active { opacity: 1; border-color: var(--gold); }
@media (max-width: 767px) {
  .proj-lightbox__prev { left: 8px; width: 40px; height: 40px; }
  .proj-lightbox__next { right: 8px; width: 40px; height: 40px; }
  .proj-lightbox__thumb-strip { display: none; }
}
.proj-detail-desc h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 16px; }
.rich-content { font-size: 0.9rem; line-height: 1.9; color: rgba(255,255,255,0.6); }
.rich-content h2,.rich-content h3 { color: var(--white); margin: 24px 0 12px; }
.rich-content p { margin-bottom: 14px; }
.rich-content ul,.rich-content ol { padding-left: 20px; margin-bottom: 14px; }

/* ════════════════════════════════════════
   KÜNYE Section — Biva style
════════════════════════════════════════ */
.kuyne-section {
  margin: 0 -40px -40px;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
}
.kuyne-section__header {
  padding: 36px 40px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 16px;
}
.kuyne-section__header::before {
  content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.kuyne-section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 6px;
  text-transform: uppercase; color: var(--gold);
}
.kuyne-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.kuyne-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.2s;
}
.kuyne-item:hover { background: var(--dark-2); }
.kuyne-item--full { grid-column: span 2; }
.kuyne-item--wide { grid-column: span 4; }
.kuyne-item__label {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); opacity: 0.75;
}
.kuyne-item__value {
  font-size: 0.95rem; color: var(--white); line-height: 1.6;
  font-family: 'Playfair Display', serif;
}
@media (max-width: 991px) {
  .kuyne-grid { grid-template-columns: repeat(2, 1fr); }
  .kuyne-item--full { grid-column: span 2; }
  .kuyne-item--wide { grid-column: span 2; }
  .kuyne-section { margin: 0 -24px -24px; }
  .kuyne-section__header { padding: 28px 24px 20px; }
  .kuyne-item { padding: 20px 24px; }
}
@media (max-width: 576px) {
  .kuyne-grid { grid-template-columns: 1fr; }
  .kuyne-item--full, .kuyne-item--wide { grid-column: span 1; }
}

/* Swiper */
.swiper { overflow: hidden; }
.swiper-button-next,.swiper-button-prev { color: var(--gold) !important; }
.swiper-button-next::after,.swiper-button-prev::after { font-size: 16px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── News Pages ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); }
@media (max-width: 991px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .news-grid { grid-template-columns: 1fr; } }
.news-card { display: block; color: var(--white); background: var(--dark); transition: background 0.2s; }
.news-card:hover { background: var(--dark-2); color: var(--white); }
.news-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--dark-3); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: filter 0.4s, transform 0.5s; }
.news-card:hover .news-card__img img { filter: grayscale(0%); transform: scale(1.04); }
.news-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: rgba(255,255,255,0.1); min-height: 180px; }
.news-card__body { padding: 20px; }
.news-card__date { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
.news-card__title { font-size: 0.95rem; color: var(--white); line-height: 1.4; margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.news-card__excerpt { font-size: 0.8rem; color: rgba(255,255,255,0.4); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Sidebar news */
.sidebar-box { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); padding: 24px; }
.sidebar-box__title { font-size: 0.6rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-news-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; color: var(--white); transition: color 0.2s; }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item:hover { color: var(--gold); }
.sidebar-news-item img { width: 68px; height: 52px; object-fit: cover; flex-shrink: 0; filter: grayscale(50%); }
.sidebar-news-date { font-size: 0.6rem; color: var(--gold); display: block; margin-bottom: 3px; }
.sidebar-news-item p { font-size: 0.8rem; margin: 0; line-height: 1.4; }

/* ── Form Notice (success / error) ── */
.form-notice {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; margin-bottom: 32px;
  border-left: 3px solid; position: relative;
  animation: noticeIn 0.45s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes noticeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-notice--success {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
}
.form-notice--error {
  background: rgba(239,68,68,0.07);
  border-color: #ef4444;
}
.form-notice > i {
  font-size: 1.4rem; flex-shrink: 0; margin-top: 2px;
}
.form-notice--success > i { color: var(--gold); }
.form-notice--error   > i { color: #ef4444; }
.form-notice strong {
  display: block; font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.form-notice p {
  margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.form-notice__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.25);
  font-size: 0.75rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.form-notice__close:hover { color: var(--white); }

/* ── Contact Page ── */
.contact-wrap { padding: 64px 0; }
.contact-form .form-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.contact-form .form-control { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.12); border-radius: 0; padding: 12px 0; color: var(--white); font-size: 0.9rem; transition: border-color 0.2s; }
.contact-form .form-control:focus { border-bottom-color: var(--gold); box-shadow: none; outline: none; background: transparent; color: var(--white); }
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.15); }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-info-icon { width: 40px; height: 40px; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.contact-info-item strong { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 4px; font-weight: 700; font-family: 'Inter', sans-serif; }
.contact-info-item p, .contact-info-item a { color: var(--white); font-size: 0.9rem; margin: 0; }
.map-container { overflow: hidden; margin-top: 28px; }
.map-container iframe { width: 100%; height: 260px; border: none; display: block; filter: grayscale(80%) brightness(0.8); }

/* ── Dynamic Page ── */
.page-content { padding: 64px 0; }
.page-content .rich-content { font-size: 0.95rem; }

/* ════════════════════════════════════════
   FOOTER — Redesigned
════════════════════════════════════════ */
.main-footer {
  background: #050d1a;   /* footer en koyu katman */
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-col {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.footer-col:last-child { border-right: none; }
.footer-logo { height: 56px; margin-bottom: 20px; }
.footer-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.28); line-height: 1.85;
  margin-bottom: 24px; max-width: 300px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 0.85rem; transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-family: 'Inter', sans-serif; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { font-size: 0.82rem; color: rgba(255,255,255,0.28); display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.28); line-height: 2; }
.footer-bottom {
  padding: 20px 40px; display: flex; align-items: center; justify-content: center;
}
.footer-bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.15); margin: 0; letter-spacing: 1px; }

@media (max-width: 1199px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer-col:nth-child(2n) { border-right: none; }
}
@media (max-width: 767px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none; padding: 32px 24px; }
  .footer-bottom { padding: 16px 24px; }
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; background: #25D366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s;
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }

/* ════════════════════════════════════════
   BUTTONS (reusable)
════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 28px; border: none; cursor: pointer; transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); color: var(--dark); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 13px 28px; transition: background 0.2s, color 0.2s; cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-contact {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 28px; transition: background 0.2s;
}
.btn-contact:hover { background: var(--gold-lt); color: var(--dark); }

/* ── Responsive project detail ── */
@media (max-width: 991px) {
  .proj-detail-wrap { flex-direction: column; }
  .proj-detail-sidebar { width: 100%; position: static; max-height: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .proj-detail-main { padding: 24px 16px; }
  .proj-gallery { grid-template-columns: 1fr; }
  .proj-gallery-item:first-child { grid-column: 1; }
}
