/* ========================================
   TOLYAP LOADING SCREEN
======================================== */

.tolyap-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #232d10;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  visibility: visible;
}

.tolyap-loader.fade-out {
  opacity: 0;
  transform: translateY(-100%);
}

.tolyap-loader.hidden {
  display: none;
}

.tolyap-loader__content {
  text-align: center;
  animation: logoContainer 1s ease forwards;
}

.tolyap-loader__logo {
  max-width: 700px;
  width: 80%;
  height: auto;
  opacity: 0;
  animation: logoFadeIn 1.2s ease 0.3s forwards;
}

/* Logo animasyonları */
@keyframes logoContainer {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Sayfa yüklenirken overflow gizle */
body.loading {
  overflow: hidden;
}

/* Mobil için logo boyutu */
@media (max-width: 768px) {
  .tolyap-loader__logo {
    max-width: 450px;
  }
}

/* ========================================
   FONT TANIMLARI - CORMORANT & LATO
======================================== */

/* Başlıklar için - Cormorant Garamond Bold */
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Paragraflar ve diğer metinler için - Lato Light */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

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

:root {
  --color-primary: #166583;
  --color-secondary: #0d101f;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #999999;
  --color-gray-dark: #666666;
  --font-primary: "Lato", sans-serif;
  --font-heading: "Cormorant", serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  margin: 0; /* ✅ Eklendi */
  padding: 0; /* ✅ Eklendi */
  width: 100%; /* ✅ Eklendi */
  height: 100%; /* ✅ Eklendi */
  overflow-x: hidden; /* ✅ Eklendi */
}

body {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0; /* ✅ Eklendi */
  padding: 0; /* ✅ Eklendi */
  width: 100%; /* ✅ Eklendi */
  min-height: 100vh; /* ✅ Eklendi */
}

body.preload * {
  transition: none !important;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
}

.skip-link {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
}

/* ========================================
   2. TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}

p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.8;
  font-family: var(--font-primary);
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ========================================
   3. BUTTONS
======================================== */

.cb-btn-primary,
.cb-btn-secondary,
.cb-btn-link,
.cb-btn-website {
  display: inline-block;
  padding: 8px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-primary);
}

