/*
 Theme Name:   Astra-Child
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Astra Child Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  astra-child
*/


/* Astra Fontlarını Ezmek ve UMG Fontunu Tanımlamak */
body, h1, h2, h3, h4, h5, h6, a, p, span, li, div {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Sitenizin Global Renk Değişkenleri */
:root {
    --brand-main: #2c1e1f;
    --brand-dark: #2c1e1f;
    --text-main: #1a1a1a;
}

/* =======================================================
   ASTRA HEADER -> UMG ORİJİNAL TASARIM SENKRONİZASYONU
======================================================= */

/* 1. Kapsayıcı (Container) ve Header Boşlukları */
.ast-main-header-wrap {
    background-color: #2c1e1f !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}

/* Eski sitenizdeki 1300px genişliği ve 30px kenar boşluğunu zorla */
.ast-container {
    max-width: 1300px !important; 
    padding: 0 30px !important;
}

/* 2. Logo Boyutunu Birebir Eşitleme */
/* Astra logoyu bir container içine hapseder, bu o kilidi açar */
.site-logo-img, .custom-logo-link {
    max-width: none !important; 
    display: block !important;
}

/* Logonuzun net ölçüsü: 225px */
.custom-logo-link img, .site-logo-img img {
    width: 225px !important;
    max-width: 225px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important; /* Logoyu beyaza çevirir */
    display: block !important;
}

/* 3. Menü Yazıları ve Boşlukları (Birebir UMG Tasarımı) */
/* Astra'nın kendi boşluklarını silip sizin 'gap: 25px' yapınızı kuruyoruz */
.main-header-menu {
    display: flex !important;
    gap: 25px !important; 
}

/* Yazı tipleri, boyutlar ve incelik/kalınlık ayarı */
.main-header-menu .menu-item > .menu-link {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 13px !important; /* Orijinal boyut */
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    color: #fff !important;
    opacity: 0.9 !important;
    padding: 5px 0 !important;
    margin: 0 !important; /* Astra'nın gizli marginlerini ezer */
    line-height: 1.5 !important; 
    border-bottom: 2px solid transparent !important; 
}

/* Menü Hover ve Aktif Alt Çizgi Efekti */
.main-header-menu .menu-item:hover > .menu-link,
.main-header-menu .current-menu-item > .menu-link {
    opacity: 1 !important;
    border-bottom-color: #fff !important;
}

/* Astra'nın menü yanına koyduğu gereksiz ok ikonlarını gizler */
.ast-icon.icon-arrow {
    display: none !important;
}


/* --- YENİ EKLENEN ÖZEL LOGO İÇİN STİLLER --- */
.site-branding {
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 225px !important;
    max-width: 225px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important; /* Orijinal sitedeki gibi logoyu beyaza çevirir */
    display: block !important;
    transition: width 0.3s ease;
}

/* Mobil için logonun biraz küçülmesi gerekirse (Sizin orijinal kodunuzda 380px altında 180px idi) */
@media (max-width: 380px) {
    .brand-logo {
        width: 180px !important;
    }
}



/* --- AYARLAR --- */
:root {
    --brand-main: #2c1e1f;
    --brand-dark: #2c1e1f;
    --brand-blacker: #1a0506;
    --text-main: #1a1a1a;
    --text-gray: #555;
    --bg-light: #f9f9f9;
    --container: 1300px;
}

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

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
} 

h1, h2, h3, h4 { 
    font-family: "Georgia", "Times New Roman", Times, serif; 
    color: var(--text-main); 
    font-weight: 400; 
    line-height: 1.3; 
    margin-bottom: 15px; 
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
p { color: var(--text-gray); margin-bottom: 20px; }

/* Container Varsayilan */
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }

.mb-large { margin-bottom: 100px; }
.mb-medium { margin-bottom: 60px; }

/* --- SKELETON LOADING --- */
.skeleton-bg {
    background: #f0f0f0;
    background-image: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 20%, #f0f0e0 40%, #f0f0f0 100%);
    background-repeat: no-repeat;
    background-size: 200% 100%; 
    animation: shimmer 1.5s infinite linear;
    display: block;
    width: 100%;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* --- HEADER --- */
header {
    padding: 20px 0;
    background-color: var(--brand-dark);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
/* Flex yapisi */
.header-inner { display: flex; justify-content: space-between; align-items: center; }

/* Logo Temel Ayar */
.brand-logo { 
    width: 225px; 
    height: auto; 
    display: block; 
    filter: brightness(0) invert(1); 
    transition: width 0.3s ease;
}

/* Nav Wrapper Temel */
.nav-wrapper { display: flex; align-items: center; gap: 30px; }
#nav-toggle { display: none; } 

nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
nav a {
    font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; 
    color: #fff; opacity: 0.9; padding: 5px 0; position: relative; display: block;
}
nav a.active { border-bottom: 2px solid #fff; opacity: 1; }
nav a:hover { opacity: 1; }

.lang-btn {
    font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,0.3); padding: 5px 10px; 
    border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; color: #fff;
    white-space: nowrap; 
}
.hamburger { display: none; font-size: 30px; cursor: pointer; padding: 5px; line-height: 1; color: #fff; }

/* --- TABLET & GENEL MOBIL (1250px alti) --- */
@media (max-width: 1250px) {
    .hamburger { display: block; } 
    .nav-wrapper { gap: 20px; }
    .lang-btn { margin-left: auto; margin-right: 0; }

    nav {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #fff; border-bottom: 4px solid var(--brand-dark);
        max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    nav ul { flex-direction: column; padding: 30px 0; text-align: center; gap: 20px; }
    nav a { color: #000; font-size: 15px; padding: 10px 0; width: 100%; }
    #nav-toggle:checked ~ nav { max-height: 600px; }
}

/* --- MOBIL (500px Alti) --- */
@media (max-width: 500px) {
    /* 1. Kenarlardan alan kazan */
    .container { padding: 0 20px; }

    /* 2. Header dikey boslugunu azalt */
    header { padding: 15px 0; }

    /* 3. Sagdaki grubu SIKISTIR (Gap: 10px) */
    .nav-wrapper { gap: 10px; } 
     
    /* 4. Butonlari biraz daha kibar yap */
    .lang-btn { padding: 4px 8px; font-size: 11px; }
    .hamburger { font-size: 24px; padding: 0; }
}

/* --- COK KUCUK EKRANLAR (380px Alti) --- */
@media (max-width: 380px) {
        .container { padding: 0 15px; }
        .brand-logo { width: 180px; } 
}

/* --- MAIN --- */
main { display: block; }

/* --- HERO --- */
.seo-hero { 
    padding: 120px 30px 100px; 
    text-align: center; 
    max-width: 950px; 
    margin: 0 auto; 
}
.seo-hero h1 { font-size: 3rem; color: #000; margin-bottom: 30px; line-height: 1.2; letter-spacing: -1px; }
.seo-hero p { font-size: 1.15rem; color: #444; line-height: 1.8; max-width: 900px; margin: 0 auto; }
.highlight { color: var(--brand-dark); font-weight: 600; }

@media (max-width: 768px) { 
    .seo-hero { padding: 60px 30px; } 
    .seo-hero h1 { font-size: 2.2rem; } 
}

/* --- PROJELER --- */
.projects-section { content-visibility: auto; contain-intrinsic-size: 1000px; margin-bottom: 120px; }
.section-header { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.section-title { font-size: 2rem; margin: 0; color: #000; }
.view-all-btn { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.project-card { display: flex; flex-direction: column; }
.project-img-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 20px; border-radius: 2px; background-color: #f0f0f0; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; opacity: 0; animation: fadeIn 0.5s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); opacity: 0; transition: 0.4s; display: flex; justify-content: center; align-items: center; }
.overlay-btn { background: #fff; color: #000; padding: 10px 25px; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; transform: translateY(20px); transition: 0.4s; }
.project-img-wrap:hover .overlay { opacity: 1; }
.project-img-wrap:hover .overlay-btn { transform: translateY(0); }
.project-img-wrap:hover img { transform: scale(1.05); }
.project-content h3 { font-size: 1.6rem; margin-bottom: 15px; color: #000; }
.project-desc { font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 20px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; font-size: 0.85rem; border-top: 1px solid #eee; padding-top: 15px; }
.location-link { color: var(--brand-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px dotted transparent; }
.location-link:hover { border-bottom-color: var(--brand-dark); }
@media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; } }

/* --- NEDEN ONEMLI --- */
.why-important-section { text-align:center; max-width:850px; margin: 0 auto 60px; padding-top: 40px; }

/* --- VIDEOLAR --- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.video-card { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; background: #eee; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.video-card:hover img { filter: brightness(0.7); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 10; pointer-events: none; }
.play-btn::after { content:''; border-left: 18px solid var(--brand-dark); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 5px; }
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

/* --- HIZMETLER --- */
.merged-services-section { background-color: var(--bg-light); padding: 100px 0; margin-bottom: 100px; content-visibility: auto; }
.service-intro { max-width: 900px; margin: 0 auto 80px; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; }
.service-col h3 { font-size: 1.3rem; border-bottom: 1px solid #ccc; padding-bottom: 15px; margin-bottom: 15px; color: var(--brand-dark); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* --- BLOG --- */
.blog-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.blog-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 15px; background:#eee; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.4s; }
.blog-card:hover img { filter: grayscale(0%); }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card .date { font-size: 0.8rem; text-transform: uppercase; color: var(--brand-dark); display: block; margin-bottom: 5px; }
@media (max-width: 900px) { .blog-grid-3 { grid-template-columns: 1fr; } }

/* --- POLITIKALAR --- */
.policies-section { border-top: 1px solid #ddd; padding-top: 60px; margin-bottom: 100px; }
.policies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 40px; }
.policy-col h3 { font-size: 1.4rem; color: var(--brand-dark); margin-bottom: 20px; font-family: "Georgia", serif; }
.policy-col p { font-size: 1rem; color: #666; }
@media (max-width: 900px) { .policies-grid { grid-template-columns: 1fr; gap: 30px; } }

/* --- FOOTER --- */
footer { background: var(--brand-dark); color: #fff; padding: 80px 0 30px; content-visibility: auto; }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr; gap: 30px; max-width: var(--container); margin: 0 auto; padding: 0 30px; }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; } 
.footer-col li { margin-bottom: 8px; } 
.footer-col a { color: #fff; opacity: 0.9; font-size: 0.9rem; } 
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-logo { width: 225px; height: auto; filter: brightness(0) invert(1); margin-bottom: 20px; display: block; }
.kurumsal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.kurumsal-grid li { margin-bottom: 5px; }
.social-links { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.social-links img { width: 25px; height: 25px; filter: brightness(0) invert(1) !important; opacity: 0.9; transition: 0.3s; display: block; }
.social-links img:hover { opacity: 1; transform: scale(1.1); }
.copyright { text-align: center; margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

@media (max-width: 1200px) { 
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; row-gap: 60px;} 
    .footer-col:nth-child(4), .footer-col:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 768px) { 
    .footer-inner { grid-template-columns: 1fr; text-align: center; } 
    .social-links { justify-content: center; }
    .footer-logo { margin: 0 auto 20px; } 
}

/* --- METIN ODAKLI SAYFALAR (Gizlilik, KVKK vb.) --- */
.text-page-wrapper {
    max-width: 800px;    /* Ideal okuma genisligi (Cok genis olursa goz yorulur) */
    margin: 0 auto;      /* Sayfanin tam ortasina hizalar */
    padding: 80px 20px; /* Ustten/Alttan bosluk ve Mobilde kenar payi */
}

.text-page-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center; /* Ana basligi ortalamak genelde sik durur */
    color: #000;
}

.text-page-wrapper h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--brand-dark); /* Marka rengini alt basliklarda kullaniyoruz */
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.text-page-wrapper p {
    font-size: 1.05rem; /* Standarttan bir tik buyuk, okumasi kolay */
    line-height: 1.8;    /* Satir araligi ferah */
    color: #333;
    margin-bottom: 20px;
}

.text-page-wrapper ul, .text-page-wrapper ol {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #333;
}

.text-page-wrapper li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* --- CONTACT PAGE (YENÄ° TASARIM) --- */
.contact-section { margin-bottom: 80px; padding-top: 40px; }

/* 4 parÃ§alÄ± Ä±zgara yapÄ±sÄ±: Adrese vurgu, diÄŸerleri kÃ¼Ã§Ã¼k */
.contact-details-grid {
    display: grid;
    /* Adres sÃ¼tunu (1.5fr), diÄŸerleri (0.5fr) */
    grid-template-columns: 1.5fr 0.5fr 0.5fr 0.5fr; 
    gap: 30px;
    margin: 40px auto;
    padding-bottom: 60px;
}

.contact-detail-col {
    padding: 20px 10px;
}

/* Ä°lk kolon (Adres) iÃ§in Ã¶zel stil */
.contact-detail-col:first-child {
    border-right: 1px solid #eee;
    text-align: left;
    padding-right: 30px;
}

.contact-detail-col strong {
    display: block;
    font-size: 0.9rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-detail-col p, .contact-detail-col a {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.5;
    font-weight: 400;
}

.contact-detail-col a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

/* Harita AlanÄ± YÃ¼ksekliÄŸini ArtÄ±r */
.map-section { 
    height: 600px; /* Daha gÃ¶rÃ¼nÃ¼r bir yÃ¼kseklik */
    margin-bottom: 0; /* SayfanÄ±n en altÄ±ndaki boÅŸluÄŸu kaldÄ±r */
}

@media (max-width: 1100px) {
    .contact-details-grid { 
        grid-template-columns: repeat(2, 1fr); /* Tablette 2x2 */
    }
    .contact-detail-col:first-child {
        border-right: none;
        border-bottom: 1px solid #eee; /* Tablette yatay ayÄ±rÄ±cÄ± */
    }
}
@media (max-width: 600px) {
    .contact-details-grid { 
        grid-template-columns: 1fr; /* Mobilde tek sÃ¼tun */
    }
    .contact-detail-col:first-child {
        border-bottom: 1px solid #eee; 
    }
}

/* --- SCROLL DOWN ANIMATION --- */
.scroll-indicator {
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* ========================================= */
/* --- ABOUT SAYFASI VE GENEL YARDIMCILAR --- */
/* ========================================= */

/* Hero Video AlanÄ± */
.hero-video-section {
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
}
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
    color: #fff;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}
/* Hero Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 1px; }
}

/* Vision / Mutlu MÃ¼ÅŸteri AlanÄ± */
.vision-section { padding: 100px 0; background-color: #fff; }
.vision-container { max-width: 900px; text-align: center; margin: 0 auto; }
.vision-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 20px;
    font-weight: 700;
}
.vision-title { font-size: 2.2rem; margin-bottom: 40px; color: var(--brand-dark); }
.vision-text { font-size: 1.15rem; line-height: 1.8; color: #444; margin-bottom: 30px; }

/* Profil AlanÄ± GeliÅŸtirmeleri */
.profile-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.profile-img-frame {
    position: relative;
    padding: 0 0 10px 0;
}
.profile-img-frame img { width: 100%; display: block; filter: grayscale(20%); }

/* Grid DÃ¼zenleyiciler (Hizmetler ve Politikalar iÃ§in) */
.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    align-items: stretch; 
}
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
    align-items: stretch; 
}
/* Responsive Grid AyarlarÄ± */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
}

/* Flex Kart YapÄ±sÄ± (Linkleri alta itmek iÃ§in) */
.flex-col-card { display: flex; flex-direction: column; height: 100%; }
.flex-grow-text { flex-grow: 1; }

/* Ok Link Animasyonu */
.arrow-link {
    display: inline-block;
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}
.arrow-link:hover { border-bottom-color: var(--brand-dark); }

/* CTA (Call to Action) Butonu */
.cta-wrapper { padding: 100px 0; background-color: #fff; text-align: center; }
.cta-btn-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--brand-dark);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(125, 67, 71, 0.3);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-decoration: none;
}
.cta-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(125, 67, 71, 0.5);
    background-color: var(--brand-dark);
}

/* Genel YardÄ±mcÄ±lar */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--brand-dark); }
.text-white { color: #fff; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* ========================================= */
/* --- CLIENTS / REFERANSLAR SAYFASI --- */
/* ========================================= */

.clients-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.95rem; }
.clients-table th { text-align: left; padding: 15px; border-bottom: 2px solid var(--brand-dark); color: var(--brand-dark); font-weight: 700; }
.clients-table td { padding: 15px; border-bottom: 1px solid #eee; vertical-align: middle; color: #555; }
.clients-table tr:hover td { background-color: #f9f9f9; }
.clients-table a { font-weight: 600; color: var(--brand-dark); }
.clients-table a:hover { color: var(--brand-dark); text-decoration: underline; }

/* Mobilde tablo tasmamasi icin */
@media (max-width: 600px) {
    .clients-table { font-size: 0.85rem; }
    .desktop-only { display: none; } /* M2 ve Kategori gibi alanlari mobilde gizlemek isterseniz HTML'de bu class'i kullanin */
}

/* Musteri Logo Izgarasi */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}
.client-logo-item { text-align: center; }
.client-logo-item img { max-width: 100%; height: auto; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
.client-logo-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.client-logo-text { display: block; margin-top: 10px; font-size: 0.85rem; color: #777; }

/* Yillar Arasi Gecis Butonu (Tablo Ici) */
.jump-to-logos-row { background-color: #fff; text-align: center; padding: 30px !important; border-bottom: none !important; }
.jump-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--brand-dark); /* Cerceveli buton */
    color: var(--brand-dark) !important;
    text-decoration: none !important;
    border-radius: 50px; /* Yuvarlak hatli */
    font-size: 0.9rem;
    font-weight: 700;
    transition: 0.3s;
}
.jump-btn:hover { 
    background-color: var(--brand-dark); 
    color: #fff !important; 
}


/* ========================================= */
/* --- PROJECT STAGGERED SHOWCASE STÄ°LLERÄ° --- */
/* ========================================= */

.project-showcase-container {
    padding: 0; /* Tam geniÅŸlikte Ã§alÄ±ÅŸmasÄ± iÃ§in padding'i kaldÄ±rÄ±yoruz */
}

/* Ana Liste Konteyneri */
.project-staggered-list {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Projeler arasÄ±nda belirgin boÅŸluk */
    padding-bottom: 80px;
}

/* Tek Bir Proje BloÄŸu */
.project-stagger-item {
    display: flex;
    position: relative;
    align-items: center; /* Metin ve gÃ¶rseli dikeyde hizala */
    min-height: 70vh; /* Minimum yÃ¼ksekliÄŸi artÄ±r */
    margin: 0;
}

/* GÃ¶rsel Linki (EkranÄ±n bÃ¼yÃ¼k kÄ±smÄ±nÄ± kaplar) */
.stagger-image-link {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1; 
}

/* GÃ¶rselin Kendisi */
.stagger-image-wrap {
    margin: 0;
    height: 100%;
    overflow: hidden;
}
.stagger-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
/* Hover efekti (GÃ¶rseli hafifÃ§e bÃ¼yÃ¼t) */
.stagger-image-link:hover .stagger-image-wrap img {
    transform: scale(1.05);
}

/* Ä°Ã§erik Kutusu (GÃ¶rselin Ãœzerine/YanÄ±na Gelir) */
.stagger-content-box {
    position: relative; /* Z-index'i yÃ¼kseltmek iÃ§in */
    z-index: 10; 
    padding: 40px;
    width: 90%; 
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95); /* Hafif ÅŸeffaf beyaz kutu */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    margin: 0 auto; /* Mobilde ortala */
    transition: all 0.5s ease;
}

/* --- HÄ°ZALAMA MANTIÄI (DESKTOP) --- */

/* SOL HÄ°ZALAMA (GÃ¶rsel Solda, Metin Kutusu SaÄŸda) */
.project-stagger-item.align-left .stagger-image-link {
    width: 70%; 
    left: 0;
}
.project-stagger-item.align-left .stagger-content-box {
    margin-left: auto; /* Kutuyu saÄŸa iter */
    margin-right: 5%; 
}

/* SAÄ HÄ°ZALAMA (GÃ¶rsel SaÄŸda, Metin Kutusu Solda) */
.project-stagger-item.align-right .stagger-image-link {
    width: 70%;
    left: auto;
    right: 0;
}
.project-stagger-item.align-right .stagger-content-box {
    margin-right: auto; /* Kutuyu sola iter */
    margin-left: 5%;
}

/* --- Ä°Ã‡ERÄ°K STÄ°LLERÄ° --- */

.stagger-category-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-dark);
    margin-bottom: 10px;
}
.stagger-project-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.stagger-project-title a {
    color: var(--brand-dark);
}
.stagger-project-title a:hover {
    color: var(--brand-dark);
}
.stagger-description {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.stagger-meta-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}
.meta-item {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}
.meta-label {
    font-weight: 700;
    color: var(--brand-dark);
}

/* CTA Butonunun kÃ¼Ã§Ã¼k versiyonu (stagger-cta) */
.cta-btn-small {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--brand-dark);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-btn-small:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}

/* --- MOBÄ°L UYUM (768px AltÄ±) --- */
@media (max-width: 768px) {
    .project-staggered-list {
        gap: 20px;
        padding-bottom: 40px;
    }
    .project-stagger-item {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        margin-bottom: 40px;
    }
    /* GÃ¶rsel tam geniÅŸlik, oran 16:9 */
    .stagger-image-link, 
    .project-stagger-item.align-left .stagger-image-link,
    .project-stagger-item.align-right .stagger-image-link {
        position: relative;
        width: 100%;
        height: 300px;
        order: 1; /* GÃ¶rseli Ã¼ste al */
    }
    .stagger-image-wrap {
        height: 100%;
    }
    
    /* Ä°Ã§erik Kutusu (GÃ¶rselin hemen altÄ±nda, tam geniÅŸlikte) */
    .stagger-content-box,
    .project-stagger-item.align-left .stagger-content-box,
    .project-stagger-item.align-right .stagger-content-box {
        order: 2;
        width: 100%;
        max-width: none;
        padding: 30px 20px;
        position: relative; /* Normal akÄ±ÅŸta kalÄ±r */
        margin: 0;
        box-shadow: none;
        background-color: #fff; /* Tam opak beyaz */
        border: 1px solid #eee;
        border-top: none;
        border-radius: 0 0 4px 4px;
    }
    
    .stagger-project-title {
        font-size: 2rem;
    }
}


/* --- GELÄ°ÅMÄ°Å SAYFALAMA STÄ°LÄ° --- */
.pagination-bar {
    display: inline-flex; /* Ã–ÄŸeleri yan yana dizer */
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    background-color: #fff;
}
.pagination-item {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    border-right: 1px solid #ddd;
    transition: background-color 0.3s, color 0.3s;
}
.pagination-item:last-child {
    border-right: none;
}
.pagination-item.active {
    background-color: var(--brand-dark) !important;
    color: #fff !important;
    border-color: var(--brand-dark) !important;
}
.pagination-item.disabled { 
    background-color: #f5f5f5; 
    color: #ccc; 
    cursor: not-allowed; 
    pointer-events: none; 
    border-color: #eee; 
}


/* ========================================= */
/* --- YENÄ° SEO AKORDEON STÄ°LLERÄ° --- */
/* ========================================= */

.seo-accordion-section {
    /* Genel bÃ¶lÃ¼mÃ¼n arkaplanÄ± sade ve koyu tonlu olmalÄ± */
    background-color: var(--bg-light) !important; 
    border-top: 1px solid #ddd; 
}

/* Toggle Butonu */
.seo-toggle-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: background-color 0.3s;
}
.seo-toggle-button:hover {
    background-color: #f0f0f0;
}

/* Buton Ä°konu (AÃ§/Kapa GÃ¶rÃ¼nÃ¼mÃ¼) */
/* Buradaki CSS ikonlarÄ± tags.php'deki php ile taÅŸÄ±nan kodda yoktu, dÃ¼zeltildi. */
/* EÄŸer ikon kullanmak isterseniz, HTML'i ÅŸu ÅŸekilde gÃ¼ncelleyin:
<label for="tag-seo-toggle" class="seo-toggle-button">
    <span>Metin</span> <i class="button-icon"></i> 
</label>
*/
.button-icon {
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
    transition: transform 0.3s ease;
}
.button-icon::before, .button-icon::after {
    content: '';
    position: absolute;
    background-color: var(--brand-dark);
    transition: transform 0.3s ease;
}
.button-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.button-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* AKORDEON GÄ°ZLEME MANTIÄI */
.seo-accordion-content {
    /* BaÅŸlangÄ±Ã§ta gizli ve akÄ±cÄ± geÃ§iÅŸ */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out; 
    opacity: 0;
    padding: 0 10px; /* Kenarlardan biraz boÅŸluk */
    margin-top: 30px; /* Ä°Ã§erik aÃ§Ä±ldÄ±ÄŸÄ±nda Ã¼st boÅŸluk */
}

/* Checkbox iÅŸaretlendiÄŸinde iÃ§eriÄŸi aÃ§ */
.seo-toggle-checkbox:checked ~ .seo-accordion-content {
    max-height: 5000px; /* Yeterince bÃ¼yÃ¼k bir deÄŸer */
    opacity: 1;
}

/* Checkbox iÅŸaretlendiÄŸinde ikon dÃ¶nÃ¼ÅŸÃ¼ (Kapat iÅŸareti) */
.seo-toggle-checkbox:checked ~ .seo-toggle-button .button-icon::after {
    transform: translateX(-50%) rotate(90deg); /* Dikey Ã§ubuÄŸu yatay hale getir */
    opacity: 0; /* Dikey Ã§ubuÄŸu gizle */
}

/* Ä°Ã§erik metin stilleri (ug.css'e taÅŸÄ±ndÄ±) */
.seo-accordion-content h2 { font-size: 1.5rem; margin-bottom: 1rem; color: #222; }
.seo-accordion-content h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: #444; }
.seo-accordion-content p { font-size: 1rem; line-height: 1.7; color: #666; margin-bottom: 1rem; }


/* ========================================= */
/* --- 404 PAGE (CLASSIC BLACK & WHITE) --- */
/* ========================================= */

.classic-404-wrapper {
    /* Header ve Footer arasÄ±nda minimum yÃ¼kseklik */
    min-height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff; /* Temiz beyaz zemin */
    padding: 100px 0;
}

.classic-404-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* Sol Taraf: BÃ¼yÃ¼k Numara */
.classic-error-visual {
    padding-right: 40px; /* SaÄŸa Ã§izgi iÃ§in boÅŸluk */
    border-right: 1px solid #ddd;
}
.classic-big-number {
    font-size: 10rem;
    line-height: 1;
    font-weight: 700;
    color: #333; /* AÄŸÄ±r siyah */
    font-family: 'Times New Roman', Times, Baskerville, Georgia, serif; 
}


/* SaÄŸ Taraf: Metinler */
.classic-error-text-area {
    max-width: 500px;
    text-align: left;
}

.classic-heading {
    font-size: 2.5rem;
    font-weight: 400; /* Serif fontlarda baÅŸlÄ±klar Ã§ok kalÄ±n olmamalÄ± */
    color: #000;
    margin-bottom: 5px;
    font-family: 'Times New Roman', Times, serif;
}

.classic-separator-line {
    width: 80px;
    height: 4px;
    background-color: var(--brand-dark, #333); 
    margin: 15px 0 30px 0;
    border-radius: 2px;
}

.classic-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

/* Butonlar */
.error-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-classic-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--brand-dark, #000);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    border: 2px solid var(--brand-dark, #000);
}
.btn-classic-primary:hover {
    background-color: #222;
}

.btn-classic-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #444;
    border: 2px solid #ccc;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-classic-secondary:hover {
    border-color: var(--brand-dark, #000);
    color: var(--brand-dark, #000);
}

.btn-classic-primary i, .btn-classic-secondary i { margin-right: 8px; }


/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .classic-404-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .classic-error-visual {
        border-right: none;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .classic-big-number { font-size: 7rem; }
    .classic-separator-line { margin: 15px auto 30px auto; } /* Ã‡izgiyi ortala */
    .classic-error-text-area { text-align: center; }
    .error-actions { justify-content: center; }
}


/* ============================================================ */
/* --- CINEMATIC PROJECT DETAIL (FINAL STYLES) --- */
/* ============================================================ */

/* --- 1. HEADER & MENU --- */
.cm-header {
    position: absolute; top: 0; left: 0; width: 100%; height: 100px;
    z-index: 10001; /* MENÃœDEN (10000) DAHA YÃœKSEK OLMALI */
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; background: transparent; pointer-events: none;
}
.cm-header > * { pointer-events: auto; }

/* TEMA RENGÄ°NDE LOGO KAPSÃœLÃœ */
.cm-logo-capsule {
    background: var(--brand-dark, #333); /* Tema rengi yoksa siyah */
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}
.cm-logo-capsule:hover { transform: scale(1.02); }
.cm-logo-capsule img { height: 35px; width: auto; display: block; }

/* HAMBURGER */
.cm-hamburger {
    width: 45px; height: 45px; cursor: pointer; 
    /* Z-Index'i header'dan alÄ±yor, ekstradan gerek yok ama garanti olsun */
    pointer-events: auto; 
    display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
    background: var(--brand-dark, #333); 
    padding: 10px; border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.cm-hamburger span {
    display: block; height: 2px; background: #fff; border-radius: 2px;
    transition: 0.4s;
}
.cm-hamburger span:nth-child(1) { width: 25px; }
.cm-hamburger span:nth-child(2) { width: 18px; }
.cm-hamburger span:nth-child(3) { width: 25px; }
.cm-hamburger:hover span { width: 25px; }

/* Hamburger Close State (X Ä°ÅŸareti) */
.cm-hamburger.active { background: transparent; box-shadow: none; } 
.cm-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); width: 30px; background: #fff; }
.cm-hamburger.active span:nth-child(2) { opacity: 0; }
.cm-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); width: 30px; background: #fff; }

/* OVERLAY MENU */
.cm-overlay-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 10, 0.98); 
    z-index: 10000; /* Header'Ä±n (10001) ALTINDA OLMALI */
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease-in-out;
    padding-bottom: 20px;
}
.cm-overlay-menu.active { opacity: 1; visibility: visible; }

/* MENÃœ Ä°Ã‡Ä° LOGO */
.cm-menu-logo-container {
    margin-bottom: 30px;
    opacity: 0; transform: translateY(-20px); transition: 0.5s;
    text-align: center;
}
.cm-overlay-menu.active .cm-menu-logo-container { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* Link Listesi */
.cm-menu-links { text-align: center; list-style: none; padding: 0; margin: 0; }
.cm-menu-links li { margin: 10px 0; opacity: 0; transform: translateY(20px); transition: 0.5s; }
.cm-overlay-menu.active .cm-menu-links li { opacity: 1; transform: translateY(0); }

/* Animasyon Gecikmeleri (SÄ±rayla gelmesi iÃ§in) */
.cm-overlay-menu.active li:nth-child(1) { transition-delay: 0.15s; }
.cm-overlay-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.cm-overlay-menu.active li:nth-child(3) { transition-delay: 0.25s; }
.cm-overlay-menu.active li:nth-child(4) { transition-delay: 0.3s; }
.cm-overlay-menu.active li:nth-child(5) { transition-delay: 0.35s; }
.cm-overlay-menu.active li:nth-child(6) { transition-delay: 0.4s; }
.cm-overlay-menu.active li:nth-child(7) { transition-delay: 0.45s; }
.cm-overlay-menu.active li:nth-child(8) { transition-delay: 0.5s; }

/* MENÃœ LÄ°NKLERÄ° (TIMES NEW ROMAN / SERIF) */
.cm-menu-links a {
    /* Ä°stenilen Serif Font Ailesi */
    font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 2.2rem; /* Fontu biraz bÃ¼yÃ¼ttÃ¼k, serif olduÄŸu iÃ§in ince kalabilir */
    color: #fff; text-decoration: none; font-weight: 400; /* Serif fontlar normal kalÄ±nlÄ±kta daha ÅŸÄ±k durur */
    font-style: italic; /* Opsiyonel: Hafif italik Ã§ok ÅŸÄ±k durur, istemezseniz kaldÄ±rÄ±n */
    letter-spacing: 1px; transition: 0.3s;
}
.cm-menu-links a:hover { color: var(--brand-dark); }
.cm-menu-links a.active { color: var(--brand-dark); border-bottom: 1px solid var(--brand-dark); }

/* Dil Butonu (Fontu normal sans-serif kalsÄ±n daha okunaklÄ± olur veya serif yapabilirsiniz) */
.lang-switch-btn { 
    font-family: "Times New Roman", Times, serif; 
    font-size: 1.1rem !important; 
    border: 1px solid #fff; 
    padding: 8px 30px; 
    border-radius: 50px; 
    font-style: normal;
}
.lang-switch-btn:hover { background: #fff; color: #000 !important; }

/* Mobil Font Boyutu AyarÄ± */
@media(max-width:768px) { 
    .cm-menu-links a { font-size: 1.8rem; } 
    .cm-menu-logo-container img { max-width: 180px; height: auto; }
}

/* --- 2. HERO --- */
.project-hero-header {
    position: relative; height: 100vh !important; width: 100%;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding-top: 0; background-color: #000;
}
.hero-bg-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 0;
    animation: slowZoom 40s infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.35); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero-title { font-size: 4rem; font-weight: 700; line-height: 1.1; margin: 0; text-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.hero-category { display: block; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; opacity: 0.9; }

/* --- 3. META STRIP --- */
.project-meta-strip { background: #fff; border-bottom: 1px solid #eee; padding: 40px 0; }
.meta-flex-container {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px 60px;
}
.meta-item { display: flex; flex-direction: column; }
.meta-item .label { font-size: 0.7rem; text-transform: uppercase; color: #999; letter-spacing: 1px; margin-bottom: 5px; font-weight: 700; }
.meta-item .value { font-size: 1.15rem; font-weight: 600; color: #222; }
.meta-item .value a { color: #222; text-decoration: none; transition: 0.3s; }
.meta-item .value a:hover { color: var(--brand-dark); }
.mini-tags span { color: var(--brand-dark); margin-right: 5px; font-weight: 500; }

/* --- 4. GALLERY --- */
.project-gallery-mosaic { padding-bottom: 100px; }
.gallery-container-limit { max-width: 1100px; }
.single-column-stack { display: flex; flex-direction: column; gap: 80px; }
.gallery-stack-item img {
    width: 100%; height: auto; display: block; border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: transform 0.3s;
}
.gallery-stack-item img:hover { transform: scale(1.005); }

.gallery-stack-item figcaption {
    margin-top: 15px; width: 100%; font-size: 1rem; line-height: 1.6; color: #222;
    text-align: left; font-weight: 500; border-left: 4px solid var(--brand-dark); padding-left: 15px; box-sizing: border-box;
}

/* --- 5. NAV & BLOG --- */
.next-project-teaser { background: #f9f9f9; padding: 60px 0; border-top: 1px solid #eee; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.nav-btn-cinematic {
    display: inline-flex; align-items: center; gap: 15px; padding: 15px 30px;
    background: #fff; border: 1px solid #ddd; border-radius: 50px;
    color: #222; font-weight: 600; text-decoration: none; transition: 0.3s;
}
.nav-btn-cinematic:hover { background: #222; color: #fff; border-color: #222; }

/* WP Grid Fix */
.wp-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.blog-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.blog-img-link { display: block; height: 240px; }
.blog-img-link img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 20px; }

/* Mobil */
@media (max-width: 992px) { .wp-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .project-hero-header { height: 85vh !important; } .hero-title { font-size: 2.5rem; }
    .meta-flex-container { flex-direction: column; align-items: flex-start; gap: 30px; }
    .nav-wrapper { flex-direction: column; gap: 20px; }
    .wp-blog-grid { grid-template-columns: 1fr; }
    .cm-menu-links a { font-size: 1.5rem; }
}

/* ============================================================ */
/* --- TAGS LANDING PAGE STYLES (tags.php'den taÅŸÄ±ndÄ±) --- */
/* ============================================================ */

/* 1. Hero BÃ¶lÃ¼mÃ¼ */
.tag-hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* EkranÄ±n %60'Ä± */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--brand-dark);
}

.tag-hero-bg {
    position: absolute;
    top: -5%; left: -5%;
    width: 110%; height: 110%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4); /* BulanÄ±k ve karanlÄ±k */
    z-index: 1;
    transition: transform 10s ease;
}
.tag-hero-section:hover .tag-hero-bg { transform: scale(1.05); }

.tag-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.tag-hero-title {
    font-family: "Georgia", serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.tag-hero-cat {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

/* 2. Tabs (tags.php'den taÅŸÄ±ndÄ±) */
.tag-tabs { 
    display: flex; 
    justify-content: center; 
    margin-top: -30px; 
    position: relative; 
    z-index: 10; 
    gap: 10px; 
}
.tag-tab-btn { 
    background: white; 
    color: #333; 
    padding: 15px 30px; 
    border-radius: 5px; 
    text-decoration: none; 
    font-weight: 700; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    border: none; 
}
.tag-tab-btn.active { 
    background: var(--brand-dark); 
    color: white; 
    transform: translateY(-2px); 
}
.tag-tab-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.15); 
    color: #000; 
}
/* Content Spacer (tags.php'den taÅŸÄ±ndÄ±) */
.tag-content-spacer { 
    margin-top: 90px; 
} 

/* 3. Masonry Galeri (tags.php'den taÅŸÄ±ndÄ±) */
.masonry-grid {
    column-count: 3;
    column-gap: 30px;
    margin-bottom: 60px;
}
.masonry-wrapper-safe { 
    width: 100%; 
    display: block; 
    position: relative; 
    overflow: hidden; 
    min-height: 100px; 
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 30px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.masonry-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
}
.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}
.masonry-caption {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}
.masonry-caption h4 {
    font-size: 1rem; 
    margin: 0; 
    color: #222; 
    font-weight: 600;
}
.masonry-caption span {
    font-size: 0.85rem; 
    color: #888; 
    display: block; 
    margin-top: 5px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) { 
    .masonry-grid { column-count: 2; } 
    .tag-hero-title { font-size: 2.5rem; } 
    .tag-article-section { padding: 30px; margin-top: -40px; } 
}
@media (max-width: 600px) { 
    .masonry-grid { column-count: 1; } 
    .tag-hero-section { height: 50vh; } 
}

/* =======================================================
   WORDPRESS İÇERİK HEADER (ENTRY-HEADER) ÇAKIŞMA ÇÖZÜMÜ
======================================================= */

/* Sadece blog yazısı başlıklarını hedef alarak koyu arkaplanı iptal ediyoruz */
header.entry-header {
    background-color: transparent !important; 
    padding: 0 !important;
    border-bottom: none !important;
}

/* Arka plan beyaz/şeffaf olacağı için, başlık yazılarını koyu renge çeviriyoruz */
header.entry-header .entry-title,
header.entry-header .entry-title a {
    color: var(--text-main) !important; /* Sizin koyu metin renginiz */
    transition: color 0.3s ease;
}

header.entry-header .entry-title a:hover {
    color: var(--brand-dark) !important;
}

/* Tarih, kategori, yazar gibi "meta" bilgilerinin renklerini gri/okunabilir yapıyoruz */
header.entry-header .entry-meta,
header.entry-header .entry-meta a,
header.entry-header .entry-meta span {
    color: var(--text-gray) !important;
}

header.entry-header .entry-meta a:hover {
    color: var(--brand-dark) !important;
}



/* =======================================================
   FOOTER HİZALAMA VE ASTRA ÇAKIŞMA ÇÖZÜMÜ
======================================================= */

/* Sütunların içindeki tüm metinleri kesinlikle sola yasla */
.footer-col {
    text-align: left !important;
}

/* Astra'nın ul (liste) etiketlerine verdiği otomatik boşlukları sıfırla */
.footer-col ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}

/* Liste elemanlarının dikey boşlukları ve hizalaması */
.footer-col li {
    margin-bottom: 12px !important;
    padding-left: 0 !important;
    line-height: 1.5 !important;
}

/* "Kurumsal" altındaki 2'li grid (ızgara) yapısını korumaya zorla */
.kurumsal-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 15px !important; /* Satır ve sütun arası boşluk */
}

/* Grid içindeki li'lerin alt boşluğunu iptal et (boşluğu 'gap' yönetir) */
.kurumsal-grid li {
    margin-bottom: 0 !important; 
}

/* Sosyal medya ikonlarının sola tam yaslanmasını sağla */
.social-links {
    justify-content: flex-start !important;
}

/* =======================================================
   SIDEBAR / WIDGET (SON YAZILAR vb.) DÜZELTMESİ
======================================================= */

/* 1. Bileşen Başlığı (Siyah arka planı kaldırıp şık bir alt çizgi ekliyoruz) */
.widget-area .widget-title, 
.widget-area .wp-block-heading {
    background-color: transparent !important; 
    color: var(--brand-dark) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--brand-dark) !important;
    padding: 0 0 10px 0 !important;
    margin-bottom: 20px !important;
    display: block !important;
    text-transform: uppercase;
}

/* 2. Liste Konteyneri (Izgara/Flex hatalarını eziyoruz) */
.widget-area ul, 
.widget-area .wp-block-latest-posts {
    display: block !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* 3. Liste Elemanları (Harf harf bölünmeyi engelle ve satır yap) */
.widget-area ul li, 
.widget-area .wp-block-latest-posts li {
    display: block !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #eee !important;
    word-break: normal !important; /* Dikey patlamayı çözer */
    overflow-wrap: break-word !important;
    white-space: normal !important;
    background: transparent !important;
    line-height: 1.5 !important;
}

/* En son elemanın altındaki çizgiyi kaldır */
.widget-area ul li:last-child, 
.widget-area .wp-block-latest-posts li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 4. Linkler ve Metin Rengi (Siyah şeritleri temizle) */
.widget-area ul li a, 
.widget-area .wp-block-latest-posts li a {
    display: inline !important;
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    background: transparent !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.widget-area ul li a:hover, 
.widget-area .wp-block-latest-posts li a:hover {
    color: var(--brand-dark) !important;
}