/* ----- GENEL VE TEMEL AYARLAR ----- */
:root {
  --primary-color: #007bff; /* Ana Mavi Renk */
  --secondary-color: #6c757d; /* İkincil Gri Renk */
  --dark-color: #212529; /* Koyu Renk (Header, Footer) */
  --light-color: #f8f9fa; /* Açık Arkaplan Rengi */
  --white-color: #ffffff;
  --font-family-headings: "Montserrat", sans-serif;
  --font-family-body: "Roboto", sans-serif;
}
/* =================================================================
   PRELOADER VE GELİŞMİŞ LOGO TASARIMI
   ================================================================= */

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0c; /* Koyu başlangıç ekranı */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-path {
  stroke-dasharray: 235.6; /* Path'in toplam uzunluğu */
  stroke-dashoffset: 235.6;
  animation: draw 1.5s ease-in-out forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.preloader-svg text {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 1s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --- YENİ ANİMASYONLU LOGO --- */
.logo-link {
  display: inline-block;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo-link:hover .site-logo {
  transform: rotate(360deg);
}
.logo-bg {
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}
.logo-c {
  stroke: #fff;
  stroke-width: 10;
  fill: none;
  transition: stroke-dashoffset 0.8s ease;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
}
.logo-g {
  font-family: "Russo One", sans-serif;
  font-size: 60px;
  fill: #fff;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.logo-link:hover .logo-c {
  stroke-dashoffset: 0;
}
.logo-link:hover .logo-g {
  opacity: 1;
}

.logo-text {
  font-family: "Russo One", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400; /* Russo One'da bold anlamsız */
}

/* Header küçüldüğünde logo metnini gizle (sadece ikon kalsın) */
.main-header.scrolled .logo-text {
  font-size: 0;
  opacity: 0;
  width: 0;
  margin-left: -12px; /* Gap'i sıfırlamak için */
  transition: all 0.3s ease;
}
.main-header .logo-text {
  transition: all 0.3s ease 0.1s;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-family-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: var(--white-color);
  margin: 0;
  padding: 0;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 350px; /* Footer yüksekliği kadar boşluk */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headings);
  font-weight: 700;
  color: var(--dark-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-family-headings);
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  color: var(--white-color);
}

.bg-light {
  background-color: var(--light-color);
}

.page-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

/* ----- TOP BAR ----- */
.top-bar {
  background-color: #f1f1f1;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left a,
.top-bar-right a {
  color: #555;
  margin-right: 20px;
}
.top-bar-left a i,
.top-bar-right a i {
  color: var(--primary-color);
  margin-right: 5px;
}
.top-bar-right a {
  font-size: 16px;
  margin-right: 0;
  margin-left: 15px;
}

/* ----- ANA HEADER & NAVİGASYON ----- */
.main-header {
  background-color: var(--white-color);
  padding: 20px 0;
  border-bottom: 1px solid #e9e9e9;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Bu logo tanımı eski, yenisi tarafından ezilecek */
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  font-family: var(--font-family-headings);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.1rem;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

#mobile-menu-button {
  display: none; /* Masaüstünde gizli */
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-color);
  cursor: pointer;
}

/* ----- FOOTER ----- */
#main-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ccc;
  padding: 60px 0 0;
  height: auto; /* Dinamik footer için değiştirildi */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
  background-color: var(--primary-color);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li a {
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}
.footer-col li a:hover {
  color: var(--white-color);
  padding-left: 5px;
}

.footer-col p {
  margin-bottom: 10px;
}
.footer-col p i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-social {
  margin-top: 20px;
}
.footer-social a {
  color: #ccc;
  font-size: 1.5rem;
  margin-right: 15px;
}
.footer-social a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #444;
}

/* ----- ANA SAYFA: HERO BÖLÜMÜ ----- */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80")
      no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
}
.hero-content {
  max-width: 800px;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white-color);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ----- HİZMETLER KARTLARI ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white-color);
  border: 1px solid #eee;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ----- HAKKIMIZDA SAYFASI ----- */
.page-header {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  color: var(--white-color);
  font-size: 3rem;
}

.about-content,
.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--primary-color);
}
.team-member h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
}
.team-member h4 {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: 400;
}

/* ----- PORTFOLYO SAYFASI ----- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.portfolio-item img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.8);
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay h3 {
  color: var(--white-color);
  margin-bottom: 5px;
}

/* ----- İLETİŞİM SAYFASI ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-details .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.contact-details .info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  width: 50px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-family-body);
}

.map-container {
  margin-top: 40px;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- MOBİL UYUMLULUK (RESPONSIVE) ----- */
@media (max-width: 992px) {
  .about-content,
  .team-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-left span {
    display: none; /* Telefonda sadece ikonlar görünsün */
  }
}

@media (max-width: 768px) {
  #content-wrap {
    padding-bottom: 0; /* Dinamik footer için sıfırlandı */
  }
  #main-footer {
    position: static; /* Statik pozisyon mobil için daha güvenli */
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-header .container {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none; /* Menüyü gizle */
    width: 100%;
    order: 3; /* Logonun altına al */
    background: #f1f1f1;
    margin-top: 15px;
  }
  .main-nav.active {
    display: block; /* Tıklanınca göster */
  }
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav li {
    margin: 0;
    text-align: center;
  }
  .main-nav a {
    padding: 15px;
    display: block;
    border-bottom: 1px solid #ddd;
  }
  .main-nav a.active,
  .main-nav a:hover {
    border-bottom-color: #ddd;
    background: var(--primary-color);
    color: var(--white-color);
  }
  #mobile-menu-button {
    display: block; /* Mobil menü butonunu göster */
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
  .top-bar .container {
    justify-content: center;
  }
  .top-bar-right {
    display: none;
  } /* Veya mobil için farklı düzen */
}
/* ----- YAZI TİPİ LOGO STİLLERİ (Eski, ezilecek) ----- */
.logo-link {
  text-decoration: none;
}
.logo {
  font-family: var(--font-family-headings);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
}
.logo-main {
  color: var(--dark-color);
}
.logo-secondary {
  color: var(--primary-color);
  font-weight: 400;
  margin-left: 2px;
}
.logo-cursor {
  color: var(--secondary-color);
  font-weight: 700;
  margin-left: 5px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ----- YARATICI LOGO STİLLERİ (Aktif olan bu olacak) ----- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-symbol {
  position: relative;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.logo-symbol:hover {
  transform: rotate(-15deg);
}
.logo-symbol::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--primary-color);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.logo-symbol::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 12px;
  width: 20px;
  height: 6px;
  background-color: var(--dark-color);
  transform: rotate(45deg);
  border-radius: 3px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-size: 1.5rem;
  font-weight: 700;
}
.logo-secondary {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ----- MEGA MENÜ STİLLERİ ----- */
.main-nav .has-megamenu {
  position: relative;
}
.main-nav .has-megamenu > a i {
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.main-nav .has-megamenu:hover > a i {
  transform: rotate(180deg);
}
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  background-color: var(--white-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 8px 8px;
  padding: 30px;
  border-top: 3px solid var(--primary-color);
}
.main-nav .has-megamenu:hover .mega-menu {
  display: block;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
.mega-menu-col h4 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.mega-menu-col h4 i {
  color: var(--primary-color);
  margin-right: 8px;
}
.mega-menu-col a {
  display: block;
  color: #555;
  padding: 8px 0;
  border: none !important;
}
.mega-menu-col a:hover {
  color: var(--primary-color) !important;
  background: none !important;
  padding-left: 5px;
}
.mega-menu-col.featured-col {
  background: var(--light-color);
  padding: 20px;
  border-radius: 5px;
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* ----- TEMA DEĞİŞTİRİCİ STİLLERİ (Eski, ezilecek) ----- */
#theme-toggle {
  background: none;
  border: none;
  color: #555;
  font-size: 16px;
  cursor: pointer;
  margin-left: 15px;
  padding: 5px;
}
body.dark-mode {
  --dark-color: #f1f1f1;
  --white-color: #1a1a1a;
  --light-color: #2a2a2a;
  --secondary-color: #999;
  color: #ccc;
}
body.dark-mode .main-header,
body.dark-mode .top-bar {
  background-color: #222;
  border-color: #444;
}
body.dark-mode .logo-main,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3 {
  color: #f1f1f1;
}
body.dark-mode .main-nav a,
body.dark-mode .top-bar-left a,
body.dark-mode #theme-toggle {
  color: #ccc;
}
body.dark-mode .logo-symbol::after {
  background-color: #f1f1f1;
}
body.dark-mode .page-header {
  background: #222;
}
body.dark-mode .service-card {
  background: #2a2a2a;
  border-color: #444;
}
body.dark-mode .about-content img,
body.dark-mode .portfolio-item img {
  filter: brightness(0.8);
}

/* ===== GELİŞMİŞ FOOTER STİLLERİ ===== */
#main-footer {
  padding: 60px 0 0;
}
.footer-grid {
  margin-bottom: 50px;
}
.footer-col.about-col .logo-main,
body.dark-mode .footer-col.about-col .logo-main {
  color: var(--white-color);
}
.footer-col .about-text {
  margin: 20px 0;
}
.footer-social a {
  transition: all 0.3s ease;
}
.footer-social a:hover {
  transform: translateY(-3px);
}
.footer-col li a {
  transition: all 0.3s ease;
}
.footer-col li a:hover {
  padding-left: 8px;
}
#newsletter-form input {
  width: 100%;
  padding: 12px;
  background-color: #444;
  border: 1px solid #666;
  color: var(--white-color);
  border-radius: 5px;
  margin-bottom: 10px;
}
#newsletter-form button {
  width: 100%;
}
.footer-partners {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.partner-logos img {
  height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}
.partner-logos img:hover {
  filter: none;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.copyright-text,
.legal-links a {
  color: #999;
  font-size: 14px;
}
.legal-links a {
  margin-left: 20px;
}
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1001;
}
#back-to-top.active {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background-color: #0056b3;
}
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: var(--white-color);
  padding: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 2000;
}
#cookie-consent-banner p {
  margin: 0;
}
#cookie-consent-banner a {
  color: var(--primary-color);
  text-decoration: underline;
}
#cookie-accept-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
body.dark-mode #main-footer,
body.dark-mode .footer-bottom {
  background-color: #111;
}
body.dark-mode .partner-logos img {
  filter: grayscale(100%) brightness(0.7);
}
body.dark-mode .partner-logos img:hover {
  filter: none;
}