.cb-btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.cb-btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cb-btn-secondary {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.cb-btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.cb-btn-website {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cb-btn-website:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cb-btn-website svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.cb-btn-link {
  background: none;
  border: none;
  color: var(--color-primary);
  padding: 0;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
}

.cb-btn-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.cb-btn-link:hover::after {
  width: 100%;
}

.cb-btn-large {
  padding: 8px 40px;
  font-size: 0.8rem;
}

/* Ana Sayfa Proje Butonları Container */
.project-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-buttons {
    flex-direction: column;
    width: 100%;
  }

  .project-buttons .cb-btn-primary,
  .project-buttons .cb-btn-website {
    width: 100%;
  }
}

/* ========================================
   4. HEADER & NAVIGATION
======================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 45, 16, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(35, 45, 16, 0.98);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 40px;
  position: relative;
}

/* Nav Sections */
.nav-left,
.nav-right {
  display: flex;
  gap: 35px;
  align-items: center;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  white-space: nowrap;
  font-family: var(--font-heading);
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Nav Links */
.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Mega Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(35, 45, 16, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  z-index: 9998;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.dropdown-item:last-child {
  border-right: none;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.dropdown-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dropdown-item:hover .dropdown-item-image img {
  transform: scale(1.1);
}

.dropdown-item-text {
  padding: 30px 40px;
  text-align: center;
}

.dropdown-item-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.dropdown-item-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-family: var(--font-primary);
}

.dropdown-item-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 30px auto 0;
  overflow: hidden;
}

/* Nav Button */
.nav-btn {
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.nav-btn:hover {
  background: #ffffff;
  color: #0d101f;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px;
  height: calc(100vh - 80px);
  background: #0d101f;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  flex-direction: column;
  gap: 20px;
  z-index: 9998;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.mobile-menu a:hover {
  color: #166583;
  padding-left: 10px;
}

/* ========================================
   HERO SECTION FINAL FIX - Yazı Görünür + Spacing Düzeltildi
   (CSS dosyasının en altına ekleyin veya önceki fix'in yerine)
======================================== */

/* Ana hero container - mutlak yükseklik kontrolü */
.cb-hero-block {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: 100vh !important;
  overflow: hidden !important;
  margin: 0 !important;
  margin-bottom: 80px !important; /* Hero ile alt section arası boşluk */
  padding: 0 !important;
}

/* İçerik wrapper - yükseklik kontrolü */
.cb-hero-block__content--height-full {
  position: relative !important;
  height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important; /* hidden yerine visible - içerik görünsün */
}

/* KRİTİK: İçerik container - yazıların görünmesi için */
.cb-hero-block__content {
  position: relative !important;
  height: 100vh !important;
  max-height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important; /* Dikey ortalama */
  justify-content: center !important; /* Yatay ortalama */
  text-align: center !important;
  z-index: 10 !important; /* Yazı en üstte olmalı */
}

.cb-hero-block__content--height {
  height: 100vh !important;
  max-height: 100vh !important;
  z-index: 10 !important;
}

/* KRİTİK: Video container - fazla yükseklik almasını engelle */
.cb-hero-block__video-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  min-height: 100vh !important;
  z-index: 1 !important; /* Arka planda kalmalı */
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  transition: none !important;
}

/* KRİTİK: Background image - tam ekran sabit, arka planda */
.cb-hero-block__image {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  min-height: 100vh !important;
  z-index: 1 !important; /* Yazının arkasında kalmalı */
  margin: 0 !important;
  padding: 0 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

/* Gradient overlay - görselin üstünde ama yazının altında */
.cb-hero-block__background {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  max-height: 100vh !important;
  z-index: 2 !important; /* Görselin üstünde ama yazının altında */
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hero slogan - sağ alt köşe konumlandırma */
.cb-hero-block__title {
  position: absolute !important;
  bottom: 80px !important; /* Alttan boşluk */
  right: 60px !important; /* Sağdan boşluk */
  left: auto !important;
  top: auto !important;
  max-width: 600px !important; /* Maksimum genişlik */
  text-align: right !important; /* Sağa hizalı */
  padding: 0 !important;
  margin: 0 !important;
  z-index: 15 !important;
}

.cb-hero-block__title h1,
.cb-hero-block__title h4,
.cb-hero-block__title p,
.hero-slogan {
  position: relative !important;
  z-index: 15 !important;
  color: var(--color-white) !important;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5) !important; /* Okunabilirlik için */
}

/* Scroll indicator - en üstte görünsün */
.cb-hero-block__scroll {
  position: absolute !important;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 15 !important; /* En üst katman */
}

/* AOS animasyonları düzgün çalışsın */
.cb-hero-block [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero'dan sonraki section - uygun boşluk */
.cb-hero-block + section,
.cb-hero-block + div,
.cb-hero-block + * {
  margin-top: 0 !important;
  padding-top: 60px !important; /* Üstten boşluk */
}

/* İçerik container */
.cb-hero-block__content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Yazı başlığı (ESKİ STİL) */
.cb-hero-block__title h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--color-white);
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

/* Alt başlık (ESKİ STİL) */
.cb-hero-block__title h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--color-white);
  font-family: var(--font-heading);
  text-transform: uppercase;
}

/* Scroll göstergesi */
.cb-hero-block__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ========================================
   HERO SLOGAN - HARF HARF BELİRME
======================================== */

.hero-slogan {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-top: 20px;
  color: white;
  font-family: "Ephesis", cursive;
  font-style: normal;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: revealText 4s ease-out 2.5s forwards;
}

@keyframes revealText {
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Mobil - Tam Ortalama */
@media (max-width: 768px) {
  .cb-hero-block__title {
    position: absolute !important;
    bottom: 60px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important; /* Eksi ile ortalama */
    text-align: center !important;
    width: 90% !important;
    max-width: 90% !important;
    padding: 0 20px !important;
  }

  .hero-slogan {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
  .cb-hero-block__title {
    width: 85% !important;
    bottom: 40px !important;
  }

  .hero-slogan {
    font-size: 1.3rem !important;
    letter-spacing: 0.5px !important;
  }
}
/* ========================================
   LEVENT KORU EVLERİ - ORTADA BUTON
======================================== */

.levent-koru-center-cta {
  position: relative;
  background: linear-gradient(135deg, #3d9bb8 0%, #2c7a8f 100%);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

/* Dekoratif pattern */
.levent-koru-center-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.levent-koru-center-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.levent-koru-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.levent-koru-cta-content h3 {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.levent-koru-cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-family: var(--font-primary);
  font-weight: 300;
  letter-spacing: 1px;
}

/* Özel buton */
.cb-btn-special {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--color-white);
  color: #3d9bb8;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cb-btn-special:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #2c7a8f;
}

.cb-btn-special svg {
  transition: transform 0.3s ease;
}

.cb-btn-special:hover svg {
  transform: translateX(5px);
}

/* Mobil için */
@media (max-width: 768px) {
  .levent-koru-center-cta {
    padding: 60px 30px;
  }

  .levent-koru-cta-content h3 {
    font-size: 2rem;
  }

  .levent-koru-cta-content p {
    font-size: 1rem;
  }

  .cb-btn-special {
    padding: 15px 30px;
    font-size: 0.95rem;
  }
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
  .cb-hero-block {
    margin-bottom: 40px !important; /* Mobilde daha az boşluk */
  }

  .cb-hero-block,
  .cb-hero-block__content,
  .cb-hero-block__content--height-full,
  .cb-hero-block__video-container,
  .cb-hero-block__image,
  .cb-hero-block__background {
    height: 100vh !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
  }

  /* Mobilde fixed yerine absolute (performans) */
  .cb-hero-block__image {
    position: absolute !important;
    background-attachment: scroll !important;
  }

  .cb-hero-block__title {
    bottom: 40px !important;
    right: 20px !important;
    max-width: calc(100% - 40px) !important;
  }

  .cb-hero-block + section,
  .cb-hero-block + div,
  .cb-hero-block + * {
    padding-top: 40px !important;
  }
}

/* Tablet için */
@media (max-width: 1024px) {
  .cb-hero-block {
    margin-bottom: 60px !important;
  }

  .cb-hero-block + section,
  .cb-hero-block + div,
  .cb-hero-block + * {
    padding-top: 50px !important;
  }
}

/* iOS Safari için ek fix */
@supports (-webkit-touch-callout: none) {
  .cb-hero-block,
  .cb-hero-block__content,
  .cb-hero-block__content--height-full,
  .cb-hero-block__video-container,
  .cb-hero-block__image {
    height: 100vh !important;
    min-height: -webkit-fill-available !important;
  }
}

/* ========================================
   MOBİL HERO GÖRSEL DÜZELTMESİ
   (CSS dosyasının en altına ekleyin)
======================================== */

@media (max-width: 768px) {
  /* Mobilde 100vh zorlamasını kaldır - eski davranışa dön */
  .cb-hero-block {
    height: auto !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  .cb-hero-block__content--height-full {
    height: auto !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  .cb-hero-block__content {
    height: auto !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  .cb-hero-block__content--height {
    height: auto !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  /* Video container - eski davranışa dön */
  .cb-hero-block__video-container {
    height: 100% !important;
    min-height: 600px !important;
    max-height: none !important;
  }

  /* Background image - zoom sorununu çöz */
  .cb-hero-block__image {
    position: absolute !important;
    height: 100% !important;
    min-height: 600px !important;
    max-height: none !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: scroll !important;
  }

  /* Gradient overlay - eski davranışa dön */
  .cb-hero-block__background {
    height: 100% !important;
    min-height: 600px !important;
    max-height: none !important;
  }
}

/* Küçük mobil cihazlar için */
@media (max-width: 480px) {
  .cb-hero-block,
  .cb-hero-block__content--height-full,
  .cb-hero-block__content,
  .cb-hero-block__video-container,
  .cb-hero-block__image,
  .cb-hero-block__background {
    min-height: 500px !important;
  }
}
/* ========================================
   6. TEXT BLOCKS & SECTIONS
======================================== */

.cb-text-block {
  padding: 100px 20px;
  text-align: center;
}

.cb-text-block__content {
  max-width: 900px;
  margin: 0 auto;
}

.cb-text-block h6 {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.cb-text-block h2 {
  margin-bottom: 30px;
}

.cb-text-block h3 {
  margin-bottom: 40px;
}

.cb-text-block p {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  margin-bottom: 30px;
}

/* ========================================
   7. STATS SECTION
======================================== */

.cb-stats-section {
  padding: 80px 20px;
  background-color: var(--color-gray-light);
}

.cb-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cb-stat-item {
  padding: 30px;
}

.cb-stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1;
  font-family: var(--font-heading);
}

.cb-stat-label {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

/* ========================================
   8. TWO COLUMN LAYOUT
======================================== */

.cb-2-column {
  display: grid;
  grid-template-columns: 1fr; /* Tek sütun - alt alta */
}

.cb-2-column__block {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cb-2-column__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  transition: background 0.3s ease;
}

.cb-2-column__block:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

.cb-2-column__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  color: var(--color-white);
}

.cb-2-column__content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cb-2-column__content h4 em {
  font-style: italic;
  opacity: 0.8;
}

.cb-2-column__content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cb-2-column__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 300;
}

/* Background Images - Projeler için */
.cb-col-block-1 {
  background-image: url("../images/projects/project-1.jpg");
}

.cb-col-block-2 {
  background-image: url("../images/projects/project-2.jpg");
}

/* ========================================
   LEVENT KORU GÖRSELLERİ - HAREKETLİ EFEKT
======================================== */

/* Görsel zoom efekti için */
.cb-2-column__block {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.3s ease; /* Smooth geçiş */
}

/* Arka plan görseli - zoom efekti için */
.cb-2-column__block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit; /* Ana görsel */
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease; /* Yavaş zoom */
}

/* Hover - Görsel yakınlaşma */
.cb-2-column__block:hover::after {
  transform: scale(1.1); /* %10 zoom */
}

/* Dark overlay - z-index düzeltmesi */
.cb-2-column__block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  transition: background 0.3s ease;
}

.cb-2-column__block:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

/* İçerik - en üstte */
.cb-2-column__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  color: var(--color-white);
}

/* Mobil için - hafif zoom */
@media (max-width: 768px) {
  .cb-2-column__block:hover::after {
    transform: scale(1.05); /* Mobilde daha az zoom */
  }
}
/* ========================================
   PROJE İSİMLERİ - BÜYÜK HARF
======================================== */

/* Ana sayfa - Proje başlıkları */
.cb-2-column__content h3 {
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

/* Projeler sayfası - Proje kartları */
.project-card__title {
  text-transform: uppercase !important;
  letter-spacing: 1px;
}

/* Proje detay sayfası - Başlık */
.project-detail-hero h1 {
  text-transform: uppercase !important;
  letter-spacing: 1.5px;
}

/* Page hero başlıkları (eğer proje ismi varsa) */
.page-hero__content h1 {
  text-transform: uppercase !important;
  letter-spacing: 1.5px;
}

/* ========================================
   MISYON & VIZYON - MODERN KARTLAR
   (Mevcut .cb-2-column stillerini etkilemez)
======================================== */

.mission-vision-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-vision-card {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #0d4a5f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mission-vision-card:hover::before {
  transform: scaleX(1);
}

.mission-vision-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(22, 101, 131, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f0f7fa, #e3f2f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.4s ease;
}

.mission-vision-card:hover .card-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.mission-vision-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.mission-vision-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 30px;
  font-family: var(--font-primary);
  font-weight: 300;
}

.card-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  position: relative;
}

.card-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.card-link:hover {
  color: #0d4a5f;
  transform: translateX(5px);
}

.card-link:hover::after {
  width: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .mission-vision-section {
    padding: 80px 0;
  }

  .mission-vision-grid {
    gap: 30px;
  }

  .mission-vision-card {
    padding: 40px 30px;
  }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 60px 20px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mission-vision-card {
    padding: 40px 25px;
  }

  .mission-vision-card h3 {
    font-size: 1.5rem;
  }

  .mission-vision-card p {
    font-size: 1rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon svg {
    width: 50px;
    height: 50px;
  }
}

/* ========================================
   9. MEDIA BLOCK (Full Width)
======================================== */

.cb-media-block {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.redline--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.cb-media-block__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cb-media-block__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  transition: background 0.3s ease;
}

.cb-media-block__background:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

.cb-media-block__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}

.cb-media-block__content__title {
  max-width: 600px;
  color: var(--color-white);
}

.cb-media-block__content__title h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cb-media-block__content__title h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.cb-media-block__content__title p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 300;
}

.cb-media-block__content__link {
  margin-top: 30px;
}
/* MEDIA BLOCK PARALLAX / KAYMA TAMAMEN KAPAT */
.cb-media-block__background {
  background-attachment: scroll !important;
  transform: none !important;
  top: 0 !important;
}

/* ========================================
   MOBİL DÜZELTME - Media Block Görsel Kayması
   (CSS dosyasının en altına ekle)
======================================== */

@media (max-width: 768px) {
  /* Media block mobil düzeltme - görsel kaymasını engelle */
  .cb-media-block {
    min-height: 500px;
  }

  .cb-media-block__background {
    position: absolute !important;
    background-attachment: scroll !important;
    background-position: center !important;
    background-size: cover !important;
    height: 100% !important;
    max-height: none !important;
  }

  .cb-media-block__content {
    padding: 0 30px;
  }

  .cb-media-block__content__title h2 {
    font-size: 2rem;
  }

  .cb-media-block__content__title p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cb-media-block {
    min-height: 450px;
  }

  .cb-media-block__content {
    padding: 0 20px;
  }

  .cb-media-block__content__title h2 {
    font-size: 1.7rem;
  }
}
/* ========================================
   10. VALUES GRID
======================================== */

.cb-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cb-value-item {
  text-align: center;
  padding: 20px;
}

.cb-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
}

.cb-value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-family: var(--font-heading);
}

/* ========================================
   11. CTA SECTION
======================================== */

.cb-cta-section {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  padding: 100px 20px;
  text-align: center;
}

.cb-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cb-cta-content h2 {
  color: var(--color-white);
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.cb-cta-content p {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-family: var(--font-primary);
  font-weight: 300;
}

.cb-cta-buttons {
  display: flex;
  gap: 30px; /* 20px → 30px */
  justify-content: center;
  flex-wrap: wrap;
}

.cb-cta-buttons .cb-btn-primary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.cb-cta-buttons .cb-btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.cb-cta-buttons .cb-btn-secondary {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cb-cta-buttons .cb-btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ========================================
   12. FOOTER
======================================== */

.cb-footer {
  background-color: var(--color-secondary);
  color: #000;
  padding: 80px 0 0;
}

.cb-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.cb-footer__top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cb-footer__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-content: center;
  text-align: center;
}

.cb-footer__column h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #000;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.cb-footer__logo {
  margin-bottom: 25px;
}

.cb-footer__description {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  font-family: var(--font-primary);
}

.cb-footer__company-info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  max-width: 400px;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-weight: 400;
}

