/* --- GOOD SENSE HOLDING - PERFECT ALIGNMENT CSS (V8.0) --- */

/* 1. FONTLAR VE TEMEL AYARLAR */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lato:wght@300;400;700;900&display=swap');

:root {
    --primary-color: #0F2C59; /* Derin Lacivert */
    --accent-color: #C5A059; /* Altın */
    --text-dark: #222;
    --text-gray: #555;
    --bg-light: #f9f9f9;
    --header-height: 100px;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- HEADER --- */
header {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

/* CONTAINER (BLOK YAPIDA - DAĞILMAYI ÖNLER) */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
}

/* HEADER İÇİN FLEX (YAN YANA DİZİLİM) */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* LOGO */
.brand-container { display: flex; align-items: center; gap: 15px; }
.header-logo { height: 75px; width: auto; object-fit: contain; }
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    border-left: 2px solid var(--accent-color);
    padding-left: 15px;
}
.brand-text span {
    display: block; font-size: 12px; font-family: 'Lato', sans-serif;
    color: var(--accent-color); font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-top: 5px;
}

.nav-right { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 25px; }
.nav-links a {
    font-weight: 700; font-size: 13px; text-transform: uppercase;
    color: var(--primary-color); letter-spacing: 0.5px; padding: 10px 0; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
    background-color: var(--accent-color); transition: 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* DİL SEÇİCİ */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ddd;
    padding: 8px 15px; /* Biraz daha daralttık */
    border-radius: 4px; /* Köşeleri hafif kıstık, daha ciddi dursun */
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    background: #fff;
    min-width: 80px;
    position: relative; /* Menünün buna yapışması için şart */
    z-index: 1002;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    border-color: var(--accent-color);
    background: #f9f9f9;
}

.lang-dropdown {
    position: absolute;
    top: 100%; /* Tam altına yapışsın */
    right: 0;
    background-color: #ffffff; /* Arka plan kesinlikle beyaz */
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Daha belirgin gölge */
    border-radius: 4px;
    padding: 5px 0;
    min-width: 120px; /* Genişlik garanti olsun */
    display: none;
    flex-direction: column;
    z-index: 1003; /* En üstte dursun */
    margin-top: 5px; /* Butonla arasında minik boşluk */
}

/* Hover olunca açılması için */
.lang-switch:hover .lang-dropdown {
    display: flex;
}

.lang-dropdown a {
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    white-space: nowrap; /* Yazı kaymasını engeller */
}

