/*
Theme Name: Coşkunyürek Hukuk
Theme URI: https://digitusajans.com
Author: Mutlu Dural - Digitus Ajans
Author URI: https://digitusajans.com
Description: Coşkunyürek Hukuk Bürosu için özel tasarlanmış premium tema.
Version: 3.0
Text Domain: coskunyurek
*/

/* ==========================================================================
   1. TEMEL AYARLAR VE DEĞİŞKENLER
   ========================================================================== */

/* Fontlar functions.php üzerinden Google Fonts ile çekilmektedir */

:root {
    /* Renk Paleti */
    --color-primary: #9c0225;   /* Bordo */
    --color-dark: #344554;      /* Koyu Füme / Lacivert */
    --color-text: #333333;      /* Koyu Gri Metin */
    --color-text-light: #666666; /* Açık Gri Metin */
    --color-white: #ffffff;
    --color-gold: #d4af37;      /* Premium Altın */
    --color-border: #e5e5e5;    /* İnce Çizgiler */
    
    /* Tipografi */
    --font-heading: 'Roboto', sans-serif; /* Başlıklar */
    --font-serif: 'Playfair Display', serif; /* Alternatif Serif Font */
    --font-body: 'Roboto', sans-serif;    /* Gövde Metni */
    
    /* Düzen Ayarları */
    --transition: all 0.3s ease;
    --container-width: 1400px;
    --header-height: 130px;
    --header-sticky-height: 130px; 
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

.container-fluid {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

/* ==========================================================================
   2. SITE HEADER (ÜST MENÜ)
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header .header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    transition: height 0.4s ease, padding 0.4s ease;
}

/* Logo */
.site-branding a { display: flex; align-items: center; }
.site-branding img { 
    max-height: 100px; 
    width: auto; 
    transition: var(--transition); 
}

.sticky-logo { display: none; }
.main-logo { display: block; }

.site-branding h1.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300; /* Light */
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    color: var(--color-white); 
}
.site-branding h1.logo-text span { font-weight: 500; } 

/* --- Sticky (Yapışkan) Durumu --- */
.site-header.is-sticky {
    background-color: var(--color-white);
    border-bottom: 3px solid var(--color-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.site-header.is-sticky .header-container {
    height: var(--header-sticky-height);
}

.site-header.is-sticky .main-logo { display: none; }
.site-header.is-sticky .sticky-logo { 
    display: block; 
    max-height: 100px; 
}

.site-header.is-sticky h1.logo-text { color: var(--color-dark); }

/* --- Ana Menü --- */
.main-navigation ul { display: flex; margin: 0; padding: 0; }
.main-navigation ul li { position: relative; list-style: none; }

.main-navigation > ul > li > a {
    display: block;
    padding: 0 25px;
    line-height: var(--header-height);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.site-header.is-sticky .main-navigation > ul > li > a {
    color: var(--color-dark);
    line-height: var(--header-sticky-height);
}

.main-navigation > ul > li:hover > a { color: var(--color-gold); }

/* Dropdown Menü */
.main-navigation ul ul.sub-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background-color: var(--color-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.main-navigation ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul.sub-menu li a {
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-transform: none;
    font-weight: 300;
    font-size: 14px;
}

.main-navigation ul ul.sub-menu li a:hover {
    background-color: rgba(0,0,0,0.2);
    color: var(--color-white) !important;
    padding-left: 25px;
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-white);
}
.site-header.is-sticky .mobile-menu-toggle { color: var(--color-dark); }

/* ==========================================================================
   3. HERO SLIDER (TAM EKRAN)
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #222;
    overflow: hidden;
}

.hero-swiper { width: 100%; height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }

/* Arka Plan Görseli */
.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 6s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1.05); }

/* Overlay Katmanı */
.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

/* İçerik */
.slide-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding-top: 80px;
}

.slide-content {
    text-align: center;
    max-width: 1000px;
    color: var(--color-white);
}

.slide-title {
    font-family: var(--font-heading);
    font-weight: 100; /* Thin */
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
}

.slide-subtitle {
    font-family: var(--font-body);
    font-weight: 300; /* Light */
    font-size: 22px;
    letter-spacing: 1px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

/* Animasyonlar */
.swiper-slide-active .slide-title { animation: fadeInUp 1s ease forwards 0.5s; }
.swiper-slide-active .slide-subtitle { animation: fadeInUp 1s ease forwards 0.8s; }

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

/* Navigasyon Dots */
.hero-pagination.swiper-pagination-bullets {
    top: 50%; left: 40px; bottom: auto; width: auto;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 15px; z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    opacity: 1; margin: 0 !important;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.3);
}

/* Scroll Down Oku */
.scroll-down-arrow {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 24px; z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer; opacity: 0.7;
}

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

/* ==========================================================================
   4. HAKKIMIZDA BÖLÜMÜ (Ana Sayfa)
   ========================================================================== */

.section-about {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 100; /* Thin */
    font-size: 48px;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-divider {
    width: 80px; height: 2px; background-color: var(--color-primary); margin-bottom: 30px;
}

.section-text {
    font-size: 16px; color: var(--color-text-light); line-height: 1.8;
    margin-bottom: 40px; font-weight: 300;
}

.section-text p { margin-bottom: 20px; }

/* Premium Buton */
.btn-premium {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    z-index: 1;
}

.btn-premium:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Hakkımızda Görseli */
.about-image-wrapper { position: relative; }

.about-img {
    width: 100%; height: auto;
    position: relative; z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.image-frame {
    position: absolute;
    top: -20px;     /* Üstten taşma */
    right: -20px;   /* Sağdan taşma */
    width: 100%; 
    height: 100%;
    border: 2px solid var(--color-gold);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   5. ÇALIŞMA ALANLARI (FAALİYET)
   ========================================================================== */

.section-practice {
    padding: 100px 0;
    background-color: #fafafa; 
}

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

.center-divider { margin: 0 auto; margin-top: 20px; }

.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.practice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 20px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.practice-name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 18px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.practice-icon {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-dark);
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 12px;
    transition: all 0.3s ease;
}

.practice-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.practice-item:hover .practice-name { color: var(--color-primary); }

.practice-item:hover .practice-icon {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

/* ==========================================================================
   6. REFERANSLAR
   ========================================================================== */

.section-references {
    padding: 60px 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.references-swiper { width: 100%; padding: 30px 0; }

.reference-slide {
    display: flex; justify-content: center; align-items: center; height: 150px;
}

.reference-item {
    display: flex; justify-content: center; align-items: center;
    height: 100%; width: 100%; padding: 15px;
    opacity: 0.5; filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer; position: relative;
}

.reference-item:hover {
    opacity: 1; filter: grayscale(0%); transform: translateY(-5px);
}

/* Referans Hover Çerçevesi (Sağ-Alt Köşe) */
.reference-item::after {
    content: '';
    position: absolute; bottom: 0; right: 0; width: 100%; height: 100%;
    border-bottom: 2px solid var(--color-gold);
    border-right: 2px solid var(--color-gold);
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
}

.reference-item:hover::after { opacity: 1; }

.reference-item img {
    max-height: 90px; width: auto; margin: 0 auto; transition: all 0.3s ease;
}

/* ==========================================================================
   7. CTA ALANI (PARALLAX)
   ========================================================================== */

.section-cta {
    position: relative;
    padding: 120px 0;
    background-attachment: fixed; /* Parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-white);
}

.cta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 35, 71, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative; z-index: 2;
    max-width: 800px; margin: 0 auto;
    text-align: center; /* Ortala */
}

.cta-title {
    font-family: var(--font-heading); font-weight: 100;
    font-size: 48px; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-white);
}

.cta-desc {
    font-family: var(--font-body); font-weight: 300;
    font-size: 18px; margin-bottom: 40px; opacity: 0.9;
}

/* Beyaz Buton Varyasyonu */
.btn-white {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-dark);
}

.btn-white:hover {
    background-color: var(--color-white); /* Beyaz Kalır */
    border-color: var(--color-gold);      /* Çerçeve Gold */
    color: var(--color-gold);             /* Yazı Gold */
}

/* ==========================================================================
   8. SITE FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-weight: 300;
    position: relative;
    z-index: 10;
}

.footer-top { padding: 80px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-title {
    color: var(--color-white); font-family: var(--font-heading); font-size: 20px;
    margin-bottom: 15px; letter-spacing: 1px; text-transform: uppercase;
}

.footer-title-text {
    color: var(--color-white); font-size: 24px; margin-bottom: 20px;
}
.footer-title-text span { font-weight: 700; }

.footer-divider {
    width: 40px; height: 2px; background-color: var(--color-gold); margin-bottom: 25px;
}

.footer-logo { max-height: 70px; margin-bottom: 25px; opacity: 0.9; }
.footer-desc { line-height: 1.6; margin-bottom: 25px; font-size: 14px; }

/* Sosyal Medya */
.footer-social { display: flex; gap: 15px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* Footer Menü */
.footer-nav ul li { margin-bottom: 12px; list-style: none; }
.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.7); font-size: 14px;
    transition: all 0.3s ease; display: inline-flex; align-items: center;
}
.footer-nav ul li a::before {
    content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    margin-right: 8px; font-size: 10px; color: var(--color-gold); opacity: 0;
    transform: translateX(-5px); transition: all 0.3s ease;
}
.footer-nav ul li a:hover { color: var(--color-white); padding-left: 5px; }
.footer-nav ul li a:hover::before { opacity: 1; transform: translateX(0); }

/* İletişim Listesi */
.contact-list li {
    display: flex; gap: 15px; margin-bottom: 20px; font-size: 14px; align-items: flex-start;
}
.contact-list li i { color: var(--color-gold); margin-top: 4px; }
.contact-list li a:hover { color: var(--color-gold); }

/* Hava Durumu Widget */
.weather-widget {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px; border-left: 2px solid var(--color-gold);
}
.weather-loading { font-size: 13px; font-style: italic; }
.weather-main { display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
.weather-main i { font-size: 32px; color: var(--color-white); }
.weather-temp {
    font-size: 36px; font-weight: 700; color: var(--color-white); font-family: var(--font-heading);
}
.weather-desc { font-size: 14px; color: var(--color-gold); margin-bottom: 10px; text-transform: capitalize; }
.weather-details {
    font-size: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; opacity: 0.8;
}

/* Footer Alt */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2); padding: 20px 0; font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.bottom-flex { display: flex; justify-content: space-between; flex-wrap: wrap; }

/* ==========================================================================
   9. İÇ SAYFALAR (GENEL)
   ========================================================================== */

/* Page Header */
.page-header {
    background-color: var(--color-dark);
    padding: 180px 0 80px 0; 
    text-align: center;
    color: var(--color-white);
    position: relative;
}

.page-subtitle {
    display: block; font-family: var(--font-body); font-size: 13px; letter-spacing: 3px;
    color: var(--color-gold); margin-bottom: 15px; text-transform: uppercase; font-weight: 500;
}

.page-title {
    font-family: var(--font-heading); font-weight: 100; font-size: 52px;
    margin: 0; text-transform: uppercase; letter-spacing: 1px;
}

.header-divider {
    width: 60px; height: 2px; background-color: var(--color-gold); margin: 25px auto 0;
}

/* İçerik Grid */
.site-content {
    padding: 80px 0;
    background-color: #fdfdfd;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Sidebar Solda (1), İçerik Sağda (2) */
    gap: 60px;
}

.sidebar-area { order: -1; } 

/* Makale Stilleri */
.premium-article .entry-content {
    font-family: var(--font-body); font-size: 17px; line-height: 1.8;
    color: var(--color-text); font-weight: 300;
}
.premium-article p { margin-bottom: 25px; text-align: justify; }
.premium-article h2, .premium-article h3, .premium-article h4 {
    font-family: var(--font-heading); color: var(--color-dark);
    margin-top: 40px; margin-bottom: 20px; font-weight: 400;
}
.premium-article h2 { font-size: 28px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.premium-article h3 { font-size: 22px; color: var(--color-primary); }
.premium-article ul, .premium-article ol { margin-bottom: 25px; padding-left: 20px; }
.premium-article ul li {
    list-style: none; position: relative; margin-bottom: 10px; padding-left: 25px;
}
.premium-article ul li::before {
    content: '\2022'; color: var(--color-gold); font-weight: bold;
    position: absolute; left: 0; top: 0px; font-size: 18px;
}

/* İçerik İçi CTA Kutusu */
.content-cta {
    margin-top: 60px; background-color: #fff; border: 1px solid var(--color-border);
    padding: 40px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.content-cta h3 {
    font-family: var(--font-heading); font-weight: 300; font-size: 24px;
    color: var(--color-dark); margin-bottom: 10px;
}
.content-cta p { margin-bottom: 25px; color: var(--color-text-light); }

.btn-dark {
    background-color: var(--color-dark); border-color: var(--color-dark); color: var(--color-white);
}
.btn-dark:hover { background-color: transparent; color: var(--color-dark); }

/* Sidebar Widget */
.sidebar-widget {
    background-color: #fff; padding: 30px;
    border: 1px solid var(--color-border); margin-bottom: 30px;
}
.widget-title {
    font-family: var(--font-heading); font-size: 18px; text-transform: uppercase;
    margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee;
    color: var(--color-dark); letter-spacing: 1px;
}

/* Sidebar Listesi */
.service-list li {
    list-style: none; margin-bottom: 12px; border-bottom: 1px solid #f5f5f5;
    padding-bottom: 12px;
}
.service-list li:last-child { border: none; margin: 0; padding: 0; }
.service-list a {
    display: flex; align-items: center; color: var(--color-text);
    font-size: 15px; font-weight: 400; transition: all 0.3s ease;
}
.service-list a .icon {
    margin-right: 10px; color: var(--color-text-light); font-size: 12px; transition: all 0.3s ease;
}
.service-list a:hover { color: var(--color-primary); padding-left: 5px; }
.service-list a:hover .icon { color: var(--color-gold); }

.contact-widget {
    background-color: var(--color-dark); color: var(--color-white); border: none;
}
.contact-widget .widget-title { color: var(--color-white); border-color: rgba(255,255,255,0.1); }
.contact-widget p { font-size: 14px; opacity: 0.8; margin-bottom: 20px; }
.contact-widget a {
    display: block; color: var(--color-white); margin-bottom: 10px; font-size: 16px;
}
.contact-widget a:hover { color: var(--color-gold); }

/* ==========================================================================
   10. ÖZEL SAYFALAR
   ========================================================================== */

/* --- BİZ KİMİZ --- */
.bio-section { padding: 100px 0; background-color: #fff; }
.bio-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; margin-bottom: 100px;
}
.bio-text h2 {
    font-family: var(--font-heading); font-weight: 100; font-size: 42px;
    color: var(--color-dark); margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border);
}
.bio-text p {
    font-size: 18px; line-height: 1.9; color: var(--color-text);
    margin-bottom: 25px; font-weight: 300; text-align: justify;
}
.bio-text strong { font-weight: 500; color: var(--color-primary); }
.bio-image-wrapper { position: relative; margin-top: 20px; }
.bio-img { width: 100%; height: auto; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.bio-image-wrapper .image-frame { top: 20px; left: 20px; right: auto; }
.vision-container { display: flex; justify-content: center; }
.vision-box {
    background-color: var(--color-dark); padding: 60px 80px; text-align: center;
    position: relative; max-width: 1000px; width: 100%; border-bottom: 4px solid var(--color-gold);
}
.vision-icon { font-size: 40px; color: var(--color-gold); margin-bottom: 30px; opacity: 0.5; }
.vision-text {
    font-family: var(--font-heading); font-size: 28px; font-weight: 300;
    color: var(--color-white); line-height: 1.5; margin-bottom: 30px; font-style: italic;
}
.vision-signature {
    font-family: var(--font-body); font-size: 14px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--color-gold); font-weight: 500;
}

/* --- KURUCUMUZ --- */
.founder-section { padding: 100px 0; background-color: #fff; }
.founder-grid {
    display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start;
}
.founder-image-col { position: relative; }
.founder-img-wrapper { position: relative; z-index: 2; margin-bottom: 30px; }
.founder-img { width: 100%; height: auto; box-shadow: 0 20px 40px rgba(0,0,0,0.15); position: relative; z-index: 2; }
.founder-frame {
    position: absolute; top: -20px; left: -20px; width: 60%; height: 60%;
    border-top: 3px solid var(--color-gold); border-left: 3px solid var(--color-gold); z-index: 1;
}
.founder-info-box {
    background-color: var(--color-dark); color: var(--color-white); padding: 30px;
    margin-top: -40px; margin-left: 20px; position: relative; z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.founder-info-box ul { margin: 0; padding: 0; }
.founder-info-box li {
    list-style: none; margin-bottom: 10px; font-size: 14px; font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px;
}
.founder-info-box strong { color: var(--color-gold); font-weight: 500; margin-right: 5px; }
.founder-name {
    font-family: var(--font-heading); font-weight: 100; font-size: 48px;
    color: var(--color-dark); margin-bottom: 5px; line-height: 1.1;
}
.founder-title {
    display: block; font-family: var(--font-body); font-size: 16px; letter-spacing: 2px;
    color: var(--color-primary); text-transform: uppercase; font-weight: 500; margin-bottom: 25px;
}
.founder-divider {
    width: 100px; height: 2px; background-color: var(--color-border); margin-bottom: 30px; position: relative;
}
.founder-divider::after {
    content: ''; position: absolute; left: 0; top: 0; width: 40px; height: 100%; background-color: var(--color-gold);
}
.founder-text p {
    font-size: 17px; line-height: 1.8; color: var(--color-text); margin-bottom: 20px; text-align: justify;
}
.founder-social { margin-top: 40px; display: flex; gap: 20px; }
.founder-social a {
    display: inline-flex; align-items: center; gap: 10px; padding: 12px 25px;
    border: 1px solid var(--color-border); color: var(--color-dark);
    font-size: 14px; text-transform: uppercase; font-weight: 500; transition: all 0.3s ease;
}
.founder-social a:hover { background-color: var(--color-dark); color: var(--color-white); border-color: var(--color-dark); }

/* --- HEDEFLERİMİZ --- */
.goals-section { padding: 100px 0; background-color: #fff; }
.mb-100 { margin-bottom: 100px; }
.goals-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.goals-intro-col {
    background-color: #fafafa; padding: 40px; border-left: 4px solid var(--color-primary);
}
.goals-icon { font-size: 40px; color: var(--color-gold); margin-bottom: 20px; }
.goals-title {
    font-family: var(--font-heading); font-weight: 300; font-size: 32px;
    color: var(--color-dark); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.goals-divider { width: 50px; height: 2px; background-color: var(--color-gold); margin-bottom: 20px; }
.goals-lead { font-size: 18px; font-weight: 400; line-height: 1.6; color: var(--color-text); font-style: italic; }
.goals-text-col p { font-size: 17px; line-height: 1.8; color: var(--color-text); margin-bottom: 25px; font-weight: 300; text-align: justify; }
.goals-box-wrapper {
    position: relative; background-color: var(--color-dark); color: var(--color-white); overflow: hidden; padding: 80px 60px;
}
.goals-box-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; text-align: center; }
.goals-box-title {
    font-family: var(--font-heading); font-weight: 100; font-size: 48px;
    color: var(--color-white); margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px;
}
.goals-box-text p {
    font-size: 18px; line-height: 1.9; color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; font-weight: 300;
}
.goals-quote {
    margin-top: 50px; font-size: 20px; font-weight: 400; color: var(--color-gold);
    font-family: var(--font-serif); font-style: italic; position: relative; display: inline-block; padding: 0 40px;
}
.goals-quote::before, .goals-quote::after {
    content: ''; position: absolute; top: 50%; width: 30px; height: 1px; background-color: var(--color-gold);
}
.goals-quote::before { left: 0; }
.goals-quote::after { right: 0; }
.goals-box-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.05; z-index: 1;
}

/* --- EKİBİMİZ --- */
.team-section { padding: 100px 0; background-color: #f9f9f9; }
.team-intro { max-width: 1000px; margin: 0 auto 80px auto; text-align: center; }
.team-intro p { margin-bottom: 20px; color: var(--color-text); font-size: 17px; line-height: 1.8; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card {
    background-color: var(--color-white); overflow: hidden; transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 3px solid transparent;
}
.team-card:hover {
    transform: translateY(-10px); border-bottom-color: var(--color-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.team-img-wrapper { position: relative; overflow: hidden; height: 350px; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }
.team-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(52, 69, 84, 0.7); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-mail-btn {
    width: 50px; height: 50px; background-color: var(--color-gold); color: var(--color-white);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 20px; transform: translateY(20px); transition: all 0.3s ease;
}
.team-card:hover .team-mail-btn { transform: translateY(0); }
.team-mail-btn:hover { background-color: var(--color-white); color: var(--color-gold); }
.team-info { padding: 25px 20px; text-align: center; }
.member-name {
    font-family: var(--font-heading); font-size: 20px; font-weight: 500; color: var(--color-dark); margin-bottom: 5px;
}
.member-title {
    font-family: var(--font-body); font-size: 13px; color: var(--color-gold);
    text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 15px; font-weight: 500;
}
.title-line {
    width: 30px; height: 2px; background-color: var(--color-border); margin: 0 auto; transition: width 0.3s ease, background-color 0.3s ease;
}
.team-card:hover .title-line { width: 50px; background-color: var(--color-gold); }

/* --- İLETİŞİM --- */
.contact-section { padding: 100px 0; background-color: #fff; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-heading {
    font-family: var(--font-heading); font-weight: 300; font-size: 36px; color: var(--color-dark); margin-bottom: 20px;
}
.contact-sub { font-size: 16px; color: var(--color-text-light); margin-bottom: 40px; line-height: 1.6; }
.info-items { display: flex; flex-direction: column; gap: 30px; }
.info-box { display: flex; align-items: flex-start; gap: 20px; }
.info-box .icon {
    width: 50px; height: 50px; background-color: #fafafa; border: 1px solid var(--color-border);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    color: var(--color-gold); font-size: 20px; flex-shrink: 0; transition: all 0.3s ease;
}
.info-box:hover .icon {
    background-color: var(--color-primary); color: var(--color-white); border-color: var(--color-primary);
}
.info-box .text strong {
    display: block; font-family: var(--font-heading); font-size: 16px; color: var(--color-dark); margin-bottom: 5px; font-weight: 500;
}
.info-box .text p, .info-box .text a { font-size: 15px; color: var(--color-text); line-height: 1.6; font-weight: 300; }
.info-box .text a:hover { color: var(--color-gold); }
.contact-form-col {
    background-color: #fafafa; padding: 50px; border-top: 4px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.form-title {
    font-family: var(--font-heading); font-size: 24px; color: var(--color-dark); margin-bottom: 30px; font-weight: 400;
}
/* CF7 Grid Yapısı */
.cf7-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.wpcf7-form p { margin-bottom: 20px; }
.wpcf7-form label {
    font-size: 13px; font-weight: 500; color: var(--color-dark); margin-bottom: 5px; display: block; text-transform: uppercase; letter-spacing: 1px;
}
.wpcf7-form-control-wrap { display: block; }
.wpcf7-text, .wpcf7-textarea, .wpcf7-select {
    width: 100%; background-color: transparent; border: none; border-bottom: 2px solid #e0e0e0;
    padding: 10px 0; font-family: var(--font-body); font-size: 15px; color: var(--color-text); transition: all 0.3s ease;
}
.wpcf7-text:focus, .wpcf7-textarea:focus { border-bottom-color: var(--color-gold); outline: none; }
.wpcf7-textarea { height: 120px; resize: vertical; }
.wpcf7-submit {
    background-color: var(--color-dark); color: var(--color-white); padding: 15px 40px;
    border: none; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; margin-top: 10px;
}
.wpcf7-submit:hover { background-color: var(--color-gold); color: var(--color-white); }
.contact-map-section { width: 100%; height: 450px; filter: grayscale(100%); transition: filter 0.3s ease; }
.contact-map-section:hover { filter: grayscale(0%); }
.map-responsive iframe { width: 100%; height: 450px; border: 0; display: block; }

/* --- FAALİYET ALANLARIMIZ (ARŞİV) --- */
.practice-page-section { padding: 100px 0; background-color: #f9f9f9; }

/* --- HAKKIMIZDA SAYFASI --- */
.about-page-section { padding: 100px 0; background-color: #fff; overflow: hidden; }
.about-page-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: start; }
.about-page-text { position: relative; }
.bg-year {
    position: absolute; top: -80px; left: -50px; font-family: var(--font-heading);
    font-size: 200px; font-weight: 700; color: rgba(52, 69, 84, 0.05); z-index: 0; pointer-events: none; line-height: 1;
}
.about-heading {
    font-family: var(--font-heading); font-weight: 100; font-size: 42px;
    color: var(--color-dark); margin-bottom: 30px; position: relative; z-index: 1;
}
.lead-paragraph {
    font-size: 19px !important; font-weight: 400 !important; color: var(--color-dark) !important; margin-bottom: 30px !important;
}
.quote-box {
    border-left: 4px solid var(--color-gold); padding: 20px 30px; background-color: #fafafa;
    margin: 30px 0; font-style: italic; color: var(--color-text); font-weight: 300; position: relative; z-index: 1;
}
.quote-box p { margin: 0 !important; text-align: left !important; }
.about-page-image { position: relative; padding-top: 50px; }
.about-page-image .image-wrapper { position: relative; z-index: 2; }
.about-featured-img { width: 100%; height: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.15); position: relative; z-index: 2; }
.image-frame-corner {
    position: absolute; bottom: -20px; right: -20px; width: 50%; height: 50%;
    border-bottom: 3px solid var(--color-gold); border-right: 3px solid var(--color-gold); z-index: 1;
}

/* ==========================================================================
   11. RESPONSIVE (MOBİL AYARLAR - TAM EKRAN MENÜ)
   ========================================================================== */

/* Menü açıkken body kaymasın */
body.overflow-hidden { overflow: hidden; }

@media (max-width: 992px) {
    /* Header */
    .site-header .header-container { padding: 0 20px; }
    .mobile-menu-toggle { 
        display: block; z-index: 10001; position: relative; transition: all 0.3s ease;
    }
    .site-header.menu-open .mobile-menu-toggle { color: var(--color-white); }
    .site-header.menu-open .logo-text { color: var(--color-white); position: relative; z-index: 10001; }
    .site-header.menu-open .sticky-logo { display: none; }
    .site-header.menu-open .main-logo { display: block; position: relative; z-index: 10001; }

    /* Full Screen Menu */
    .main-navigation {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background-color: var(--color-dark); padding: 100px 20px;
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        opacity: 0; visibility: hidden; transform: scale(1.1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); z-index: 10000;
    }
    .main-navigation.active { opacity: 1; visibility: visible; transform: scale(1); }
    .main-navigation ul { flex-direction: column; text-align: center; gap: 25px; width: 100%; }
    .main-navigation > ul > li > a { 
        line-height: 1.2 !important; color: #fff !important; font-size: 24px;
        font-weight: 300; letter-spacing: 1px; border-bottom: none; padding: 0 !important;
        display: inline-block; opacity: 0; transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }
    /* Staggered Animation */
    .main-navigation.active > ul > li:nth-child(1) > a { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(2) > a { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(3) > a { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(4) > a { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(5) > a { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(6) > a { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(7) > a { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
    .main-navigation.active > ul > li:nth-child(8) > a { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
    
    .main-navigation ul ul.sub-menu {
        position: static; width: 100%; opacity: 1; visibility: visible; transform: none;
        background-color: transparent; border: none; box-shadow: none; margin-top: 15px; display: none;
    }
    .main-navigation ul ul.sub-menu li a {
        font-size: 16px; color: rgba(255,255,255,0.6) !important; padding: 5px 0; border: none;
    }

    /* Hero & Genel */
    .slide-title { font-size: 42px; font-weight: 300; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .practice-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* İç Sayfalar */
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .sidebar-area { order: 2; }
    .page-header { padding: 140px 0 60px 0; }
    .page-title { font-size: 36px; }
    
    /* Özel Sayfalar Responsive */
    .bio-grid { grid-template-columns: 1fr; gap: 50px; }
    .bio-image-wrapper { order: -1; width: 80%; margin: 0 auto 30px auto; }
    .bio-text h2 { font-size: 32px; text-align: center; }
    .vision-box { padding: 40px 30px; }
    .vision-text { font-size: 20px; }
    
    .founder-grid { grid-template-columns: 1fr; gap: 50px; }
    .founder-info-box { margin-left: 0; margin-top: 20px; width: 100%; }
    .founder-name { font-size: 36px; text-align: center; }
    .founder-title { text-align: center; }
    .founder-social { justify-content: center; }
    
    .goals-grid { grid-template-columns: 1fr; gap: 40px; }
    .goals-box-wrapper { padding: 60px 30px; }
    .goals-box-title { font-size: 36px; }
    
    .about-page-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-page-image { order: -1; padding-top: 0; width: 90%; margin: 0 auto; }
    .bg-year { font-size: 120px; top: -40px; left: 0; }
    .about-heading { font-size: 32px; }
    
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-img-wrapper { height: 300px; }
    
    .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .contact-form-col { padding: 30px; }
    
    /* Referanslar */
    .reference-item img { max-height: 70px; }
    .reference-slide { height: 120px; }
    
    /* Parallax Düzeltme */
    .section-cta { background-attachment: scroll; padding: 80px 0; }
    .cta-title { font-size: 32px; }
    
    /* Hakkımızda Çerçeve */
    .image-frame { top: 15px; right: 15px; }
    .practice-page-section { padding: 60px 0; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .bottom-flex { flex-direction: column; text-align: center; gap: 10px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-intro { text-align: left; }
    .cf7-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   EKİBİMİZ SAYFASI - KARİYER CTA (YENİ)
   ========================================================================== */

/* Giriş metni vurgusu */
.lead-text {
    font-size: 20px !important;
    font-weight: 300;
    color: var(--color-dark) !important;
    line-height: 1.6 !important;
}

/* Kariyer Kutusu Kapsayıcı */
.career-cta-wrapper {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid var(--color-border);
}

/* Kariyer Kutusu */
.career-cta-box {
    background-color: var(--color-dark); /* Koyu Lacivert Zemin */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--color-gold); /* Sol Gold Çizgi */
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Arka plan deseni */
.career-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    pointer-events: none;
}

/* İkon */
.career-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* İçerik Metni */
.career-content h3 {
    font-family: var(--font-heading);
    font-weight: 300; /* Thin */
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.career-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

/* Buton (Beyaz Çerçeve) */
.btn-white-border {
    border-color: rgba(255,255,255,0.3);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white-border:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
    .career-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .career-content p { margin: 0 auto; }
}