/* ===== ANA SAYFA YENİ BÖLÜM STİLLERİ ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}
.why-us-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.why-us-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.process-step:hover .step-icon {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.process-step h3 {
  font-size: 1.3rem;
}
#stats {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80")
      no-repeat center center/cover;
  background-attachment: fixed;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
  color: var(--white-color);
}
.stat-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.stat-item h3.counter {
  font-size: 3.5rem;
  font-family: var(--font-family-headings);
  color: var(--white-color);
}
.stat-item p {
  font-size: 1.1rem;
  color: #ccc;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-card .fa-quote-left {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.3;
}
.testimonial-card .quote {
  font-style: italic;
  margin: 15px 0;
}
.author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.author h4 {
  margin: 0;
}
.author span {
  color: var(--secondary-color);
  font-size: 0.9em;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: var(--font-family-body);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer p {
  padding: 0 0 20px;
}
#final-cta {
  background: var(--dark-color);
  text-align: center;
  color: var(--white-color);
}
#final-cta h2 {
  color: var(--white-color);
  font-size: 2.5rem;
}
#final-cta p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
}
body.dark-mode .testimonial-card {
  background: var(--light-color);
}

/* ======================================================================== */
/* ===== "YARATIM SÜRECİ" TEMASI (Yüksek Öncelikli Kurallar) ===== */
/* ======================================================================== */

/* Yeni Renk Paleti ve Temel Kurallar */
:root {
  --bg-color: #0d1117;
  --surface-color: #161b22;
  --border-color: rgba(139, 148, 158, 0.2);
  --heading-color: #e6edf3;
  --text-color: #c9d1d9;
  --secondary-text-color: #8b949e;
  --accent-gold: #d29922;
  --accent-red: #f7786b;
  --accent-pink: #ff79c6;
  --whatsapp-green: #25d366;
  --email-blue: #3671ff;
  --phone-blue: #007bff;
  --linkedin-blue: #0a66c2;
}

body {
  background-color: var(--bg-color) !important;
  color: var(--text-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color) !important;
}
a {
  color: var(--accent-gold) !important;
}
a:hover {
  filter: brightness(1.2);
  color: var(--accent-gold) !important;
}

/* Header & Navigasyon */
.top-bar,
.main-header {
  background-color: rgba(13, 17, 23, 0.7) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color) !important;
}
.top-bar-left a,
.top-bar-right a,
.main-nav a {
  color: var(--text-color) !important;
}
.top-bar-left a i,
.top-bar-right a i {
  color: var(--accent-gold) !important;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--heading-color) !important;
  border-bottom-color: var(--accent-gold) !important;
}

/* Logo */
.logo-text {
  line-height: 1.2 !important;
}
.logo-main {
  font-size: 1.4rem !important;
}
.logo-secondary {
  font-size: 0.9rem !important;
  color: var(--secondary-text-color) !important;
}
.logo-symbol::before {
  border-color: var(--accent-gold) !important;
  border-right-color: transparent !important;
}
.logo-symbol::after {
  background-color: var(--heading-color) !important;
}

/* Butonlar */
.btn-primary {
  background-color: var(--accent-gold) !important;
  color: #111 !important;
  border: 2px solid var(--accent-gold) !important;
  border-radius: 8px !important;
}
.btn-primary:hover {
  background-color: var(--accent-gold) !important;
  filter: brightness(1.2);
  transform: translateY(-2px);
}

/* Genel Sayfa ve Kart Yapıları */
.page-section {
  border-bottom: 1px solid var(--border-color) !important;
}
.page-section:last-of-type {
  border-bottom: none !important;
}
.section-title h2::after {
  background-color: var(--accent-gold) !important;
  border-radius: 2px;
}
.page-header,
.service-card,
.why-us-item,
.contact-form,
.contact-details,
.faq-item {
  background: var(--surface-color) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  padding: 30px;
  box-shadow: none !important;
}
.service-card:hover,
.why-us-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold) !important;
}

/* Yaratım Süreci Bölümü */
.creation-process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.creation-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.creation-image-container img {
  display: block;
}
.creation-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.creation-image-overlay h3,
.creation-image-overlay p {
  color: #fff !important;
}
.creation-content .quote-block {
  background-color: var(--surface-color) !important;
  border: 1px solid var(--border-color) !important;
  border-left: 4px solid var(--accent-gold) !important;
  padding: 20px !important;
  border-radius: 8px !important;
  margin: 0 0 30px 0;
  font-style: italic;
  color: var(--accent-gold) !important;
}
.creation-content > p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.creation-content .feature-list {
  list-style: none;
  padding: 0;
}
.creation-content .feature-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.creation-content .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.creation-content .feature-list li:nth-child(1)::before {
  background-color: var(--accent-gold);
}
.creation-content .feature-list li:nth-child(2)::before {
  background-color: var(--accent-red);
}
.creation-content .feature-list li:nth-child(3)::before {
  background-color: var(--accent-pink);
}

/* Müşteri Yorumları (Testimonials) Özel Stilleri */
#testimonials.section-on-white {
  background-color: #fff !important;
}
.section-on-white .section-title h2 {
  color: #b0b8c4 !important;
  font-weight: 700;
}
.section-on-white .testimonial-card {
  background-color: var(--surface-color) !important;
  border: 1px solid var(--border-color) !important;
  border-left: 5px solid var(--accent-gold) !important;
}
.section-on-white .testimonial-card .quote {
  color: var(--text-color) !important;
}
.section-on-white .testimonial-card .author h4 {
  color: var(--heading-color) !important;
}
.section-on-white .testimonial-card .author span {
  color: var(--secondary-text-color) !important;
}
.section-on-white .testimonial-card .fa-quote-left {
  font-size: 4rem;
  color: var(--accent-gold);
  position: absolute;
  top: 20px;
  left: 20px;
  opacity: 0.2;
}
.testimonial-card {
  position: relative;
  padding-top: 60px !important;
} /* İkon için yer aç */

/* Portfolyo (Öne Çıkan Projeler) Özel Stilleri */
#portfolyo-ozet.section-on-white {
  background-color: #fff !important;
}
.section-on-white .portfolio-item {
  display: none;
} /* Placeholder'ları gizle */
.section-on-white .portfolio-grid {
  text-align: center;
} /* Butonu ortala */
.section-on-white .portfolio-grid a.btn {
  margin: 0 auto;
} /* Butonu ortala */

/* Footer */
#main-footer {
  position: static !important;
  background-color: #0a0d14 !important;
  border-top: 1px solid var(--border-color) !important;
}
.footer-col a,
.footer-col p {
  color: var(--text-color) !important;
}
.footer-col a:hover {
  color: #fff !important;
}

/* Yüzen Butonlar */
.fab-container {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1002;
}
.fab-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-out;
}
.fab-button:hover {
  transform: scale(1.1);
}
.fab-whatsapp {
  background-color: #25d366;
}
.fab-email {
  background-color: #3671ff;
}
.fab-phone {
  background-color: #007bff;
}
.fab-linkedin {
  background-color: #0a66c2;
}

/* Genel Temizlik */
#theme-toggle {
  display: none !important;
}
#content-wrap {
  padding-bottom: 0 !important;
}
body.dark-mode,
body.light-mode {
  /* Eski tema değiştirici mantığını sıfırla */
}

/* Mobil için Yaratım Süreci */
@media (max-width: 992px) {
  .creation-process-section {
    grid-template-columns: 1fr;
  }
}
/* ======================================================================== */
/* ===== INDEX.PHP İÇİN EKLENEN YENİ BÖLÜMLERİN STİLLERİ ===== */
/* ======================================================================== */

/* Kullandığımız Teknolojiler Bölümü */
#tech-stack {
  padding: 0; /* Üst/alt boşluğu section-title'dan alacak */
  overflow: hidden;
  background-color: var(--surface-color) !important;
}

.tech-scroller {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
}

.tech-list {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.tech-list img {
  height: 60px;
  width: auto;
  filter: grayscale(1) contrast(0.5) brightness(1.5);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tech-list:hover {
  animation-play-state: paused;
}

.tech-list img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Son Blog Yazıları Bölümü */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.blog-card-meta .category {
  background-color: var(--accent-gold);
  color: #111;
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: bold;
}

.blog-card-meta .date {
  color: var(--secondary-text-color);
  align-self: center;
}

.blog-card-title {
  font-size: 1.4rem;
  margin: 10px 0;
}
.blog-card-title a {
  color: var(--heading-color) !important;
}

.blog-card-excerpt {
  flex-grow: 1;
  color: var(--text-color);
  margin-bottom: 20px;
}

.read-more {
  font-weight: bold;
  color: var(--accent-gold) !important;
}
.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.read-more:hover i {
  transform: translateX(5px);
}
/* ======================================================================== */
/* ===== HAKKIMIZDA.PHP İÇİN EKLENEN YENİ BÖLÜMLERİN STİLLERİ ===== */
/* ======================================================================== */

/* Misyon & Vizyon Bölümü */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card,
.vision-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.mission-card i,
.vision-card i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Zaman Tüneli Bölümü */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
/* Zaman tünelinin ortasındaki dikey çizgi */
.timeline-container::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--surface-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
/* Kutucukların sağa ve sola yaslanması */
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}

/* Zaman tüneli üzerindeki yuvarlak noktalar */
.timeline-item .timeline-dot {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--bg-color);
  border: 4px solid var(--accent-gold);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-year {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--accent-gold);
}
.timeline-item:nth-child(odd) .timeline-year {
  text-align: right;
  padding-right: 20px;
}
.timeline-item:nth-child(even) .timeline-year {
  text-align: left;
  padding-left: 20px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: 8px;
}
.timeline-content h4 {
  margin-top: 0;
  color: var(--heading-color);
}
.timeline-content p {
  color: var(--text-color);
}

/* Geliştirilmiş Ekip Kartları */
.team-member-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--accent-gold);
  overflow: hidden;
  margin-bottom: 20px;
}
.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member-card h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.team-member-card h4 {
  color: var(--secondary-text-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.team-member-card p {
  color: var(--text-color);
  max-width: 400px;
  margin-bottom: 20px;
}
.team-social-links {
  display: flex;
  gap: 20px;
}
.team-social-links a {
  font-size: 1.5rem;
  color: var(--secondary-text-color) !important;
  transition: color 0.3s ease;
}
.team-social-links a:hover {
  color: var(--accent-gold) !important;
}

/* Mobil için Zaman Tüneli ve Misyon/Vizyon */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 15px;
  }
  .timeline-item:nth-child(even) {
    left: 0%;
  }
  .timeline-item .timeline-dot {
    left: 10px;
  }
  .timeline-item .timeline-year {
    text-align: left !important;
    padding-left: 0 !important;
  }
}

/* ===== HIZMETLER.PHP SAYFASI İÇİN EK STİLLER (DÜZELTİLMİŞ) ===== */
.service-detail-section {
  text-align: center;
  max-width: 800px;
}
.service-detail-icon {
  font-size: 3.5rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
}
.service-detail-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.service-detail-section .lead {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.8;
}

/* ===== SVG MOBİL MENÜ İKONU (DÜZELTİLMİŞ) ===== */
.hamburger-icon rect {
  fill: var(--heading-color);
}

/* ===== MEGA MENÜ İÇİN AKTİF ALT LİNK VURGULAMA STİLİ ===== */
.mega-menu-col a.sub-active {
  color: var(--accent-gold) !important;
  font-weight: bold;
  background-color: rgba(210, 153, 34, 0.1);
  padding-left: 10px !important;
  border-radius: 5px;
}

/* ======================================================================== */
/* ===== GÖRSELE GÖRE YENİ MEGA MENÜ STİLİ (YÜKSEK ÖNCELİKLİ) ===== */
/* ======================================================================== */