.lang-dropdown a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}
/* --- HERO & SECTIONS --- */
.hero {
    height: 90vh;
    background: linear-gradient(to right, rgba(15, 44, 89, 0.9), rgba(15, 44, 89, 0.4)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover; background-position: center;
    display: flex; align-items: center; color: #fff; padding-top: var(--header-height);
}
.hero-content h1 { font-size: 64px; color: #fff; margin-bottom: 25px; text-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.hero-content p { font-size: 22px; margin-bottom: 40px; color: rgba(255,255,255,0.9); }

.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-title { font-size: 42px; margin-bottom: 30px; position: relative; padding-bottom: 20px; display: inline-block; }
.section-title::after { content:''; position: absolute; width: 80px; height: 4px; background: var(--accent-color); bottom: 0; left: 0; }
.highlight-box {
    border-left: 5px solid var(--accent-color); padding: 20px 30px; margin: 30px 0;
    background: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    font-style: italic; font-size: 18px; color: var(--primary-color);
}

/* --- PAGE HEADER (GÖRSEL ÜSTÜ YAZI DÜZELTMESİ) --- */
.page-header {
    height: 50vh; background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    padding-top: var(--header-height); margin-bottom: 0; position: relative;
}
/* Karartma katmanını güçlendirdik (0.85) ki yazı okunsun */
.page-header::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to bottom, rgba(15, 44, 89, 0.9), rgba(15, 44, 89, 0.7));
}
.page-header-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 20px; }
/* Yazıyı zorla beyaz ve gölgeli yaptık */
.page-header h1 {
    font-size: 56px; color: #ffffff !important; margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.page-header p {
    font-size: 20px; color: #f0f0f0 !important; font-weight: 300;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* --- YÖNETİM KARTLARI (ALT ALTA & HİZALI) --- */
.manager-card {
    background: #fff; display: flex; flex-direction: row; gap: 50px; padding: 50px;
    margin-bottom: 60px; border-radius: 8px; box-shadow: var(--card-shadow);
    border: 1px solid #eee; align-items: flex-start;
}
.manager-img-col { flex: 0 0 350px; }
.manager-img {
    width: 100%; height: 450px; object-fit: cover; border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); border-bottom: 5px solid var(--accent-color);
}
.manager-info { flex: 1; }
.manager-info h2 { font-size: 36px; margin-bottom: 5px; color: var(--primary-color); }
.manager-title {
    color: var(--accent-color); font-weight: 800; font-size: 14px; letter-spacing: 2px;
    text-transform: uppercase; display: block; margin-bottom: 25px;
    border-bottom: 1px solid #eee; padding-bottom: 15px; width: 100%;
}
.manager-info p { margin-bottom: 20px; font-size: 17px; color: #555; text-align: justify; }
.manager-skills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.skill-tag {
    font-size: 13px; background: #f4f6f8; padding: 8px 20px; border: 1px solid #ddd;
    border-radius: 50px; color: var(--primary-color); font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* --- FAALİYET KARTLARI (LOGO BAZLI YENİ TASARIM) --- */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.activity-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.activity-card:hover { transform: translateY(-5px); border-color: var(--accent-color); }

.act-logo-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}
.act-logo-area img {
    max-height: 130px;
    max-width: 80%;
    object-fit: contain;
}
.act-logo-area.dark { background: #0F2C59; }
.act-logo-area.green { background: #1a5632; }
.act-logo-area.light { background: #fafafa; }

.act-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçerik alanı kalan tüm boşluğu kaplar */
}

.act-content h3 { font-size: 24px; margin: 15px 0; display: flex; align-items: center; gap: 10px; }
.act-content p {
    color: #666; font-size: 15px; line-height: 1.6;
    margin-bottom: 20px; /* Butonla yazı arasında boşluk */
}

/* Footer'ı (Buton alanını) en alta iter */
.act-footer {
    margin-top: auto; 
    padding-top: 10px;
    width: 100%;
}
.act-footer .btn-gold {
    width: 100%; text-align: center;
}

/* --- FELSEFE KARTLARI --- */
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.philosophy-card {
    background: #fff; padding: 40px 30px; text-align: center;
    border: 1px solid #eee; border-bottom: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: 0.3s ease; height: 100%;
}
.philosophy-card:hover { transform: translateY(-5px); }
.philosophy-card i { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; display: inline-block; }
.philosophy-card h4 { font-size: 20px; margin-bottom: 15px; }
.philosophy-card p { font-size: 15px; color: #666; }

/* --- FOOTER & BUTTONS --- */
footer { background: #0a1e3f; color: #ccc; padding: 80px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-col h3 { color: #fff; margin-bottom: 20px; font-size: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 14px; }
.btn-gold { padding: 15px 40px; background: var(--accent-color); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 1px; display: inline-block; border-radius: 4px; }
.trust-bar { background: var(--primary-color); color: #fff; padding: 60px 0; }
.trust-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; text-align: center; }
.trust-item i { font-size: 45px; color: var(--accent-color); margin-bottom: 15px; }

/* --- HAMBURGER MENÜ --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
    background: none;
    border: none;
}
.hamburger span {
    width: 26px; height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15,44,89,0.97);
    z-index: 1005;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.mobile-overlay.active { display: flex; }
.mobile-overlay a {
    color: #fff; font-size: 20px; font-weight: 700;
    padding: 15px 40px; text-transform: uppercase;
    letter-spacing: 2px; border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s;
}
.mobile-overlay a:hover { color: var(--accent-color); }
.mobile-overlay .mobile-lang {
    display: flex; gap: 15px; margin-top: 30px;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.2);
}
.mobile-overlay .mobile-lang a {
    font-size: 14px; padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px; border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* --- EKIP GRID (TEMSİLCİLER) --- */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 10px;
}
.team-card {
    background: #fff; padding: 35px 31px; border-radius: 8px;
    border: 1px solid #eee; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: 0.3s; flex: 0 0 145px;
}
.team-card:hover { transform: translateY(-2px); border-color: var(--accent-color); }
.team-card .team-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--primary-color); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; margin: 0 auto 8px;
    font-family: 'Playfair Display', serif;
}
.team-card h4 { font-size: 13px; margin-bottom: 3px; white-space: nowrap; }
.team-card .team-role {
    color: var(--accent-color); font-size: 9px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; display: block;
    line-height: 1.3;
}
.team-card .team-langs {
    display: flex; gap: 3px; justify-content: center; flex-wrap: wrap;
}
.team-card .team-langs span {
    font-size: 9px; background: #f0f2f5; padding: 2px 6px;
    border-radius: 20px; color: #555; font-weight: 600;
}
.team-region-title {
    color: var(--primary-color); font-size: 22px; font-weight: 700;
    margin: 25px 0 5px; padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color); display: inline-block;
}
.team-card .team-contact { font-size: 13px; color: #888; }
.team-card .team-contact a { color: var(--accent-color); }
.team-card .team-flags { font-size: 22px; margin-bottom: 10px; letter-spacing: 4px; }

/* --- İLETİŞİM SAYFASI --- */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-form-box {
    background: #fff; padding: 40px; border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-info-box { padding: 20px 0; }
.contact-info-box .info-item {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 30px; padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.contact-info-box .info-item:last-child { border-bottom: none; }
.contact-info-box .info-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary-color); color: var(--accent-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.contact-info-box .info-text h4 { font-size: 16px; margin-bottom: 5px; }
.contact-info-box .info-text p { font-size: 14px; color: #666; }
.contact-info-box .info-text a { color: var(--primary-color); font-weight: 700; }
.contact-map {
    width: 100%; height: 350px; border-radius: 8px;
    border: 1px solid #eee; margin-top: 40px;
}

/* --- MİSYON / VİZYON / DEĞERLER --- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.mvv-card {
    padding: 45px 35px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mvv-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.mvv-card.mission { background: var(--primary-color); color: #fff; }
.mvv-card.vision { background: #fff; border: 2px solid var(--primary-color); }
.mvv-card.values { background: linear-gradient(135deg, var(--primary-color), #1a4080); color: #fff; }
.mvv-card .mvv-icon {
    font-size: 36px; margin-bottom: 20px; display: inline-block;
}
.mvv-card.mission .mvv-icon,
.mvv-card.values .mvv-icon { color: var(--accent-color); }
.mvv-card.vision .mvv-icon { color: var(--primary-color); }
.mvv-card h3 {
    font-size: 22px; margin-bottom: 15px;
}
.mvv-card.mission h3, .mvv-card.values h3 { color: #fff; }
.mvv-card.vision h3 { color: var(--primary-color); }
.mvv-card p { font-size: 15px; line-height: 1.8; }
.mvv-card.mission p, .mvv-card.values p { color: rgba(255,255,255,0.85); }
.mvv-card.vision p { color: var(--text-gray); }
.mvv-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 4px; background: var(--accent-color);
}

/* --- SLOGAN BANNER --- */
.slogan-bar {
    background: linear-gradient(135deg, var(--primary-color), #163d75);
    padding: 50px 0;
    text-align: center;
}
.slogan-bar p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    font-style: italic;
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}
.slogan-bar p span {
    color: var(--accent-color); font-weight: 700;
}

/* --- İLETİŞİM BÖLÜMÜ (FOOTER YENİLEME) --- */
.contact-section {
    background: #0d2240; color: #ccc; padding: 80px 0 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.contact-col h3 {
    color: #fff; font-size: 18px; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}
.contact-col p { margin-bottom: 10px; font-size: 14px; line-height: 1.8; }
.contact-col a { color: #ccc; transition: color 0.3s; }
.contact-col a:hover { color: var(--accent-color); }
.contact-col .contact-item {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px;
}
.contact-col .contact-item i {
    color: var(--accent-color); font-size: 16px; margin-top: 3px; min-width: 18px;
}
.contact-social {
    display: flex; gap: 12px; margin-top: 20px;
}
.contact-social a {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; transition: all 0.3s;
}
.contact-social a:hover {
    background: var(--accent-color); border-color: var(--accent-color);
}
.footer-bottom-new {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}
.footer-bottom-new a { color: #999; }
.footer-bottom-new a:hover { color: var(--accent-color); }
.footer-legal { display: flex; gap: 20px; }

/* --- KVKK / POLİTİKA SAYFALARI --- */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 25px 80px;
}
.policy-content h2 {
    font-size: 28px; margin: 40px 0 15px;
    padding-bottom: 10px; border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}
.policy-content h3 { font-size: 20px; margin: 25px 0 10px; }
.policy-content p { margin-bottom: 15px; font-size: 15px; color: #444; }
.policy-content ul { padding-left: 25px; margin-bottom: 20px; }
.policy-content ul li { margin-bottom: 8px; font-size: 15px; color: #444; list-style: disc; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.policy-content table th { background: var(--primary-color); color: #fff; padding: 12px; text-align: left; font-size: 14px; }
.policy-content table td { padding: 10px 12px; border: 1px solid #eee; font-size: 14px; }

/* --- ÇEREZ BANNER --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #0a1e3f; color: #fff; padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 25px; flex-wrap: wrap;
}
.cookie-inner p { font-size: 14px; flex: 1; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cookie-inner p a { color: var(--accent-color); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button {
    padding: 10px 25px; border: none; cursor: pointer;
    font-weight: 700; font-size: 13px; border-radius: 4px; transition: 0.3s;
}
.btn-cookie-accept { background: var(--accent-color); color: #fff; }
.btn-cookie-accept:hover { background: #d4af6a; }
.btn-cookie-reject { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3) !important; }
.btn-cookie-reject:hover { border-color: #fff !important; }

/* --- MOBİL UYUM --- */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-right { display: none; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .section-title { font-size: 30px; }
    .page-header h1 { font-size: 32px !important; }
    .manager-card { flex-direction: column; text-align: center; padding: 30px; }
    .manager-img-col { width: 100%; margin-bottom: 20px; flex: unset; }
    .manager-img { width: 100%; height: auto; max-width: 400px; margin: 0 auto; }
    .manager-card[style*="row-reverse"] { flex-direction: column; }
    .manager-info p { text-align: left; }
    .manager-skills { justify-content: center; }
    .mvv-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-bottom-new { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-btns { width: 100%; justify-content: center; }
    .slogan-bar p { font-size: 20px; padding: 0 20px; }
    .activities-grid { grid-template-columns: 1fr; }
    .team-grid { justify-content: center; }
    .team-card { flex: 0 0 130px; }
    .contact-page-grid { grid-template-columns: 1fr; }
}
/* --- PREMIUM YÖNETİM BÖLÜMÜ ÖZEL CSS (İzole) --- */

/* 1. KURUCULAR (Minimalist & Executive) */
.premium-founders-wrapper { display: flex; flex-direction: column; gap: 60px; padding: 40px 0; }
.executive-card { display: flex; flex-direction: column; gap: 40px; align-items: center; }
@media(min-width: 900px) {
    .executive-card { flex-direction: row; align-items: stretch; }
    .executive-card.reverse { flex-direction: row-reverse; }
}
.executive-img-box { flex: 0 0 350px; overflow: hidden; }
.executive-img-box img { width: 100%; height: 450px; object-fit: cover; filter: grayscale(100%); transition: all 0.5s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.executive-img-box:hover img { filter: grayscale(0%); transform: scale(1.02); }
.executive-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.executive-content h2 { font-size: 32px; color: var(--primary-color); margin-bottom: 5px; }
.executive-role { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; display: inline-block; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.executive-content p { color: #555; line-height: 1.8; margin-bottom: 15px; font-size: 16px; text-align: justify; }
.executive-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.executive-tags span { border: 1px solid #ccc; background: transparent; color: #555; padding: 6px 15px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

/* 2. GLOBAL EKİP (Corporate Organization Cards) */
.corp-team-section { background-color: #fcfcfc; padding: 80px 0; border-top: 1px solid #f0f0f0; }
.corp-region-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--primary-color); margin: 50px 0 20px; padding-bottom: 10px; border-bottom: 1px solid #e0e0e0; }
.corp-team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width: 600px) { .corp-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .corp-team-grid { grid-template-columns: repeat(4, 1fr); } }
/* Fotoğraf eklemek için padding'i ve text-align'ı güncelledik */
.corp-team-card { background: #fff; padding: 30px 15px; border-top: 3px solid var(--primary-color); box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; transition: 0.3s; }
.corp-team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }

/* YENİ: Ekip Üyesi Fotoğraf Alanı */
.corp-team-img { width: 150px; height: 150px; object-fit: cover; border-radius: 100%; border: 3px solid #eee; margin-bottom: 20px; filter: grayscale(100%); transition: 0.3s ease; display: block; }
.corp-team-card:hover .corp-team-img { filter: grayscale(0%); border-color: var(--accent-color); }.corp-team-name { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.corp-team-title { font-size: 11px; font-weight: 700; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: auto; padding-bottom: 20px; }
.corp-team-langs { border-top: 1px solid #f0f0f0; padding-top: 15px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.corp-team-langs span { font-size: 11px; color: #666; font-weight: 600; }

/* 3. YÖNETİM FELSEFESİ (Typography-Focused) */
.typo-philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 60px; }
@media(min-width: 900px) { .typo-philosophy-grid { grid-template-columns: repeat(3, 1fr); gap: 60px; } }
.typo-phil-card { position: relative; padding: 30px 20px; background: #fff; z-index: 1; }
.typo-watermark { position: absolute; top: -20px; left: 10px; font-family: 'Playfair Display', serif; font-size: 120px; font-weight: 900; color: rgba(15, 44, 89, 0.04); z-index: -1; line-height: 1; pointer-events: none; }
.typo-phil-card h4 { font-size: 22px; color: var(--primary-color); margin-bottom: 15px; font-weight: 700; }
.typo-phil-card p { font-size: 15px; color: #555; line-height: 1.7; margin: 0; }

/* ========== MOTION & ATMOSPHERE SYSTEM ========== */

@keyframes fadeInUp {
    from { opacity: 0; translate: 0 32px; }
    to   { opacity: 1; translate: 0 0; }
}

@keyframes goldShimmer {
    0%   { left: -120%; }
    55%  { left: 200%; }
    100% { left: 200%; }
}

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

/* --- Hero entrance (staggered) --- */
.hero { position: relative; overflow: hidden; }

.hero .hero-content h1 {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: 0.1s;
}
.hero .hero-content p {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: 0.3s;
}
.hero .hero-content .btn-gold {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(.16, 1, .3, 1) forwards;
    animation-delay: 0.5s;
}

/* --- Hero decorative rings --- */
.hero::before {
    content: '';
    position: absolute;
    right: 8%; top: 18%;
    width: 320px; height: 320px;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    right: 14%; top: 28%;
    width: 160px; height: 160px;
    border: 1px solid rgba(197, 160, 89, 0.14);
    border-radius: 50%;
    pointer-events: none;
    animation: heroFloat 8s ease-in-out infinite reverse;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* --- Gold button shimmer --- */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    animation: goldShimmer 4s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

/* --- Subtle dot pattern on light sections --- */
.bg-light {
    background-image: radial-gradient(rgba(15, 44, 89, 0.035) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    translate: 0 36px;
    transition: opacity 0.7s ease, translate 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    translate: 0 0;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 900px) {
    .hero::before, .hero::after { display: none; }
}