.cb-footer__contact-item {
  margin-bottom: 20px;
}

.cb-footer__contact-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
  font-family: var(--font-primary);
  font-weight: 700;
}

.cb-footer__contact-item p {
  font-size: 0.95rem;
  margin: 0;
  color: #333;
  font-family: var(--font-primary);
  font-weight: 400;
}

.cb-footer__contact-item a {
  color: #333;
  transition: var(--transition);
  text-decoration: none;
}

.cb-footer__contact-item a:hover {
  color: #000;
  font-weight: 600;
}

.cb-footer__social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cb-footer__social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cb-footer__social-links a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.cb-footer__bottom {
  padding: 30px 0;
}

.cb-footer__bottom .cb-footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  grid-template-columns: unset;
}

.cb-footer__copyright p {
  font-size: 0.9rem;
  margin: 0;
  color: #333;
  font-family: var(--font-primary);
  font-weight: 400;
}

.cb-footer__legal {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cb-footer__legal a {
  color: #333;
  transition: var(--transition);
  font-family: var(--font-primary);
  font-weight: 400;
  text-decoration: none;
}

.cb-footer__legal a:hover {
  color: #1a2518;
  font-weight: 600;
}

.cb-footer__legal .separator {
  color: #3d4e38;
}

.cb-footer__legal .separator {
  opacity: 0.3;
}

/* ========================================
   13. PAGE HERO (Alt Sayfalar için)
======================================== */

.page-hero {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 16, 31, 0.8) 0%,
    rgba(22, 101, 131, 0.7) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.page-hero__content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.page-hero__content p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: var(--font-primary);
}