/* 1. Mega Menü Ana Konteyneri */
.mega-menu {
  background-color: #ffffff !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
  border-radius: 12px !important;
  border-top: none !important; /* Üstteki renkli çizgiyi kaldır */
  width: 700px !important; /* Genişliği biraz artıralım */
  padding: 35px !important;
  opacity: 1 !important; /* Görseldeki solukluğu kaldır */
  animation: fadeInMegaMenu 0.3s ease-out; /* Yumuşak açılış animasyonu */
}

@keyframes fadeInMegaMenu {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* 2. Sütun Başlıkları ("Web & Yazılım") */
.mega-menu-col h4 {
  color: #a0a0a0 !important; /* Soluk gri başlık */
  font-size: 1rem !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #f0f0f0 !important; /* Çok hafif bir ayırıcı çizgi */
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Başlıkların yanındaki ikonlar */
.mega-menu-col h4 i {
  color: #007bff !important; /* Resimdeki gibi canlı mavi */
  font-size: 1.2rem;
}

/* 3. Menü Linkleri ("Kurumsal Web Tasarım") */
.mega-menu-col a {
  color: #606060 !important; /* Okunabilir koyu gri */
  font-weight: 500 !important;
  padding: 10px 0 !important;
}

/* 4. Linklerin Hover ve Aktif (Scroll Spy) Durumları */
.mega-menu-col a:hover,
.mega-menu-col a.sub-active {
  color: #007bff !important; /* Üzerine gelince mavi yap */
  background-color: transparent !important; /* Arka plan rengini kaldır */
  padding-left: 0px !important; /* İçeri kaydırmayı kaldır */
}

/* 5. Öne Çıkan Sütun */
.mega-menu-col.featured-col {
  background-color: #f8f9fa !important; /* Açık gri arka plan */
  padding: 25px !important;
  border-radius: 8px !important;
}

.mega-menu-col.featured-col h4 {
  color: #a0a0a0 !important; /* Başlık aynı soluk gri */
  border-bottom: 1px solid #f0f0f0 !important;
}

.mega-menu-col.featured-col p {
  color: #808080 !important; /* İçindeki metni de koyu gri yap */
  font-size: 0.95rem;
}

/* 6. Öne Çıkan Sütundaki Buton */
.mega-menu-col.featured-col .btn-secondary {
  background-color: #6c757d !important; /* Koyu gri buton */
  color: #ffffff !important;
  font-weight: bold;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border: none !important;
}
.mega-menu-col.featured-col .btn-secondary:hover {
  background-color: #5a6268 !important; /* Hover'da biraz daha koyu */
}
/* ======================================================================== */
/* ===== HİZMETLER SAYFASI - ALIŞILMIŞIN DIŞINDA STICKY LAYOUT ===== */
/* ======================================================================== */

#interactive-services .container {
  max-width: 1400px; /* Bu özel bölüm için daha geniş bir alan */
}

.services-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Sol Sütun: Hizmet Listesi */
.services-list-panel {
  display: flex;
  flex-direction: column;
  gap: 80px; /* Her hizmet arasında boşluk */
}

.service-trigger-item {
  padding: 20px;
  border-radius: 12px;
  opacity: 0.4; /* Aktif olmayanın soluk görünmesi */
  transition: opacity 0.4s ease;
}

.service-trigger-item.active {
  opacity: 1; /* Aktif olanın net görünmesi */
}

.service-trigger-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-trigger-item h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-trigger-item p {
  color: var(--secondary-text-color);
}

/* Sağ Sütun: Yapışkan Görsel Paneli */
.services-visual-panel {
  position: sticky;
  top: 120px; /* Header yüksekliğine göre ayarlayın */
  height: 70vh;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface-color);
}

.service-visual-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none; /* Görünmezken tıklanamaz yap */
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
}

.service-visual-card.active {
  opacity: 1;
  pointer-events: auto;
}

.visual-card-image {
  width: 100%;
  height: 75%;
  background-size: cover;
  background-position: center;
}

.visual-card-content {
  height: 25%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
}

.visual-card-content h4 {
  font-size: 1.4rem;
  margin: 0;
}

/* Mobil için düzenlemeler */
@media (max-width: 992px) {
  .services-layout-grid {
    grid-template-columns: 1fr;
  }
  .services-visual-panel {
    position: static; /* Mobilde yapışkanlığı kaldır */
    height: auto;
    margin-top: 50px;
  }
  .service-visual-card {
    position: relative; /* Kartları alt alta diz */
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 20px;
  }
  .service-trigger-item {
    display: none; /* Mobilde soldaki listeyi gizle, sadece kartlar görünsün */
  }
}
/* ======================================================================== */
/* ===== HİZMETLER SAYFASI - NİHAİ DÜZEN VE İÇERİK STİLLERİ ===== */
/* ======================================================================== */

/* Hizmet Bölümlerinin Arka Plan Renklerini Ayarlama */
.service-detail-wrapper:nth-of-type(even) {
  background-color: var(--bg-color) !important;
}
.service-detail-wrapper:nth-of-type(odd) {
  background-color: var(--surface-color) !important;
}

/* Ana Hizmet Grid Yapısı */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Ters Yerleşim (Resim Sağda) */
.service-detail-grid.layout-reversed .service-detail-content {
  order: 2;
}
.service-detail-grid.layout-reversed .service-gallery {
  order: 1;
}

/* Hizmet İçerik Alanı */
.service-detail-content .lead {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 40px;
}

/* Ek Detaylar Bloğu */
.service-extra-details {
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}
.detail-block {
  margin-bottom: 30px;
}
.detail-block h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
}
.ideal-for-list,
.feature-checklist {
  list-style: none;
  padding: 0;
}
.ideal-for-list li,
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.ideal-for-list i,
.feature-checklist i {
  color: var(--accent-gold);
  margin-top: 5px;
}

/* Süreç Adımları Listesi */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.process-step-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.process-step-item span {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--accent-gold);
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step-item p {
  margin: 0;
}

/* Görsel Galerisi Alanı */
.main-gallery-image img {
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}
.mini-gallery-item img {
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mini-gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobil için Düzenleme */
@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid.layout-reversed .service-detail-content,
  .service-detail-grid.layout-reversed .service-gallery {
    order: 0; /* Mobilde sıralamayı sıfırla */
  }
}
/* ===== HİZMETLER SAYFASI - YENİ GALERİ STİLİ ===== */
.service-gallery-unique {
  width: 100%;
}
.main-image-display {
  width: 100%;
  height: 450px; /* Sabit bir yükseklik verelim */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.main-image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}
.thumbnail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnail-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--secondary-text-color) !important;
  font-weight: 500;
}
.thumbnail-list a:hover,
.thumbnail-list a.active {
  color: var(--accent-gold) !important;
}

/* ===== ADMIN PANELİ - GALERİ YÖNETİMİ STİLLERİ ===== */
.gallery-management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.gallery-item {
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.delete-gallery-item {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(255, 107, 107, 0.8);
  color: #fff !important;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .delete-gallery-item {
  opacity: 1;
}
/* ======================================================================== */
/* ===== HİZMETLER SAYFASI - NİHAİ GALERİ STİLİ (GÖRSEL UYUMLU) ===== */
/* ======================================================================== */

/* Eski Mini Galeri Grid'ini tamamen kaldırıyoruz */
.mini-gallery-grid {
  display: none;
}

/* Yeni Galeri Ana Konteyneri */
.service-gallery-unique {
  width: 100%;
}

/* Ana Görsel Alanı */
.main-image-display {
  width: 100%;
  height: 450px; /* Sabit bir yükseklik verelim */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(
    --surface-color
  ); /* Resim yüklenene kadar boş görünmesin */
}
.main-image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out; /* Yumuşak geçiş efekti */
}

/* Tıklanabilir Link Listesi */
.thumbnail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnail-list li {
  margin-bottom: 5px; /* Linkler arasına hafif boşluk */
}
.thumbnail-list a {
  display: inline-flex; /* İkon ve metni yan yana getir */
  align-items: center;
  gap: 12px; /* İkon ve metin arası boşluk */
  padding: 8px 0;
  color: var(--secondary-text-color) !important;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 2px solid transparent; /* Altta görünmez bir çizgi */
  transition: all 0.3s ease;
}
.thumbnail-list a i {
  font-size: 1.1rem;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

/* Aktif ve Hover Durumları */
.thumbnail-list a:hover,
.thumbnail-list a.active {
  color: var(--accent-gold) !important;
}
.thumbnail-list a:hover i,
.thumbnail-list a.active i {
  color: var(--accent-gold) !important;
}
/* ======================================================================== */
/* ===== HİZMETLER SAYFASI - NİHAİ GALERİ STİLİ (GÖRSEL UYUMLU) ===== */
/* ======================================================================== */

/* Eski Mini Galeri Grid'ini tamamen kaldırıyoruz */
.mini-gallery-grid {
  display: none;
}

/* Yeni Galeri Ana Konteyneri */
.service-gallery-unique {
  width: 100%;
}

/* Ana Görsel Alanı */
.main-image-display {
  width: 100%;
  height: 450px; /* Sabit bir yükseklik verelim */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: var(
    --surface-color
  ); /* Resim yüklenene kadar boş görünmesin */
}
.main-image-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out; /* Yumuşak geçiş efekti */
}