/* ========================================
   14. PROJECTS PAGE
======================================== */

.projects-section {
  padding: 100px 20px;
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-gray-medium);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start; /* DEĞİŞTİRİLDİ: grid-auto-rows yerine */
}

.project-card {
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 3px solid transparent; /* Başlangıçta görünmez border */
  position: relative;
}
.project-card:hover {
  transform: none !important;
  border-color: #3d9bb8; /* Mavi border belirir */
  box-shadow: 0 15px 50px rgba(61, 155, 184, 0.25);
}

.project-card__image {
  position: relative;
  width: 100%;
  height: 280px; /* 300px'den azaltıldı */
  overflow: hidden;
  flex-shrink: 0;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* 0.5s → 0.6s (daha yavaş zoom) */
}

.project-card:hover .project-card__image img {
  transform: scale(1.02) !important;
  filter: brightness(1.05) !important;
}
.project-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card__overlay {
  opacity: 0.7;
}
.project-card__status {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 20px;
  font-family: var(--font-primary);
}

.project-card__status.tamamlandı {
  background-color: #22c55e;
}

.project-card__status.devam-ediyor {
  background-color: #f59e0b;
}

.project-card__status.planlama-aşamasında {
  background-color: #6366f1;
}

.project-card__content {
  padding: 25px; /* 30px'den azaltıldı */
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card__type {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px; /* 10px'den azaltıldı */
  font-family: var(--font-primary);
  flex-shrink: 0;
}

.project-card__title {
  font-size: 1.5rem;
  margin-bottom: 8px; /* 10px'den azaltıldı */
  color: var(--color-secondary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1.3; /* EKLENDI */
}

.project-card__location {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  margin-bottom: 12px; /* 15px'den azaltıldı */
  font-family: var(--font-primary);
  font-weight: 300;
  flex-shrink: 0;
}

.project-card__description {
  font-size: 0.95rem;
  line-height: 1.6; /* 1.7'den azaltıldı */
  color: var(--color-gray-dark);
  margin-bottom: 15px; /* 20px'den azaltıldı */
  font-family: var(--font-primary);
  font-weight: 300;
  flex: 1;
  min-height: 40px; /* 50px'den azaltıldı */
}

.project-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px; /* 15px'den azaltıldı */
  flex-shrink: 0;
}

.feature-tag {
  padding: 6px 12px;
  font-size: 0.75rem;
  background-color: var(--color-gray-light);
  color: var(--color-secondary);
  border-radius: 4px;
  font-weight: 300;
  font-family: var(--font-primary);
}

.project-card__details {
  padding: 12px 0; /* 15px'den azaltıldı */
  border-top: 1px solid var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-light);
  margin-bottom: 12px; /* 15px'den azaltıldı */
  flex-shrink: 0;
}

.detail-item {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.5; /* EKLENDI */
}

.detail-item strong {
  color: var(--color-secondary);
}

/* PROJE KART BUTONLARI */
.project-card__actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 0; /* 15px kaldırıldı */
  flex-shrink: 0;
}

.project-card__btn,
.project-card__btn-alt {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.project-card__btn {
  display: inline-block;
  text-decoration: none;
}

/* ========================================
   PROJE KARTLARI - HAREKET DURDURMA (OVERRIDE)
======================================== */

.project-card:hover {
  transform: none !important; /* Kesinlikle hareket etmez */
  box-shadow: 0 15px 50px rgba(61, 155, 184, 0.25) !important;
}

.project-card:hover .project-card__image img {
  transform: scale(1.02) !important;
  filter: brightness(1.05) !important;
}
/* ========================================
   15. ABOUT PAGE
======================================== */

.about-intro-section {
  padding: 100px 20px 60px;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-gray-dark);
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 300;
}

.about-stats {
  background-color: var(--color-white);
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.05);
}

/* İLKELERİMİZ SECTION - YENİ TASARIM */
.values-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), #0d4a5f);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), #0d4a5f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(22, 101, 131, 0.15);
  border-color: var(--color-primary);
}

.value-icon {
  display: none !important;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: var(--color-primary);
}

.value-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin: 0;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 300;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .values-section {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .value-card {
    padding: 40px 30px;
  }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
  .values-section {
    padding: 60px 15px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .value-card p {
    font-size: 0.95rem;
  }
}

.mission-vision-section {
  padding: 100px 20px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-card {
  padding: 50px;
  background-color: var(--color-white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  text-align: center;
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  color: var(--color-primary);
}

.mission-vision-icon svg {
  width: 100%;
  height: 100%;
}

.mission-vision-card h6 {
  font-size: 0.85rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.mission-vision-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.mission-vision-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  font-family: var(--font-primary);
  font-weight: 300;
}

.why-tolyap-section {
  padding: 100px 20px;
  background-color: var(--color-gray-light);
}

.why-tolyap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.why-tolyap-item {
  text-align: center;
  padding: 30px 20px;
}

.why-tolyap-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 15px;
  line-height: 1;
  font-family: var(--font-heading);
}

.why-tolyap-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.why-tolyap-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 300;
}

/* İlkelerimiz - AOS Animasyonlarını Devre Dışı Bırak */
.values-section .value-card[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.values-section .value-card[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}
/* ========================================
   16. CONTACT PAGE
======================================== */

.contact-section {
  padding: 100px 20px;
  color: var(--color-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 40px;
  font-family: var(--font-primary);
  font-weight: 300;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-detail-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-dark);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 300;
}

.contact-detail-content a {
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: var(--transition);
}

.contact-detail-content a:hover {
  color: var(--color-primary);
}

.contact-social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--color-gray-light);
}

.contact-social h4 {
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-secondary);
  transform: translateY(-3px);
}

.contact-form-wrapper h2 {
  margin-bottom: 30px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
}

.contact-form {
  background-color: var(--color-gray-light);
  padding: 40px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  font-weight: 300;
  border: 2px solid transparent;
  background-color: var(--color-white);
  color: var(--color-secondary);
  border-radius: 4px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0;
  color: var(--color-gray-dark);
  font-family: var(--font-primary);
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.alert {
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
}

.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
}

.alert svg {
  flex-shrink: 0;
}

.alert p {
  margin: 0;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  font-weight: 300;
}

.map-section {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   17. COOKIE COMPLIANCE BANNER
======================================== */

.sliding-popup-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 25px 30px;
  background: linear-gradient(135deg, #7fb069 0%, #4a5c3e 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.eu-cookie-compliance-banner {
  animation: slideUp 0.5s ease-out;
}

.eu-cookie-compliance-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.eu-cookie-compliance-message {
  flex: 1;
}

.eu-cookie-compliance-message h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.eu-cookie-compliance-message p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-white);
  opacity: 0.9;
  line-height: 1.6;
  font-family: var(--font-primary);
  font-weight: 300;
}

.eu-cookie-compliance-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.eu-cookie-compliance-agree-button,
.eu-cookie-compliance-secondary-button {
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.eu-cookie-compliance-agree-button {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.eu-cookie-compliance-agree-button:hover {
  background-color: transparent;
  color: var(--color-white);
}

.eu-cookie-compliance-secondary-button {
  background-color: transparent;
  color: var(--color-white);
}

.eu-cookie-compliance-secondary-button:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.eu-cookie-compliance-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.eu-cookie-compliance-close-button:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}

/* ========================================
   18. ANIMATIONS
======================================== */

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   19. UTILITY CLASSES
======================================== */

.mt-0 {
  margin-top: 0 !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-80 {
  margin-top: 80px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}

.pt-0 {
  padding-top: 0 !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-80 {
  padding-top: 80px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}

.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}

.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-grid {
  display: grid !important;
}

.flex-column {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.align-center {
  align-items: center !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-30 {
  gap: 30px !important;
}

.text-primary {
  color: var(--color-primary) !important;
}
.text-secondary {
  color: var(--color-secondary) !important;
}
.text-white {
  color: var(--color-white) !important;
}
.text-gray {
  color: var(--color-gray-dark) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-secondary {
  background-color: var(--color-secondary) !important;
}
.bg-white {
  background-color: var(--color-white) !important;
}
.bg-gray-light {
  background-color: var(--color-gray-light) !important;
}

.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}

.fs-small {
  font-size: 0.85rem !important;
}
.fs-normal {
  font-size: 1rem !important;
}
.fs-large {
  font-size: 1.2rem !important;
}
.fs-xlarge {
  font-size: 1.5rem !important;
}

.border-none {
  border: none !important;
}
.border-top {
  border-top: 1px solid var(--color-gray-light) !important;
}
.border-bottom {
  border-bottom: 1px solid var(--color-gray-light) !important;
}
.rounded {
  border-radius: 4px !important;
}
.rounded-lg {
  border-radius: 8px !important;
}

.shadow {
  box-shadow: var(--shadow) !important;
}
.shadow-lg {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}
.shadow-none {
  box-shadow: none !important;
}

.overflow-hidden {
  overflow: hidden !important;
}
.overflow-auto {
  overflow: auto !important;
}

.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}

.w-100 {
  width: 100% !important;
}
.w-75 {
  width: 75% !important;
}
.w-50 {
  width: 50% !important;
}
.w-25 {
  width: 25% !important;
}
.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}

.max-w-400 {
  max-width: 400px !important;
}
.max-w-600 {
  max-width: 600px !important;
}
.max-w-800 {
  max-width: 800px !important;
}
.max-w-1000 {
  max-width: 1000px !important;
}
.max-w-1200 {
  max-width: 1200px !important;
}

.opacity-0 {
  opacity: 0 !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}
.opacity-75 {
  opacity: 0.75 !important;
}
.opacity-100 {
  opacity: 1 !important;
}

.cursor-pointer {
  cursor: pointer !important;
}
.cursor-default {
  cursor: default !important;
}

/* ========================================
   20. PRELOADER
======================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-gray-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   21. SCROLL TO TOP BUTTON
======================================== */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9998;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-secondary);
  transform: translateY(-5px);
}

/* ========================================
   22. SELECTION & FOCUS STYLES
======================================== */

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* ========================================
   23. PRINT STYLES
======================================== */