/* Tıklanabilir Link Listesi */
.thumbnail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnail-list li {
  margin-bottom: 5px; /* Linkler arasına hafif boşluk */
}
.thumbnail-list a {
  display: inline-flex; /* İkon ve metni yan yana getir */
  align-items: center;
  gap: 12px; /* İkon ve metin arası boşluk */
  padding: 8px 0;
  color: var(--secondary-text-color) !important;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 2px solid transparent; /* Altta görünmez bir çizgi */
  transition: all 0.3s ease;
}
.thumbnail-list a i {
  font-size: 1.1rem;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

/* Aktif ve Hover Durumları */
.thumbnail-list a:hover,
.thumbnail-list a.active {
  color: var(--accent-gold) !important;
}
.thumbnail-list a:hover i,
.thumbnail-list a.active i {
  color: var(--accent-gold) !important;
}
```
/* =================================================================
   YENİ VE ŞIK HİZMETLER SAYFASI TASARIMI
   ================================================================= */

/* Genel Hizmetler Kapsayıcısı */
.services-wrapper {
  background-color: #0a0a0c; /* Koyu ana zemin */
  padding: 100px 0;
  overflow: hidden;
}

/* Her bir hizmet bölümü */
.service-showcase-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}

.service-showcase-section:last-child {
  margin-bottom: 0;
}

/* Medya (Görsel/Video) Alanı */
.media-container {
  perspective: 1500px; /* 3D efekt için */
}

.media-showcase {
  position: relative;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05); /* Cam efekti */
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.media-showcase:hover {
  transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

.media-showcase img,
.media-showcase video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Medya için dekoratif element (Hizmet rengini kullanır) */
.media-showcase::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: var(--service-color);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: -1;
  transition: all 0.5s ease;
}
.media-showcase:hover::before {
  transform: scale(1.2);
  opacity: 0.8;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
.media-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
}
.media-placeholder span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* İçerik Alanı */
.content-container {
  padding-left: 30px;
  position: relative;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 25px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.service-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #fff;
}

.service-lead {
  font-size: 1.1rem;
  color: var(--text-color-light); /* Açık renkli metin */
  line-height: 1.7;
  margin-bottom: 30px;
}

.process-steps {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.process-steps .step {
  color: var(--text-color-light);
  font-weight: 500;
}

.process-steps .step span {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
}

/* Sağdan sola ters layout */
.service-showcase-section.layout-reversed {
  grid-template-columns: 1fr 1fr; /* Aynı kalır */
}
.service-showcase-section.layout-reversed .media-container {
  order: 2; /* Medya sağa geçer */
}
.service-showcase-section.layout-reversed .content-container {
  order: 1; /* İçerik sola geçer */
  padding-left: 0;
  padding-right: 30px;
}
.service-showcase-section.layout-reversed .media-showcase:hover {
  transform: rotateY(-5deg) rotateX(5deg) scale(1.02); /* Hover efekti ters döner */
}

/* Butonun ikonlu versiyonu */
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-with-icon i {
  transition: transform 0.3s ease;
}
.btn-with-icon:hover i {
  transform: translateX(5px);
}

/* Yenilenmiş Final CTA */
#final-cta {
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  text-align: center;
  color: #fff;
  border-radius: 20px;
  margin: 0 auto; /* Konteyner dışına taşmaması ve ortalamak için */
  max-width: calc(100% - 40px); /* Kenarlarda boşluk bırakmak için */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  top: -60px; /* Bir önceki bölümün üstüne hafifçe binsin */
}
#final-cta .container {
  padding: 60px 30px;
}
#final-cta h2 {
  font-size: 2.5rem;
}
#final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 15px auto 30px auto;
}
#final-cta .btn-light {
  background-color: #fff;
  color: #1e3c72;
  font-weight: bold;
  padding: 15px 35px;
}

/* Mobil Cihazlar için Ayarlamalar */
@media (max-width: 992px) {
  .service-showcase-section,
  .service-showcase-section.layout-reversed {
    grid-template-columns: 1fr; /* Tek sütuna düşür */
    gap: 40px;
  }
  .service-showcase-section.layout-reversed .media-container {
    order: 1; /* Mobil'de her zaman medya üstte */
  }
  .service-showcase-section.layout-reversed .content-container {
    order: 2; /* İçerik altta */
    padding-right: 0;
  }
  .content-container {
    padding-left: 0;
    text-align: center;
  }
  .service-icon-box,
  .process-steps {
    margin-left: auto;
    margin-right: auto;
  }
  .process-steps {
    justify-content: center;
  }
}
/* =================================================================
   PROJE DETAY SAYFASI TASARIMI
   ================================================================= */
.project-detail-header {
  text-align: center;
  padding: 60px 0;
}
.project-detail-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
}

.project-detail-section {
  background-color: #f4f7f6; /* Hafif kırık beyaz bir zemin */
}

.project-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Sol sütun daha geniş */
  gap: 40px;
}

/* Sol Sütun: Galeri */
.project-gallery .main-project-image {
  margin-bottom: 30px;
}
.project-gallery .main-project-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.gallery-media-item a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.gallery-media-item .gallery-thumbnail {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-media-item a:hover .gallery-thumbnail {
  transform: scale(1.1);
}

/* Sağ Sütun: Bilgi Alanı */
.project-info-sidebar {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: fit-content; /* İçeriğe göre yükseklik */
  position: sticky;
  top: 100px; /* Sayfa kaydırıldığında sabit kalması için */
}
.project-info-sidebar h3 {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.project-info-sidebar .info-block {
  margin-bottom: 25px;
}
.project-info-sidebar .info-block h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-info-sidebar .info-block p {
  line-height: 1.7;
  color: #555;
}
.project-info-sidebar .info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.project-info-sidebar .info-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
}
.project-info-sidebar .info-list li:last-child {
  border-bottom: none;
}
.project-info-sidebar .info-list li strong {
  color: #333;
  min-width: 80px;
  display: inline-block;
}

/* Mobil Cihazlar için */
@media (max-width: 992px) {
  .project-detail-grid {
    grid-template-columns: 1fr; /* Tek sütuna düşür */
  }
  .project-info-sidebar {
    position: static; /* Sabit kalma özelliğini kaldır */
    margin-top: 40px;
  }
}
/* =================================================================
   YENİ VE ŞIK ANA SAYFA BÖLÜMLERİ
   ================================================================= */

/* --- Şık Blog Kartı Tasarımı --- */
.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card-new {
  background-color: var(--background-color-dark);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.blog-card-new .blog-image-link {
  display: block;
  overflow: hidden;
}
.blog-card-new img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-new:hover img {
  transform: scale(1.05);
}
.blog-card-new .blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-new .blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-color-light);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.blog-card-new .blog-meta .category {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-weight: 500;
}
.blog-card-new .blog-title {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  flex-grow: 1; /* Başlığın alanı doldurmasını sağlar */
}
.blog-card-new .blog-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-new .blog-title a:hover {
  color: var(--primary-color);
}
.blog-card-new .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.blog-card-new .read-more:hover {
  gap: 15px;
}

/* --- Şık Müşteri Yorumu Kartı Tasarımı --- */
.testimonials-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.testimonial-card-new {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e9e9e9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-card-new .testimonial-content {
  margin-bottom: 25px;
}
.testimonial-card-new .fa-quote-left {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 15px;
}
.testimonial-card-new p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}
.testimonial-card-new .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.testimonial-card-new .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card-new .author-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  color: #333;
}
.testimonial-card-new .author-info span {
  font-size: 0.9rem;
  color: #777;
}

/* --- Şık Portfolyo Özet Kartı --- */
.portfolio-grid-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.portfolio-item-summary {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.portfolio-item-summary img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item-summary:hover img {
  transform: scale(1.1);
}
.portfolio-item-summary .portfolio-overlay {
  /* Mevcut overlay kodunuzu bununla değiştirebilirsiniz */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 20px 20px 20px;
  color: #fff;
  text-align: left;
}
.portfolio-item-summary .portfolio-overlay h3 {
  margin: 0;
  font-size: 1.4rem;
}
.portfolio-item-summary .portfolio-overlay span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
  .testimonials-grid-new {
    grid-template-columns: 1fr;
  }
}
/* =================================================================
   MUHTEŞEM ANA SAYFA TASARIMI v2.0
   ================================================================= */

/* --- Genel Stil ve Başlık Animasyonu --- */
.section-on-dark {
  background-color: var(--background-color-dark);
  color: #fff;
}
.animated-title {
  text-align: center;
  margin-bottom: 60px;
}
.animated-title span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.animated-title h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}
.animated-title.inverted h2 {
  color: #fff;
}
.section-footer-link {
  text-align: center;
  margin-top: 50px;
}

/* --- BÖLÜM 1: HERO SLIDER --- */
.hero-slider-section {
  height: 100vh;
  min-height: 600px;
  color: #fff;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}
.hero-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* --- BÖLÜM 2: HİZMETLER ÖZETİ --- */
.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-summary-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-summary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.service-summary-card .service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.service-summary-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}
.service-summary-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}
.service-summary-card .card-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* --- BÖLÜM 3: PORTFOLYO ÖZETİ --- */
.portfolio-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}
.portfolio-summary-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.portfolio-summary-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.portfolio-summary-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}
.portfolio-summary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-summary-item:hover img {
  transform: scale(1.1);
}
.portfolio-summary-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.portfolio-summary-item:hover .portfolio-summary-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* --- BÖLÜM 4: MÜŞTERİ YORUMLARI SLIDER --- */
.testimonial-slider-container {
  padding: 20px 0 50px 0; /* Pagination için altta boşluk */
}
.testimonial-card-v2 {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
}
.testimonial-card-v2 .quote {
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}
.testimonial-card-v2 .author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card-v2 .author-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--primary-color);
}
.testimonial-card-v2 .author-name {
  font-weight: 600;
  color: #333;
}
.testimonial-card-v2 .author-title {
  color: #777;
  font-size: 0.9rem;
}
.swiper-pagination-testimonials .swiper-pagination-bullet {
  background: var(--primary-color);
}

/* --- BÖLÜM 5: BLOG ÖZETİ --- */
.blog-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-summary-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.blog-summary-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-summary-content {
  padding: 25px;
}
.blog-summary-category {
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}
.blog-summary-title {
  margin: 15px 0;
  font-size: 1.3rem;
}
.blog-summary-title a {
  color: #fff;
  text-decoration: none;
}
.blog-summary-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

/* --- BÖLÜM 6: FINAL CTA --- */
#final-cta-v2 {
  background: url("https://...bg.jpg") no-repeat center center/cover; /* Arka plan resmi ekleyebilirsiniz */
  background-color: #1a1a1a;
  position: relative;
}
#final-cta-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-color-rgb), 0.8);
}
#final-cta-v2 .container {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .portfolio-summary-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .portfolio-summary-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
/* =================================================================
   MUHTEŞEM ANA SAYFA TASARIMI v2.1 - Portfolyo Güncellemesi
   ================================================================= */

/* --- BÖLÜM 3: PORTFOLYO ÖZETİ (DAHA FAZLA FOTOĞRAFLI YENİ TASARIM) --- */
#portfolyo-ozet .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.portfolio-showcase-grid {
  display: grid;
  /* 4 sütunlu bir grid yapısı */
  grid-template-columns: repeat(4, 1fr);
  /* Otomatik satır yüksekliği */
  grid-auto-rows: 300px;
  gap: 15px;
}

.portfolio-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.portfolio-image-wrapper {
  width: 100%;
  height: 100%;
}
.portfolio-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.portfolio-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.overlay-content {
  transform: translateY(20px);
  transition: transform 0.5s ease;
}
.overlay-content h3 {
  color: #fff;
  margin: 0 0 5px 0;
  font-size: 1.3rem;
}
.overlay-content span {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Hover Efektleri */
.portfolio-showcase-item:hover img {
  transform: scale(1.1);
}
.portfolio-showcase-item:hover .portfolio-showcase-overlay {
  opacity: 1;
}
.portfolio-showcase-item:hover .overlay-content {
  transform: translateY(0);
}

/* Farklı boyutlarda itemler oluşturmak için (Daha dinamik bir görünüm) */
.portfolio-showcase-item:nth-child(5n - 4) {
  /* 1, 6, 11... */
  grid-column: span 2;
  grid-row: span 1;
}
.portfolio-showcase-item:nth-child(5n - 1) {
  /* 4, 9, 14... */
  grid-column: span 1;
  grid-row: span 2;
}

/* Mobil için */
@media (max-width: 992px) {
  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
}
@media (max-width: 576px) {
  .portfolio-showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
  .portfolio-showcase-item:nth-child(n) {
    /* Mobilde tüm spanları sıfırla */
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* =================================================================
   ETKİLEYİCİ ANA SAYFA TASARIMI v3.0
   ================================================================= */

/* --- Genel Ayarlar ve Scroll Animasyonu --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
    transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- BÖLÜM 1: HERO SLIDER --- */
.hero-slide {
  position: relative;
}
.hero-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(2px);
}
.hero-title,
.hero-subtitle,
.hero-btn {
  transition: transform 0.6s ease-out;
}

/* --- BÖLÜM 2: HİZMETLER ÖZETİ --- */
.service-summary-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9e9e9;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-summary-card .card-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    var(--glow-color, #ff0000) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.service-summary-card:hover .card-background-glow {
  opacity: 0.15;
}
.service-summary-card > * {
  position: relative;
  z-index: 1;
} /* İçeriği parlamanın üstüne çıkar */

/* --- BÖLÜM 3: PORTFOLYO (Kenburns Efekti ile) --- */
.portfolio-showcase-item .portfolio-image-wrapper {
  overflow: hidden;
}
.portfolio-showcase-item img {
  /* Kenburns efekti için animasyon */
  animation: kenburns 20s ease-out infinite;
}
@keyframes kenburns {
  0% {
    transform: scale(1.1) translate(0, 0);
  }
  50% {
    transform: scale(1.2) translate(10px, -5px);
  }
  100% {
    transform: scale(1.1) translate(0, 0);
  }
}

/* --- BÖLÜM 4: MÜŞTERİ YORUMLARI (Parallax Arka Plan) --- */
.testimonials-parallax-bg {
  background-image: url("https://images.unsplash.com/photo-1531303433560-a29a6331307b?auto=format&fit=crop&w=2000&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: #fff;
}
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--background-color-dark-rgb), 0.8);
  backdrop-filter: blur(5px);
}
#testimonials-summary .container {
  position: relative;
  z-index: 2;
}
.testimonial-card-v3 {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}
.testimonial-card-v3 .author-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}
.testimonial-card-v3 .quote {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-card-v3 .author-name {
  font-weight: 600;
  font-size: 1.1rem;
}
.testimonial-card-v3 .author-title {
  opacity: 0.8;
  font-size: 0.9rem;
}
.swiper-pagination-testimonials .swiper-pagination-bullet {
  background: #fff;
}

/* --- BÖLÜM 5: BLOG ÖZETİ (Aynı stil) --- */
/* Önceki cevaptaki .blog-summary-card stilleri geçerlidir */

/* --- BÖLÜM 6: FİNAL CTA (Gelişmiş Tasarım) --- */
#final-cta-v3 {
  background: var(--background-color-dark);
}
#final-cta-v3 .cta-content {
  background: url(./path/to/your/abstract-bg.svg); /* İsteğe bağlı soyut desen */
  background-color: var(--primary-color);
  color: #fff;
  padding: 60px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 30px 60px -10px rgba(var(--primary-color-rgb), 0.4);
}
/* =================================================================
   YENİ VE ETKİLEYİCİ FOOTER TASARIMI v2.0
   ================================================================= */
#main-footer-v2 {
  background-color: #111111; /* Koyu bir ana zemin */
  background-image: url("path/to/your/subtle-pattern.png"); /* İsteğe bağlı desen */
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}
.footer-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.5) 0%,
    rgba(30, 30, 30, 1) 100%
  );
  z-index: 1;
}
#main-footer-v2 .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-col h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
  letter-spacing: 0.5px;
}

/* Sütun 1: Hakkında */
.footer-logo-link {
  font-family: "Russo One", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.about-col .about-text {
  line-height: 1.7;
  margin-bottom: 25px;
}
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Sütun 3: Son Yazılar */
.latest-posts-col ul li a {
  display: flex;
  flex-direction: column;
}
.latest-posts-col .post-title {
  color: #fff;
  font-weight: 500;
  margin-bottom: 5px;
}
.latest-posts-col .post-date {
  font-size: 0.8rem;
  opacity: 0.6;
}
.latest-posts-col ul li a:hover .post-title {
  color: var(--primary-color);
}

/* Sütun 4: İletişim */
.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-col ul li i {
  color: var(--primary-color);
}

/* Footer Alt Kısım */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 25px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright-text {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}
/* =================================================================
   MUHTEŞEM HEADER VE MEGA MENÜ TASARIMI v3.0
   ================================================================= */

/* --- ÜST BİLGİ ÇUBUĞU --- */
.top-bar {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 20px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.top-bar a:hover {
  color: #fff;
}
.top-bar a i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* --- ANA HEADER --- */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: transparent; /* Başlangıçta şeffaf */
}
.main-header.scrolled {
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo {
  font-family: "Russo One", sans-serif;
  font-size: 1.8rem;
  color: #fff;
}

/* --- ANA NAVİGASYON --- */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 35px;
}
.main-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s;
}
.main-nav ul li a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #fff;
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}
.nav-button-item a.btn {
  padding: 10px 25px;
}

/* --- MEGA MENÜ --- */
.has-megamenu {
  position: relative;
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background: #fff;
  color: #333;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(-50%) translateY(20px) scale(0.95);
}
.has-megamenu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mega-menu-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mega-menu-col h4 i {
  color: var(--primary-color);
}
.mega-menu-col a {
  display: block;
  padding: 8px 0;
  color: #555;
  font-weight: 500;
}
.mega-menu-col a:hover {
  color: var(--primary-color);
}
.mega-menu .featured-col {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mega-menu .featured-col h4 {
  color: #fff;
}
.mega-menu .featured-col p {
  margin-bottom: 20px;
}

/* --- MOBİL MENÜ BUTONU (HAMBURGER) --- */
#mobile-menu-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  display: none; /* Mobilde gösterilecek */
}
.line {
  position: absolute;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.line-1 {
  top: 0;
}
.line-2 {
  top: 50%;
  transform: translateY(-50%);
}
.line-3 {
  bottom: 0;
}
#mobile-menu-button.open .line-1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#mobile-menu-button.open .line-2 {
  opacity: 0;
}
#mobile-menu-button.open .line-3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobil için Media Query'ler */
@media (max-width: 992px) {
  .main-header {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
  }
  #mobile-menu-button {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  .main-nav.active {
    max-height: 500px; /* İçeriğe göre ayarlanabilir */
  }
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  .main-nav ul li {
    width: 100%;
  }
  .main-nav ul li a {
    width: 100%;
    display: block;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .has-megamenu .mega-menu {
    /* Mobilde mega menüyü devre dışı bırak */
    display: none;
  }
}
/* =================================================================
   PRELOADER VE GELİŞMİŞ LOGO TASARIMI
   ================================================================= */

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0c; /* Koyu başlangıç ekranı */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-path {
  stroke-dasharray: 235.6; /* Path'in toplam uzunluğu */
  stroke-dashoffset: 235.6;
  animation: draw 1.5s ease-in-out forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.preloader-svg text {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 1s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* --- YENİ ANİMASYONLU LOGO --- */
.logo-link {
  display: inline-block;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo-link:hover .site-logo {
  transform: rotate(360deg);
}
.logo-bg {
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}
.logo-c {
  stroke: #fff;
  stroke-width: 10;
  fill: none;
  transition: stroke-dashoffset 0.8s ease;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
}
.logo-g {
  font-family: "Russo One", sans-serif;
  font-size: 60px;
  fill: #fff;
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.logo-link:hover .logo-c {
  stroke-dashoffset: 0;
}
.logo-link:hover .logo-g {
  opacity: 1;
}

.logo-text {
  font-family: "Russo One", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400; /* Russo One'da bold anlamsız */
}

/* Header küçüldüğünde logo metnini gizle (sadece ikon kalsın) */
.main-header.scrolled .logo-text {
  font-size: 0;
  opacity: 0;
  width: 0;
  margin-left: -12px; /* Gap'i sıfırlamak için */
  transition: all 0.3s ease;
}
.main-header .logo-text {
  transition: all 0.3s ease 0.1s;
}
/* Hızlı Erişim Butonları */
/* Mevcut .fab-container stilleriniz bu yeni footer ile uyumludur. */
/* =================================================================
   GELİŞMİŞ LOGO v2.0 (Metin Kaybolmayan Versiyon)
   ================================================================= */

.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Hafif esnek dönüş */
}

/* Logo İkonunun Parçaları */
.logo-bg-circle {
  fill: var(--primary-color);
  transition: fill 0.4s ease;
}
.logo-g-initial {
  font-family: "Russo One", sans-serif;
  font-size: 24px; /* SVG içinde daha iyi kontrol */
  font-weight: 700;
  fill: #fff;
  transition: transform 0.4s ease;
}

/* Logo Metni */
.logo-text-full {
  font-family: "Russo One", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap; /* Metnin kırılmasını önle */
}

/* --- HOVER EFEKTLERİ --- */
.logo-link:hover .site-logo {
  transform: rotate(360deg) scale(1.1);
}
.logo-link:hover .logo-bg-circle {
  fill: var(--secondary-color, #00c6ff); /* Hover'da ikincil renge dönsün */
}
.logo-link:hover .logo-g-initial {
  transform: scale(0.8) rotate(-15deg);
}

/* =================================================================
   HEADER SCROLL OLDUĞUNDAKİ LOGO GÖRÜNÜMÜ
   ================================================================= */
.main-header.scrolled .logo-container {
  gap: 10px; /* Aradaki boşluğu biraz azalt */
}
.main-header.scrolled .site-logo {
  /* İkonu hafif küçült */
  width: 32px;
  height: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.main-header.scrolled .logo-text-full {
  /* Metni küçült ve hafif şeffaflaştır */
  font-size: 1.3rem; /* Daha küçük font boyutu */
  opacity: 0.9;
}
/* =================================================================
   GELİŞMİŞ "TCG" LOGO TASARIMI v3.0
   ================================================================= */

.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Logo İkonunun Parçaları */
.logo-bg-shape {
  fill: var(--primary-color);
  transition: fill 0.4s ease;
}
.logo-text-initials {
  font-family: "Russo One", sans-serif;
  font-size: 38px;
  font-weight: 700;
  fill: #fff;
}

/* Harflere özel animasyonlar */
.logo-text-initials .char-t,
.logo-text-initials .char-c,
.logo-text-initials .char-g {
  display: inline-block;
  opacity: 1;
  transform-origin: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Logo Metni */
.logo-text-full {
  font-family: "Russo One", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

/* --- HOVER EFEKTLERİ --- */
.logo-link:hover .site-logo {
  transform: rotateY(360deg); /* 3D Y ekseninde dönüş */
}
.logo-link:hover .logo-bg-shape {
  fill: var(--secondary-color, #00c6ff);
}
/* Hover'da harflerin animasyonu */
.logo-link:hover .char-t {
  transform: translateY(-10px) scale(0.8);
  opacity: 0.5;
  transition-delay: 0s;
}
.logo-link:hover .char-c {
  transform: translateY(0px) scale(1.2);
  transition-delay: 0.1s;
}
.logo-link:hover .char-g {
  transform: translateY(10px) scale(0.8);
  opacity: 0.5;
  transition-delay: 0.2s;
}

/* =================================================================
   HEADER SCROLL OLDUĞUNDAKİ LOGO GÖRÜNÜMÜ
   ================================================================= */
.main-header.scrolled .logo-container {
  gap: 10px;
}
.main-header.scrolled .site-logo {
  width: 32px;
  height: 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.main-header.scrolled .logo-text-full {
  font-size: 1.3rem;
  opacity: 0.9;
}
/* =================================================================
   BLOG LİSTELEME VE DETAY SAYFASI TASARIMI
   ================================================================= */

/* --- Blog Listeleme Sayfası --- */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* Ana sayfadaki blog kartı stilini (blog-card-new) kullanıyoruz, 
   ek olarak bir excerpt (kısa içerik) stili ekleyelim. */
.blog-card-new .blog-excerpt {
  color: var(--text-color-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* --- Blog Detay Sayfası --- */

/* Hero (Yazı Başlığı) Alanı */
.blog-post-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.post-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.post-hero-content .category {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}
.post-hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.post-hero-content .post-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.post-hero-content .post-meta i {
  margin-right: 8px;
}

/* Yazı İçeriği ve Sidebar Layout */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px; /* Ana içerik ve sabit genişlikli sidebar */
  gap: 50px;
}

/* Ana İçerik */
.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
}
.post-content h1,
.post-content h2,
.post-content h3 {
  color: #333;
  margin-top: 2em;
  margin-bottom: 1em;
}

/* Sidebar */
.post-sidebar .sidebar-widget {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.post-sidebar .sidebar-widget h4 {
  font-size: 1.3rem;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts-list li {
  margin-bottom: 15px;
}
.recent-posts-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.recent-posts-list a:hover {
  color: var(--primary-color);
}
.recent-posts-list img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0; /* Küçülmesini engelle */
}

/* Mobil için */
@media (max-width: 992px) {
  .blog-post-layout {
    grid-template-columns: 1fr; /* Sidebar'ı alta taşı */
  }
  .post-sidebar {
    margin-top: 50px;
  }
  .post-hero-content h1 {
    font-size: 2.5rem;
  }
}
/* =================================================================
   ETKİLEYİCİ HAKKIMIZDA SAYFASI TASARIMI
   ================================================================= */

/* --- Hero Alanı --- */
.about-hero-section {
  height: 60vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.about-hero-content {
  position: relative;
  z-index: 2;
}
.about-hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.about-hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* --- Misyon & Vizyon --- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mission-card,
.vision-card {
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #eee;
  background-color: #fff;
}
.mission-card .card-icon,
.vision-card .card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}
.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.mission-card p,
.vision-card p {
  color: #666;
  line-height: 1.7;
}

/* --- Zaman Tüneli --- */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-container::after {
  /* Dikey çizgi */
  content: "";
  position: absolute;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}
.timeline-dot {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}
.timeline-content {
  padding: 20px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 8px;
}
.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}
.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}
.timeline-year {
  position: absolute;
  top: 22px;
  width: 100px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-year {
  right: -140px;
}
.timeline-item:nth-child(even) .timeline-year {
  left: -140px;
}

/* --- Ekip Bölümü --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.team-member-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.team-image-wrapper {
  position: relative;
}
.team-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.team-social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-member-card:hover .team-social-links {
  opacity: 1;
}
.team-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.team-member-info {
  padding: 25px;
}
.team-member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}
.team-member-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Mobil için */
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::after {
    left: 10px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    left: 0;
  }
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
  }
  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    display: none;
  }
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }
}
/* =================================================================
   ETKİLEYİCİ HAKKIMIZDA SAYFASI v2.0
   ================================================================= */

/* --- Hero Slider --- */
.about-hero-slider {
  height: 70vh;
  min-height: 500px;
  color: #fff;
}
.about-hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}
.about-hero-slider .about-hero-content h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* --- Biz Kimiz & Değerlerimiz --- */
.who-we-are-section {
  background: #f9f9f9;
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-we-are-content .text-left {
  text-align: left;
}
.who-we-are-content h2 {
  margin-bottom: 20px;
}
.who-we-are-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}
.value-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #333;
}
.value-item i {
  color: var(--primary-color);
}
.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: -20px 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* --- İstatistikler Alanı --- */
/* Ana sayfadaki #stats stilleri bu bölüm için de geçerlidir. */

/* --- Zaman Tüneli & Ekip Kartları --- */
/* Önceki cevaptaki #timeline ve #ekip stilleri bu bölüm için de geçerlidir. */

/* Mobil için */
@media (max-width: 992px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
  .who-we-are-image {
    order: -1;
    margin-bottom: 40px;
  } /* Resmi üste al */
}
/* =================================================================
   GELİŞTİRİLMİŞ "BİZ KİMİZ?" BÖLÜMÜ TASARIMI
   ================================================================= */

.who-we-are-section {
  /* Beyaz arka planı kaldırıp ana koyu temaya dönüyoruz */
  background-color: var(--background-color-dark);
  color: #fff; /* Metin rengini beyaza çeviriyoruz */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Arka plana soyut bir desen veya şekil ekleyelim */
.who-we-are-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-color-rgb), 0.1) 0%,
    rgba(var(--primary-color-rgb), 0) 70%
  );
  z-index: 0;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; /* Arka plan deseninin üzerinde kalması için */
  z-index: 1;
}

.who-we-are-content .text-left {
  text-align: left;
}

/* Başlık stilini güncelleyelim */
.who-we-are-content .section-title.animated-title h2 {
  color: #fff; /* Başlık rengini beyaz yap */
  margin-bottom: 25px;
}

/* Paragraf metnini daha okunaklı yapalım */
.who-we-are-content p {
  color: var(--text-color-light); /* Tam beyaz değil, hafif gri */
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Değerler bölümünü daha şık hale getirelim */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  background-color: rgba(255, 255, 255, 0.05); /* Yarı şeffaf arka plan */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.value-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.value-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Görsel alanını daha etkileyici yapalım */
.who-we-are-image {
  position: relative;
}
.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  /* Gölgeleri kaldırıp daha modern bir görünüm verelim */
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Görselin arkasına dekoratif bir çerçeve ekleyelim */
.who-we-are-image::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.4s ease;
}
.who-we-are-image:hover::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

/* Mobil için düzenlemeler */
@media (max-width: 992px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
  .who-we-are-image {
    order: -1;
    margin-bottom: 40px;
  }
}
/* =================================================================
   GELİŞTİRİLMİŞ "ZAMAN TÜNELİ" BÖLÜMÜ TASARIMI
   ================================================================= */

#timeline {
  /* section-on-dark class'ı zaten koyu arka planı sağlıyor,
       ek olarak bir desen veya gradyan ekleyebiliriz. */
  background-color: #0a0a0c; /* Daha derin bir siyah */
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(var(--primary-color-rgb), 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(var(--secondary-color-rgb, 0, 198, 255), 0.1),
      transparent 30%
    );
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Zaman Tüneli */
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
/* Dikey çizgi */
.timeline-container::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-color),
    transparent
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  animation: extendLine 3s ease-out forwards;
}

@keyframes extendLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
/* reveal animasyonu ile birlikte çalışacak başlangıç pozisyonu */
.timeline-item.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.reveal:nth-child(odd) {
  transform: translateX(-50px);
}
.timeline-item.reveal:nth-child(even) {
  transform: translateX(50px);
}

.timeline-item.reveal.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--background-color-dark);
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px var(--primary-color);
  transform: scale(0);
  animation: popIn 0.5s ease-out 0.5s forwards;
}
.timeline-item.revealed .timeline-dot {
  animation: popIn 0.5s ease-out 0.5s forwards;
}

@keyframes popIn {
  to {
    transform: scale(1);
  }
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  padding: 25px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  border-radius: 10px;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}
.timeline-content h4 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 10px 0;
}
.timeline-content p {
  color: var(--text-color-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.timeline-year {
  position: absolute;
  top: 20px;
  width: 120px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 1;
  text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}

.timeline-item:nth-child(odd) .timeline-year {
  right: -160px;
}
.timeline-item:nth-child(even) .timeline-year {
  left: -160px;
}

/* Mobil için */
@media (max-width: 992px) {
  .timeline-container::after {
    left: 10px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    left: 0;
  }
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
  }
  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    display: none; /* Mobilde yılları gizleyerek daha temiz bir görünüm */
  }
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }
}
/* =================================================================
   GELİŞTİRİLMİŞ "EKİP" BÖLÜMÜ TASARIMI v2.0
   ================================================================= */

#ekip {
  /* Beyaz arka planı kaldırıp ana koyu temaya dönüyoruz */
  background-color: var(--background-color-dark);
  padding-bottom: 120px; /* Alttaki boşluğu artır */
}

/* Bölüm başlığını koyu temaya uygun hale getir */
#ekip .section-title.animated-title h2 {
  color: #fff;
}
#ekip .section-title.animated-title span {
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.team-member-card {
  /* Beyaz arka planı kaldırıp cam efekti ekliyoruz */
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 350px; /* Sabit bir yükseklik vererek kartları hizala */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px); /* Başlangıçta hafif aşağıda */
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-member-card:hover .team-social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social-links a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.team-social-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.team-member-info {
  padding: 30px;
}

.team-member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #fff;
}

.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.team-member-info p {
  font-size: 0.95rem;
  color: var(--text-color-light);
  line-height: 1.7;
}
/* Hero Slider Medya Stilleri */
.hero-background-media,
.hero-background-media video,
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bu, videonun ve resmin alanı kaplamasını sağlar */
}
/* =================================================================
   ETKİLEYİCİ HAKKIMIZDA SAYFASI (TÜM BÖLÜMLER)
   ================================================================= */

/* --- BÖLÜM 1: HERO SLIDER --- */
.about-hero-slider {
  height: 70vh;
  min-height: 500px;
  color: #fff;
}
.about-hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.about-hero-slider .about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.6);
}

/* --- BÖLÜM 2: BİZ KİMİZ & DEĞERLERİMİZ --- */
.who-we-are-section {
  background-color: #f9f9f9; /* Temiz, açık gri bir zemin */
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-we-are-content .text-left {
  text-align: left;
}
.who-we-are-content h2 {
  color: #333;
  margin-bottom: 20px;
}
.who-we-are-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}
.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.value-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}
.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
}

/* --- BÖLÜM 3: İSTATİSTİKLER --- */
/* Bu bölümün stilleri ana sayfadan (#stats) gelmektedir ve uyumludur. */

/* --- BÖLÜM 4: ZAMAN TÜNELİ --- */
#timeline {
  background-color: #0a0a0c;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(var(--primary-color-rgb), 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(var(--secondary-color-rgb, 0, 198, 255), 0.1),
      transparent 35%
    );
  color: #fff;
}
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-container::after {
  /* Dikey çizgi */
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary-color),
    transparent
  );
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-item:nth-child(odd) {
  left: 0;
}
.timeline-item:nth-child(even) {
  left: 50%;
}
.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--background-color-dark);
  border: 4px solid var(--primary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px var(--primary-color);
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}
.timeline-content {
  padding: 25px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  border-radius: 10px;
}
.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}
.timeline-content h4 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 10px 0;
}
.timeline-content p {
  color: var(--text-color-light);
  line-height: 1.7;
  font-size: 0.95rem;
}
.timeline-year {
  position: absolute;
  top: 20px;
  width: 120px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 1;
  text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.5);
}
.timeline-item:nth-child(odd) .timeline-year {
  right: -160px;
}
.timeline-item:nth-child(even) .timeline-year {
  left: -160px;
}

/* --- BÖLÜM 5: PROFESYONEL EKİBİMİZ --- */
#ekip {
  background-color: #fff; /* Açık renkli bir zemin, zaman tünelinden sonra kontrast yaratır */
}
#ekip .section-title.animated-title h2 {
  color: #333;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.team-member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
}
.team-image-wrapper {
  position: relative;
  overflow: hidden;
}
.team-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}
.team-social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.team-member-card:hover .team-social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social-links a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.team-social-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}
.team-member-info {
  padding: 30px;
}
.team-member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #333;
}
.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}
.team-member-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* --- RESPONSIVE DÜZENLEMELER --- */
@media (max-width: 992px) {
  .who-we-are-grid {
    grid-template-columns: 1fr;
  }
  .who-we-are-image {
    order: -1;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .timeline-container::after {
    left: 10px;
  }
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    left: 0;
  }
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
  }
  .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    display: none;
  }
  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }
}
/* =================================================================
   GELİŞTİRİLMİŞ HAKKIMIZDA SAYFASI (KOYU TEMA ENTEGRASYONU)
   ================================================================= */

/* --- BÖLÜM 2: BİZ KİMİZ & DEĞERLERİMİZ (KOYU TEMA) --- */
.who-we-are-section {
  /* Beyaz/açık gri arka planı kaldırıp ana koyu temayı uyguluyoruz */
  background-color: var(--background-color-dark);
  color: #fff; /* Varsayılan metin rengini beyaza çeviriyoruz */
  position: relative;
  overflow: hidden;
}

/* Arka plana soyut bir desen/parlama ekleyerek derinlik katıyoruz */
.who-we-are-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-color-rgb), 0.08) 0%,
    rgba(var(--primary-color-rgb), 0) 70%
  );
  z-index: 0;
}

.who-we-are-grid {
  /* Grid yapısı aynı kalıyor */
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; /* Arka plan deseninin üzerinde kalması için */
  z-index: 1;
}

/* Başlık ve metin renklerini koyu temaya uygun hale getiriyoruz */
.who-we-are-content .section-title.animated-title h2 {
  color: #fff;
  margin-bottom: 25px;
}
.who-we-are-content p {
  color: var(--text-color-light); /* Tam beyaz değil, daha okunaklı bir ton */
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Değerler kutularını "cam efekti" ile yeniden tasarlıyoruz */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  background-color: rgba(255, 255, 255, 0.05); /* Yarı şeffaf arka plan */
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.value-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.value-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Görsel alanını daha etkileyici yapıyoruz */
.who-we-are-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: none; /* Koyu temada gölge yerine çerçeve daha şık durur */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- BÖLÜM 5: PROFESYONEL EKİBİMİZ (KOYU TEMA) --- */
#ekip {
  /* Beyaz arka planı kaldırıp açık gri bir tona çeviriyoruz, zaman tünelinden sonra güzel bir geçiş olur */
  background-color: #f4f7f6;
}
#ekip .section-title.animated-title h2 {
  color: #333; /* Başlık rengini koyu yapıyoruz */
}

/* Ekip kartı tasarımını tamamen güncelliyoruz */
.team-member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}
.team-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.team-member-card:hover .team-social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social-links a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.team-social-links a:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Ekip üyesi bilgi metinlerinin renklerini düzeltiyoruz */
.team-member-info {
  padding: 30px;
}
.team-member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #333; /* Koyu metin rengi */
}
.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 500;
}
.team-member-info p {
  font-size: 0.95rem;
  color: #666; /* Okunabilir gri tonu */
  line-height: 1.7;
}
/* =================================================================
   GELİŞTİRİLMİŞ "EKİP" BÖLÜMÜ TASARIMI v2.1 (DAHA GÜÇLÜ)
   ================================================================= */

/* ID seçicisi kullanarak kuralı daha spesifik ve güçlü yapıyoruz */
body.page-hakkimizda section#ekip {
  background-color: #f4f7f6 !important; /* Açık gri bir zemin */
}

body.page-hakkimizda section#ekip .section-title.animated-title h2 {
  color: #333 !important; /* Başlık rengini koyu yapıyoruz */
}

/* Ekip kartı tasarımını tamamen güncelliyoruz */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.team-member-card {
  background: #fff !important;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.15);
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
}
.team-image-wrapper img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-social-links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.team-member-card:hover .team-social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social-links a {
  width: 45px;
  height: 45px;
  background: #fff;
  color: var(--primary-color) !important;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.team-social-links a:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  transform: scale(1.1);
}

/* Ekip üyesi bilgi metinlerinin renklerini düzeltiyoruz */
.team-member-info {
  padding: 30px;
}
.team-member-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #333 !important; /* Okunabilirliği garanti et */
}
.team-member-info h4 {
  font-size: 1rem;
  color: var(--primary-color) !important;
  margin-bottom: 20px;
  font-weight: 500;
}
.team-member-info p {
  font-size: 0.95rem;
  color: #666 !important; /* Okunabilirliği garanti et */
  line-height: 1.7;
}
/* Proje Detay - Ana Medya Alanı */
.main-project-media {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.main-project-media .video-container video {
  width: 100%;
  display: block;
}

/* Galeri Başlığı */
.gallery-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Galeri itemları için overlay */
.gallery-media-item a {
  position: relative;
}
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-media-item a:hover .media-overlay {
  opacity: 1;
}
/* =================================================================
   PORTFOLYO LİSTELEME SAYFASI TASARIMI
   ================================================================= */

/* --- Sayfa Başlığı (Hero) --- */
.portfolio-header {
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.portfolio-header h1 {
  font-size: 3.5rem;
}
.portfolio-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
  max-width: 600px;
  margin: 10px auto 0 auto;
}

/* --- Proje Grid'i --- */
.portfolio-listing-grid {
  display: grid;
  /* 3 sütunlu bir grid yapısı */
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* 
   Ana sayfadaki portfolyo özet kartı (.portfolio-item-summary)
   stillerini burada da kullanıyoruz. Eğer bu stiller zaten 
   style.css dosyanızda varsa, tekrar eklemenize gerek yok.
   Eğer yoksa, işte o stiller:
*/
.portfolio-item-summary {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.portfolio-item-summary img {
  width: 100%;
  height: 300px; /* Listeleme sayfasında biraz daha yüksek olabilir */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item-summary:hover img {
  transform: scale(1.05);
}
.portfolio-item-summary .portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 40px 25px 25px 25px;
  color: #fff;
  text-align: left;
  transition: all 0.4s ease;
}
.portfolio-item-summary .portfolio-overlay h3 {
  margin: 0 0 5px 0;
  font-size: 1.5rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.portfolio-item-summary .portfolio-overlay span {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

/* Hover'da metinlerin belirmesi */
.portfolio-item-summary:hover .portfolio-overlay h3,
.portfolio-item-summary:hover .portfolio-overlay span {
  opacity: 1;
  transform: translateY(0);
}
/* =================================================================
   PORTFOLYO LİSTELEME SAYFASI TASARIMI
   ================================================================= */

/* --- Sayfa Başlığı (Hero) --- */
.portfolio-header {
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.portfolio-header h1 {
  font-size: 3.5rem;
}
.portfolio-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
  max-width: 600px;
  margin: 10px auto 0 auto;
}

/* --- Proje Grid'i --- */
.portfolio-listing-grid {
  display: grid;
  /* 3 sütunlu bir grid yapısı */
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* 
   Ana sayfadaki portfolyo özet kartı (.portfolio-item-summary)
   stillerini burada da kullanıyoruz. Eğer bu stiller zaten 
   style.css dosyanızda varsa, tekrar eklemenize gerek yok.
   Eğer yoksa, işte o stiller:
*/
.portfolio-item-summary {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.portfolio-item-summary img {
  width: 100%;
  height: 300px; /* Listeleme sayfasında biraz daha yüksek olabilir */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-item-summary:hover img {
  transform: scale(1.05);
}
.portfolio-item-summary .portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 40px 25px 25px 25px;
  color: #fff;
  text-align: left;
  transition: all 0.4s ease;
}
.portfolio-item-summary .portfolio-overlay h3 {
  margin: 0 0 5px 0;
  font-size: 1.5rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.portfolio-item-summary .portfolio-overlay span {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

/* Hover'da metinlerin belirmesi */
.portfolio-item-summary:hover .portfolio-overlay h3,
.portfolio-item-summary:hover .portfolio-overlay span {
  opacity: 1;
  transform: translateY(0);
}
/* =================================================================
   MUHTEŞEM İLETİŞİM SAYFASI TASARIMI
   ================================================================= */

/* --- Hero Alanı --- */
.contact-header {
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contact-header .container {
  position: relative;
  z-index: 2;
}
.contact-header h1 {
  font-size: 3.5rem;
}
.contact-header p {
  font-size: 1.2rem;
  color: var(--text-color-light);
}

/* --- Ana İçerik Bölümü --- */
.contact-section {
  background: #f9f9f9;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Hero alanının üzerine binsin */
  position: relative;
  z-index: 3;
}

/* --- Form Alanı --- */
.contact-form-wrapper .text-left {
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
}
.contact-form-wrapper .btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* --- İletişim Detayları --- */
.info-card {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color, #00c6ff)
  );
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.info-content h4 {
  font-size: 1.1rem;
  margin: 0 0 5px 0;
}
.info-content p,
.info-content p a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobil için */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 30px;
  }
  .contact-details-wrapper {
    margin-top: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Portfolyo Sayfası Hero Alanı */
.portfolio-hero-particles {
  position: relative; /* Parçacıkların doğru konumlanması için */
  overflow: hidden;
}

#portfolio-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.portfolio-hero-particles .container {
  position: relative; /* İçeriğin parçacıkların üzerinde kalması için */
  z-index: 2;
}
/* =================================================================
   SINIRLANDIRILMIŞ PARÇACIK EFEKTİ STİLLERİ
   ================================================================= */

.contact-header {
  /* Ana header stilini koruyoruz */
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative; /* Konteynerin konumlanması için */
}

/* Konteynerin kendisini göreceli konumlandırıyoruz */
.contact-header .container {
  position: relative;
  z-index: 2; /* İçeriğin parçacıkların üzerinde kalmasını sağlar */
  border-radius: 15px; /* Köşeleri yuvarlat */
  overflow: hidden; /* Parçacıkların dışarı taşmasını engelle */
  padding: 80px 40px; /* İçeriğe boşluk ver */
  background: rgba(0, 0, 0, 0.2); /* Hafif bir arka plan tonu */
}

/* Parçacıkların bulunacağı alanın stilini tanımlıyoruz */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* İçeriğin arkasında, konteynerin içinde kalır */
}

/* Başlık ve metnin konumunu ayarlıyoruz */
.header-content {
  position: relative;
  z-index: 2; /* Parçacıkların üzerinde kalır */
}
/* =================================================================
   GELİŞTİRİLMİŞ SAYFA GİRİŞİ (HERO) STİLİ v2.0
   ================================================================= */

/* Konteynerin içindeki elemanların dikeyde sıralanmasını sağlıyoruz */
.contact-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo-container {
  margin-bottom: 30px; /* Logo ile başlık arasına boşluk */
  transform-style: preserve-3d; /* 3D animasyonlar için */

  /* YENİ: Sürekli hareket animasyonu ekliyoruz */
  animation: floatAnimation 6s ease-in-out infinite;
}

/* Yavaşça yukarı-aşağı salınım efekti için animasyon */
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Yukarı hareket */
  }
  100% {
    transform: translateY(0);
  }
}

.hero-page-logo {
  /* Header'daki logodan devralınan stilleri kullanabiliriz */
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-logo-container:hover .hero-page-logo {
  transform: rotateY(180deg) scale(1.1);
}
/* Hover'da ana animasyonu durdurarak sadece hover efektinin çalışmasını sağlıyoruz */
.hero-logo-container:hover {
  animation-play-state: paused;
}

/* Header'daki logo stilleri bu logoya da etki etmeli.
   Eğer etmiyorsa, aşağıdaki kuralları da ekleyebilirsiniz. */
.hero-page-logo .logo-bg-shape {
  fill: var(--primary-color);
  transition: fill 0.4s ease;
}
.hero-page-logo .logo-text-initials {
  font-family: "Russo One", sans-serif;
  font-size: 38px;
  font-weight: 700;
  fill: #fff;
}
.hero-page-logo .char-t,
.hero-page-logo .char-c,
.hero-page-logo .char-g {
  display: inline-block;
  transition: all 0.4s ease;
}

.hero-logo-container:hover .logo-bg-shape {
  fill: var(--secondary-color, #00c6ff);
}
.hero-logo-container:hover .char-t {
  transform: translateY(-10px);
}
.hero-logo-container:hover .char-c {
  transform: scale(1.2);
  transition-delay: 0.1s;
}
.hero-logo-container:hover .char-g {
  transform: translateY(10px);
}

/* === KONUMLANDIRMA DÜZELTMESİ === */

/* Ana header container'ının padding'ini biraz azaltarak içeriği yukarı taşıyoruz */
.contact-header .container {
  padding: 60px 40px; /* Üst ve alt padding azaltıldı */
}

/* Sayfa başlığının (İLETİŞİM / PORTFOLYO) altındaki boşluğu azaltıyoruz */
.header-content h1 {
  margin-bottom: 10px;
}
/* Blog Sayfası Hero Alanı */
.blog-hero-particles {
  position: relative; /* Parçacıkların doğru konumlanması için */
  overflow: hidden;
}

/* 
   NOT: .contact-header .container, .particles-container, .hero-logo-container, .header-content 
   gibi sınıflar için stiller zaten mevcut olduğundan, bu yeni hero alanı
   otomatik olarak aynı şık görünüme sahip olacaktır. Ek bir CSS'e genellikle gerek yoktur.
*/
/* =================================================================
   SINIRLANDIRILMIŞ VE DAHA KOMPAKT PARÇACIK EFEKTİ STİLLERİ
   ================================================================= */

.contact-header {
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  padding: 60px 0; /* Yükseklik azaltıldı */
  position: relative;
}

.contact-header .container {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  padding: 60px 40px; /* İç yükseklik de azaltıldı */
  background: rgba(0, 0, 0, 0.2);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}
/* =================================================================
   ULTRA-KOMPAKT PARÇACIK EFEKTİ STİLLERİ v2.0
   ================================================================= */

.contact-header {
  background-color: var(--background-color-dark);
  color: #fff;
  text-align: center;
  /* Dış boşluğu minimuma indiriyoruz */
  padding: 40px 0;
  position: relative;
}

.contact-header .container {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  /* İç boşluğu da oldukça azaltıyoruz */
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.2);
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}

/* Bu kadar dar bir alanda logo çok büyük kalabilir, onu da biraz küçültelim */
.hero-page-logo {
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 20px !important;
}

.header-content h1 {
  font-size: 2.5rem; /* Başlık fontunu da hafifçe küçültelim */
  margin-bottom: 5px;
}

.header-content p {
  font-size: 1.1rem; /* Alt başlık fontu */
}
/* =================================================================
   PORTFOLYO HERO SLIDER TASARIMI
   ================================================================= */
.portfolio-hero-slider {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 50px;
}
.portfolio-hero-slide {
  background-position: center;
  background-size: cover;
  width: 450px; /* Slayt genişliği */
  height: 300px; /* Slayt yüksekliği */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.portfolio-hero-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.portfolio-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-hero-slide .slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}
.portfolio-hero-slider .swiper-button-next,
.portfolio-hero-slider .swiper-button-prev {
  color: #fff;
}
/* =================================================================
   MUHTEŞEM İLETİŞİM SAYFASI TASARIMI v2.0
   ================================================================= */

/* --- Hero Alanı (Mevcut stiller geçerli) --- */
/* .contact-header ve ilgili stilleriniz bu yeni tasarımla uyumludur. */

/* --- Yeni Tasarımlı İletişim Bölümü --- */
.contact-section-v2 {
  padding: 120px 0;
  /* Koyu temayı burada da devam ettiriyoruz */
  background-color: var(--background-color-dark);
}

.contact-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Sol sütun daha dar */
  gap: 80px;
  align-items: center;
}

/* Sol Sütun: Bilgiler */
.contact-info-col .section-title.animated-title h2 {
  margin-bottom: 20px;
}
.contact-intro {
  color: var(--text-color-light);
  line-height: 1.8;
  margin-bottom: 40px;
}
.info-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.info-item-v2 .info-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: rgba(var(--primary-color-rgb), 0.1);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.info-item-v2 .info-content h4 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  color: #fff;
}
.info-item-v2 .info-content p,
.info-item-v2 .info-content p a {
  color: var(--text-color-light);
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}
.info-item-v2 .info-content p a:hover {
  color: var(--primary-color);
}

/* Sağ Sütun: Form */
#contact-form-v2 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
}
#contact-form-v2 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#contact-form-v2 .form-group {
  margin-bottom: 20px;
}
#contact-form-v2 .form-group input,
#contact-form-v2 .form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
}
#contact-form-v2 .form-group input::placeholder,
#contact-form-v2 .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#contact-form-v2 .form-group input:focus,
#contact-form-v2 .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
}
#contact-form-v2 .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Harita Bölümü */
.map-section {
  width: 100%;
  height: 450px;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(1) contrast(0.8); /* Haritayı koyu temaya uydur */
}

/* Mobil için */
@media (max-width: 992px) {
  .contact-grid-v2 {
    grid-template-columns: 1fr;
  }
  .contact-form-col {
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  #contact-form-v2 .form-row {
    grid-template-columns: 1fr;
  }
}
/* =================================================================
   HIZLI ERİŞİM MENÜSÜ (FAB) TASARIMI
   ================================================================= */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse; /* Butonların yukarı doğru açılması için */
  align-items: center;
}

/* Ana Tetikleyici Buton (+) */
.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  position: relative; /* İkonların üst üste binmesi için */
}
.fab-main:hover {
  transform: scale(1.1);
  background-color: var(--secondary-color, #00c6ff);
}

/* Ana butondaki + ve X ikonları */
.fab-main .fa-plus,
.fab-main .fa-times {
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fab-main .fa-times {
  transform: rotate(-45deg) scale(0);
  opacity: 0;
}
/* Menü açıldığında ikon değişimi */
.fab-container.active .fab-main .fa-plus {
  transform: rotate(45deg) scale(0);
  opacity: 0;
}
.fab-container.active .fab-main .fa-times {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Açılacak İkonların Sarmalayıcısı */
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* İkonlar arası boşluk */
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
}

/* Tekil İkonlar (WhatsApp, Mail vb.) */
.fab-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: #555;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative; /* Tooltip için */

  /* Başlangıç animasyon durumu (gizli ve küçük) */
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Açılma Animasyonu */
.fab-container.active .fab-option {
  opacity: 1;
  transform: scale(1);
  /* Her ikonun farklı bir gecikmeyle belirmesi */
  transition-delay: calc(0.05s * var(--i));
}

/* İkonların üzerine gelince Tooltip (İpucu) */
.fab-option::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 120%; /* İkonun solunda */
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fab-option:hover::before {
  opacity: 1;
  visibility: visible;
}
/* =================================================================
   ULTIMATE FOOTER TASARIMI v3.0
   ================================================================= */
#main-footer-v3 {
  background-color: #0a0a0c;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  position: relative;
  overflow: hidden;
}
.footer-background-pattern {
  /* Arka plana ince bir desen ekler */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,..."); /* SVG desen kodu */
  opacity: 0.05;
}
.footer-logo-link-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 20px;
}
.footer-logo-link-v2 span {
  font-family: "Russo One", sans-serif;
  font-size: 1.6rem;
}
.footer-col.latest-posts-col ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-col.latest-posts-col ul li a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
}
/* Yukarı Çık Butonu */
.back-to-top-btn {
  background-color: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top-btn:hover {
  background-color: var(--secondary-color, #00c6ff);
}
``css
/* =================================================================
   "ULTIMATE" EKSTRA ÖZELLİKLER
   ================================================================= */

/* --- 1. AKILLI "YUKARI ÇIK" BUTONU --- */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px; /* FAB'ın ters tarafına */
  z-index: 998;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn i {
  color: #fff;
  font-size: 1rem;
  z-index: 2;
}
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.progress-ring__circle-bg {
  stroke: rgba(255, 255, 255, 0.2);
}
.progress-ring__circle {
  stroke: var(--primary-color);
  transition: stroke-dashoffset 0.1s linear;
}

/* --- 2. ÖZEL FARE İMLECİ --- */
body {
  cursor: none; /* Varsayılan imleci gizle */
}
.custom-cursor {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none; /* İmlecin tıklamaları engellememesi için */
  z-index: 9999;
  transition: all 0.1s ease-out;
  backdrop-filter: invert(1);
  mix-blend-mode: difference;
}
.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(var(--primary-color-rgb), 0.2);
}
.custom-cursor.expand {
  animation: cursorAnim 0.5s forwards;
}
@keyframes cursorAnim {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Mobilde özel imleci gizle */
@media (max-width: 992px) {
  body {
    cursor: auto;
  }
  .custom-cursor {
    display: none;
  }
}

/* --- Gelişmiş Footer --- */
/* Önceki cevaptaki footer stilleri geçerlidir, bunlar ekstradır */
.footer-col.latest-posts-col ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-col.latest-posts-col ul li:last-child a {
  border-bottom: none;
}
.footer-col.latest-posts-col ul li a img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.footer-col.latest-posts-col ul li a:hover img {
  transform: scale(1.1);
}