@media print {
  header,
  footer,
  .cb-header,
  .cb-footer,
  .scroll-to-top,
  .eu-cookie-compliance-banner {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* ========================================
   HAKKIMIZDA DROPDOWN - ÖZEL STİL
======================================== */

.dropdown-about .dropdown-content {
  grid-template-columns: repeat(3, 1fr);
  min-height: 300px;
}

.dropdown-empty {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-empty:hover {
  background: transparent;
}

/* Brand Logo Section */
.dropdown-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background: rgba(127, 176, 105, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 300px;
}

.brand-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 3px solid rgba(127, 176, 105, 0.3);
  transition: all 0.3s ease;
  background: #232d10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dropdown-brand:hover .brand-logo {
  border-color: #7fb069;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(127, 176, 105, 0.2);
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-info {
  text-align: center;
}

.brand-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.brand-slogan {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: #7fb069;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.brand-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 350px;
  font-family: var(--font-primary);
}

/* ========================================
   HAKKIMIZDA DROPDOWN - ÖZEL STİL
======================================== */

.dropdown-about .dropdown-content {
  grid-template-columns: repeat(3, 1fr);
  max-width: 100%;
  padding: 0;
  gap: 0;
}

.dropdown-about-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-height: 300px;
}

.dropdown-about-section:last-child {
  border-right: none;
}

.dropdown-about-section:hover {
  background: rgba(127, 176, 105, 0.1);
}

.about-section-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.about-section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

.dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(127, 176, 105, 0.2);
  color: #7fb069;
  border: 1px solid rgba(127, 176, 105, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-btn:hover {
  background: #7fb069;
  color: white;
  border-color: #7fb069;
  transform: translateX(5px);
}

/* ========================================
   İLETİŞİM DROPDOWN - ÖZEL STİL
======================================== */

.dropdown-contact .dropdown-content {
  grid-template-columns: repeat(3, 1fr);
}

.dropdown-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.dropdown-contact-item:last-child {
  border-right: none;
}

.dropdown-contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #166583;
  transition: all 0.3s ease;
}

.dropdown-contact-item:hover .contact-icon {
  transform: scale(1.1);
  color: #ffffff;
}

.contact-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.contact-info p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 280px;
  font-family: var(--font-primary);
}

.contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #166583;
}

/* ========================================
   BASINDA BİZ (PRESS) SECTION
======================================== */

.press-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.press-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.press-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.press-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.press-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-card:hover .press-card-image img {
  transform: scale(1.1);
}

.press-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 101, 131, 0.9),
    rgba(22, 101, 131, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.press-card:hover .press-card-overlay {
  opacity: 1;
}

.press-card-overlay svg {
  color: #ffffff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.press-card:hover .press-card-overlay svg {
  transform: scale(1);
}

.press-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.press-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-heading);
}

.press-card:hover .press-card-content h3 {
  color: var(--color-primary);
}

.press-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-primary);
  font-weight: 300;
}

.press-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.press-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #999;
  font-family: var(--font-primary);
  font-weight: 300;
}

.press-date svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.press-link {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
  font-family: var(--font-primary);
}

.press-card:hover .press-link {
  gap: 10px;
}

.press-cta {
  text-align: center;
  margin-top: 60px;
}

.press-cta .cb-btn-primary {
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(22, 101, 131, 0.3);
  transition: all 0.3s ease;
}

.press-cta .cb-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22, 101, 131, 0.4);
}

@media (max-width: 1200px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .press-section {
    padding: 60px 0;
  }

  .press-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .press-card-image {
    height: 220px;
  }

  .press-card-content {
    padding: 25px;
  }

  .press-card-content h3 {
    font-size: 18px;
  }

  .press-excerpt {
    font-size: 14px;
  }

  .press-cta {
    margin-top: 40px;
  }

  .press-cta .cb-btn-primary {
    padding: 15px 35px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .press-card-content h3 {
    font-size: 16px;
    -webkit-line-clamp: 2;
  }

  .press-excerpt {
    -webkit-line-clamp: 2;
  }
}

.press-card.style-minimal {
  background: transparent;
  box-shadow: none;
  border: 2px solid #eee;
}

.press-card.style-minimal:hover {
  border-color: var(--color-primary);
  background: #ffffff;
}

.press-section .section-header {
  position: relative;
  padding-bottom: 20px;
}

.press-section .section-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  border-radius: 2px;
}

.press-section .section-header p {
  margin-top: 15px;
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-primary);
  font-weight: 300;
}

/* ========================================
   END OF MAIN CSS
======================================== */

/* ========================================
   HAKKIMIZDA DROPDOWN - YENİ 3 KOLONLU YAPI
======================================== */

/* Biz Kimiz ve Basında Biz Section Stilleri */
.dropdown-about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.dropdown-about-section:last-child {
  border-right: none;
}

.dropdown-about-section:hover {
  background: rgba(255, 255, 255, 0.05);
}

.about-section-content {
  text-align: center;
  max-width: 320px;
}

.about-section-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about-section-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

/* Dropdown Buton Stili */
.dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.dropdown-btn:hover {
  background: #166583;
  border-color: #166583;
  transform: translateY(-2px);
}

.dropdown-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown-btn:hover svg {
  transform: translateX(5px);
}

/* Orta Kutu (Tolga Yavuz) - Mevcut Stili Koru */
.dropdown-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.dropdown-founder:hover .founder-image {
  border-color: #166583;
  transform: scale(1.05);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  text-align: center;
}

.founder-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.founder-title {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #166583;
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.founder-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 350px;
  font-family: var(--font-primary);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .dropdown-about .dropdown-content {
    grid-template-columns: 1fr;
  }

  .dropdown-about-section,
  .dropdown-founder {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
  }

  .dropdown-founder {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-section-content {
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .dropdown-about-section,
  .dropdown-founder {
    padding: 30px 20px;
  }

  .about-section-content h4 {
    font-size: 1rem;
  }

  .about-section-desc {
    font-size: 0.85rem;
  }

  .dropdown-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .founder-image {
    width: 120px;
    height: 120px;
  }

  .founder-info h4 {
    font-size: 1.1rem;
  }
}

/* ========================================
   PROJE DETAY - LEVENT KORU WEBSİTE CTA
======================================== */

.levent-website-cta {
  margin: 40px 0;
}

.website-cta-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 35px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.website-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #3d9bb8 0%, #2c7a8f 100%);
  transition: width 0.3s ease;
}

.website-cta-card:hover::before {
  width: 8px;
}

.website-cta-card:hover {
  border-color: #3d9bb8;
  box-shadow: 0 10px 30px rgba(61, 155, 184, 0.15);
  transform: translateY(-2px);
}

/* Logo container */
.website-cta-logo {
  flex-shrink: 0;
  width: 100px; /* Logo genişliği - ayarlayabilirsiniz */
  height: 70px; /* Logo yüksekliği - ayarlayabilirsiniz */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.website-cta-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.website-cta-content {
  flex: 1;
}

.website-cta-content h3 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.website-cta-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.5;
}

.cb-btn-website {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  background: linear-gradient(135deg, #3d9bb8 0%, #2c7a8f 100%);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(61, 155, 184, 0.25);
}

.cb-btn-website:hover {
  background: linear-gradient(135deg, #2c7a8f 0%, #1f5d6f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 155, 184, 0.35);
  color: var(--color-white);
}

.cb-btn-website svg {
  transition: transform 0.3s ease;
}

.cb-btn-website:hover svg {
  transform: translate(3px, -3px);
}

/* Mobil için */
@media (max-width: 768px) {
  .website-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
    gap: 20px;
  }

  /* Mobil için */
  @media (max-width: 768px) {
    .website-cta-logo {
      width: 90px;
      height: 60px;
    }
  }

  .website-cta-content h3 {
    font-size: 1.3rem;
  }

  .website-cta-content p {
    font-size: 0.9rem;
  }

  .cb-btn-website {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* Tablet için */
@media (max-width: 1024px) {
  .website-cta-card {
    padding: 30px 35px;
    gap: 25px;
  }
}

/* ========================================
   İLETİŞİM LOKASYONLARI - YAN YANA
======================================== */

.contact-locations-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 300;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.location-card:hover {
  border-color: #3d9bb8;
  box-shadow: 0 8px 30px rgba(61, 155, 184, 0.2);
  transform: translateY(-5px);
}

.location-card__header {
  padding: 30px;
  background: linear-gradient(135deg, #3d9bb8 0%, #2c7a8f 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 20px;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.location-icon--sales {
  background: rgba(255, 255, 255, 0.25);
}

.location-card__header h3 {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
  color: var(--color-white);
}

.location-card__map {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.location-card__map iframe {
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.location-card:hover .location-card__map iframe {
  filter: grayscale(0%) brightness(1.05);
}

.location-card__info {
  padding: 25px 30px;
  background: var(--color-white);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.info-item svg {
  color: #3d9bb8;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item span {
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3d9bb8 0%, #2c7a8f 100%);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(61, 155, 184, 0.2);
}

.location-btn:hover {
  background: linear-gradient(135deg, #2c7a8f 0%, #1f5d6f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61, 155, 184, 0.3);
  color: var(--color-white);
}

.location-btn svg {
  transition: transform 0.3s ease;
}

.location-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Mobil için */
@media (max-width: 768px) {
  .contact-locations-section {
    padding: 60px 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-card__header {
    padding: 25px;
  }

  .location-card__header h3 {
    font-size: 1.3rem;
  }

  .location-icon {
    width: 50px;
    height: 50px;
  }

  .location-card__map {
    height: 250px;
  }

  .location-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   YENİ MOBİL MENÜ
======================================== */

/* Sadece mobilde görünür */
@media (min-width: 1024px) {
  .dsn-mobile-nav,
  .mobile-toggle {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  /* Mobil menü container */
  .dsn-mobile-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9998;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dsn-mobile-nav.dsn-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* SVG Arka Plan */
  .dsn-mobile-nav .bg-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d101f;
    z-index: -1;
  }

  .dsn-mobile-nav .bg-load svg {
    width: 100%;
    height: 100%;
  }

  .dsn-mobile-nav .bg-load path {
    fill: #0d101f;
  }

  /* Ana Navigasyon */
  .main-navigation {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    overflow-y: auto;
  }

  .main-navigation .primary-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .main-navigation .primary-nav > li {
    margin: 15px 0;
    overflow: hidden;
  }

  .main-navigation .primary-nav > li > a {
    display: inline-block;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
  }

  .dsn-mobile-nav.dsn-open .primary-nav > li > a {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .dsn-mobile-nav.dsn-open .primary-nav > li:nth-child(1) > a {
    transition-delay: 0.1s;
  }
  .dsn-mobile-nav.dsn-open .primary-nav > li:nth-child(2) > a {
    transition-delay: 0.2s;
  }
  .dsn-mobile-nav.dsn-open .primary-nav > li:nth-child(3) > a {
    transition-delay: 0.3s;
  }
  .dsn-mobile-nav.dsn-open .primary-nav > li:nth-child(4) > a {
    transition-delay: 0.4s;
  }

  .main-navigation .primary-nav > li > a:hover {
    color: #3d9bb8;
    transform: translateX(10px);
  }

  /* Alt Menü */
  .main-navigation .primary-nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d101f;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .main-navigation .primary-nav ul.open {
    transform: translateX(0);
  }

  .main-navigation .primary-nav ul li {
    margin: 10px 0;
  }

  .main-navigation .primary-nav ul li a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
  }

  .main-navigation .primary-nav ul li a:hover {
    color: #3d9bb8;
  }

  /* Geri Butonu */
  .dsn-back {
    position: absolute;
    top: 30px;
    left: 30px;
  }

  .dsn-back a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
  }

  .dsn-back svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
  }

  /* Hamburger Butonu */
  .mobile-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
    position: relative;
    padding: 10px;
  }

  .toggle-icon {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .toggle-line {
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .toggle-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    font-family: var(--font-heading);
  }

  .toggle-text .text-open,
  .toggle-text .text-close {
    display: none;
  }

  /* Açık durumda hamburger */
  .dsn-mobile-nav.dsn-open ~ header .mobile-toggle .toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
  }

  .dsn-mobile-nav.dsn-open ~ header .mobile-toggle .toggle-line:nth-child(2) {
    opacity: 0;
  }

  .dsn-mobile-nav.dsn-open ~ header .mobile-toggle .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
  }

  /* Body scroll kilidi */
  body.mobile-nav-open {
    overflow: hidden;
  }
}

/* ========================================
   BİZ KİMİZ SECTION - FONT BOYUTU DEĞİŞİKLİĞİ
======================================== */

#section-about-preview .cb-text-block__content h2 {
  font-size: 2rem; /* h6 boyutu (eski Biz Kimiz) */
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

#section-about-preview .cb-text-block__content h6 {
  font-size: 3rem; /* h2 boyutu (eski Daha Fazla Bilgi) */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 0;
}

#section-about-preview .cb-text-block__content h6 a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

#section-about-preview .cb-text-block__content h6 a:hover {
  color: var(--color-primary);
}

/* Mobil için */
@media (max-width: 768px) {
  #section-about-preview .cb-text-block__content h2 {
    font-size: 1rem;
  }

  #section-about-preview .cb-text-block__content h6 {
    font-size: 2rem;
  }
}

/* Öne Çıkan Projeler - Sayıları Büyüt */
.cb-2-column__content h3 {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

/* Alternatif: Tüm karakterleri eşit boyut */
.cb-2-column__content h3 {
  font-variant-numeric: proportional-nums;
}

/* Tıklanabilir iletişim kartları */
.contact-card-item--clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-card-item--clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-item--clickable:hover .contact-card-icon {
  color: var(--color-primary);
  transform: scale(1.1);
}

.contact-card-item--clickable:hover h4 {
  color: var(--color-primary);
}

/* ========================================
   CONTACT WIDGET (Floating Chat) - SAĞ ALT KÖŞE
======================================== */

.contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px; /* SOL YERİNE SAĞ */
  z-index: 9998;
}

.contact-widget__trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #7FB069;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.contact-widget__trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(127, 176, 105, 0.3);
  border-color: #4A5C3E;
}

.contact-widget__trigger svg {
  color: #7FB069;
  transition: all 0.3s ease;
}

.contact-widget__trigger .icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

.contact-widget__trigger.active .icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Widget Logo */
.contact-widget__trigger .widget-logo {
  width: 35px;
  height: auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-widget__trigger.active .widget-logo {
  opacity: 0;
  transform: rotate(90deg);
}

/* Pulse Animation */
.contact-widget__trigger::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #7FB069;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Chat Bubble Mesajı - BUTONUN TAM ÜSTÜNDEN */
.contact-widget__bubble {
  position: absolute;
  bottom: 70px;
  right: 0; /* SOL YERİNE SAĞ */
  background: white;
  padding: 20px 24px;
  border-radius: 16px 16px 4px 16px; /* SAĞ ALT KÖŞE KÜÇÜK */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  max-width: 320px;
  animation:
    bubbleSlideIn 0.5s ease-out 1s forwards,
    bubbleBounce 0.6s ease-in-out 1.5s;
  opacity: 0;
  transform: translateY(10px);
  z-index: 9997;
}

.contact-widget__bubble.hidden {
  display: none;
}

@keyframes bubbleSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bubbleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-close:hover {
  background: #f3f4f6;
  color: var(--color-secondary);
}

.bubble-content {
  padding-right: 20px;
}

.bubble-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-secondary);
}

.bubble-content p:first-child {
  margin-bottom: 8px;
  font-size: 16px;
}

.bubble-content strong {
  color: #7FB069;
  font-weight: 600;
}

/* Bubble Arrow (Kuyruk) - SAĞ ALTA */
.contact-widget__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 20px; /* SOL YERİNE SAĞ */
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.contact-widget__content {
  position: absolute;
  bottom: 80px;
  right: 0; /* SOL YERİNE SAĞ */
  width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.contact-widget__content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-widget__header {
  background: linear-gradient(135deg, #7FB069 0%, #4A5C3E 100%);
  color: white;
  padding: 20px;
  text-align: center;
}

.contact-widget__header h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 700;
}

.contact-widget__header p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.contact-widget__options {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.widget-option:hover {
  background: #fff;
  border-color: #7FB069;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(127, 176, 105, 0.1);
}

.widget-option--whatsapp:hover {
  border-color: #25d366;
}

.widget-option--whatsapp .widget-option__icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.widget-option--form:hover {
  border-color: #4A5C3E;
}

.widget-option__icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #7FB069 0%, #4A5C3E 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.widget-option__icon svg {
  color: white;
}

.widget-option__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-option__label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.widget-option__value {
  font-size: 14px;
  color: #4A5C3E;
  font-weight: 600;
}

.contact-widget__footer {
  padding: 15px 20px;
  background: #f9fafb;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.contact-widget__footer p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-widget {
    bottom: 20px;
    right: 20px; /* SOL YERİNE SAĞ */
  }

  .contact-widget__trigger {
    width: 55px;
    height: 55px;
  }

  .contact-widget__trigger .widget-logo {
    width: 30px;
  }

  .contact-widget__bubble {
    min-width: 240px;
    max-width: 260px;
    bottom: 65px;
  }

  .bubble-content p {
    font-size: 14px;
  }

  .bubble-content p:first-child {
    font-size: 15px;
  }

  .contact-widget__content {
    width: calc(100vw - 40px);
    right: -10px; /* SOL YERİNE SAĞ */
    max-height: calc(100vh - 180px);
    overflow-y: auto;
  }

  .contact-widget__header {
    padding: 15px;
  }

  .contact-widget__header h4 {
    font-size: 16px;
  }

  .contact-widget__header p {
    font-size: 12px;
  }

  .contact-widget__options {
    padding: 15px;
    gap: 10px;
  }

  .widget-option {
    padding: 10px;
    gap: 12px;
  }

  .widget-option__icon {
    width: 40px;
    height: 40px;
  }

  .widget-option__icon svg {
    width: 20px;
    height: 20px;
  }

  .widget-option__label {
    font-size: 11px;
  }

  .widget-option__value {
    font-size: 13px;
  }

  .contact-widget__footer {
    padding: 12px 15px;
  }

  .contact-widget__footer p {
    font-size: 11px;
  }
}

/* Daha küçük ekranlar için */
@media (max-width: 480px) {
  .contact-widget__content {
    max-height: calc(100vh - 160px);
  }

  .widget-option__content {
    flex: 1;
    min-width: 0;
  }

  .widget-option__value {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
