/* --- GENEL AYARLAR --- */
:root {
    --bg-color: #0e1f3f;
    --text-color: #e0e6ed;
    --text-muted: #94a3b8;
    --gold: #c5a059;
    --gold-hover: #d4af67;
    --dark-blue: #152a4a;
    --card-bg: #21395b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; height: 100%; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main { flex: 1 0 auto; } /* İçeriği yayıp footer'ı aşağı iter */

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- TİPOGRAFİ --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: #fff; }

.section-title {
    font-size: 2.5rem; text-align: center; margin-bottom: 1rem;
    position: relative; display: block; margin-left: auto; margin-right: auto;
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background-color: var(--gold); margin: 10px auto 0;
}
.section-subtitle {
    text-align: center; color: var(--gold); text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.5rem; display: block;
}

/* --- HEADER --- */
header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: var(--transition); display: flex; justify-content: space-between;
    align-items: center; padding: 1.5rem 5%;
}
header.scrolled {
    background: rgba(14, 31, 63, 0.95); padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5); backdrop-filter: blur(10px);
}
.logo { display: flex; align-items: center; }
.logo img { height: 70px; width: auto; display: block; }

nav ul { display: flex; align-items: center; gap: 2rem; }
nav ul li a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; position: relative; }
nav ul li a:not(.cta-btn)::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
    height: 2px; background: var(--gold); transition: var(--transition);
}
nav ul li a:not(.cta-btn):hover::after { width: 100%; }

.cta-btn {
    padding: 10px 25px; border: 1px solid var(--gold); color: var(--gold);
    border-radius: 2px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
}
.cta-btn:hover { background: var(--gold); color: var(--bg-color); }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* --- HERO SECTION --- */
#hero, #hero-areas-video, #hero-editorial {
    position: relative; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
}
#hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 17, 24, 0.5), rgba(10, 17, 24, 0.8)); z-index: -1;
}
.hero-content { max-width: 900px; padding: 0 20px; z-index: 1; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.btn-primary { background-color: var(--gold); color: var(--dark-blue); padding: 15px 40px; font-size: 1rem; font-weight: 700; border-radius: 2px; display: inline-block; transition: var(--transition); }

/* --- TIMELINE --- */
#process { background-color: var(--dark-blue); padding: 100px 10%; }
.timeline { position: relative; max-width: 1200px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 2px; background: rgba(197, 160, 89, 0.2); top: 0; bottom: 0; left: 50%; margin-left: -1px; }
.container-t { padding: 10px 40px; position: relative; width: 50% !important; }
.left { left: 0; }
.right { left: 50%; }
.container-t::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background-color: var(--bg-color); border: 4px solid var(--gold); top: 15px; border-radius: 50%; z-index: 1; }
.right::after { left: -10px; }
.content-t { background: var(--card-bg); padding: 30px; border-radius: 4px; border-left: 4px solid var(--gold); }

/* --- FOOTER --- */
footer { background-color: #08162c; padding: 0; border-top: 1px solid #2a4267; flex-shrink: 0; }
.footer-container { padding: 4rem 10%; display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.footer-info { display: flex; align-items: center; gap: 2rem; }
.footer-logo-side img { height: 110px; width: auto; filter: drop-shadow(0 0 5px rgba(0,0,0,0.3)); }
.footer-contact-links p { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #e0e6ed; }
.footer-map-wrapper iframe { border-radius: 4px; border: 1px solid #2a4267; width: 100%; }
.footer-bottom { background-color: #050e1c; padding: 1.5rem 10%; text-align: center; font-size: 0.8rem; }
.footer-bottom p { margin: 0 !important; }

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 50px; right: 80px;
    background-color: #25d366; color: #FFF; border-radius: 50px;
    display: flex; align-items: center; justify-content: center; font-size: 30px;
    z-index: 1001; animation: pulse 2s infinite;
}

/* --- MOBİL DÜZELTMELER --- */
@media (max-width: 768px) {
    header { padding: 10px 20px !important; height: 70px; background: rgba(14, 31, 63, 0.98) !important; }
    .logo img { height: 40px !important; }
    .menu-toggle { display: block !important; order: 2; margin-right: 5px; }

    nav {
        position: fixed; top: 70px; right: -100%; width: 100%;
        height: calc(100vh - 70px); background: var(--bg-color);
        display: flex !important; flex-direction: column;
        align-items: center; justify-content: center;
        transition: right 0.4s ease; z-index: 999;
    }
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 2rem; }

    #hero-video { object-position: 20% center !important; }
    h1, .hero-mega-title { font-size: 1.8rem !important; letter-spacing: 1px !important; }
    .hero-content p, .hero-subtitle-simple p { font-size: 0.95rem !important; line-height: 1.4 !important; }
    .hero-content {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    .hero-content .btn-primary {
        margin: 0 0 15px 0 !important; /* Altına boşluk bırak */
        width: auto !important;
        display: inline-block !important;
    }

    /* İkinci link (Çalışma Alanları) */
    .hero-content a:not(.btn-primary) {
        margin-left: 0 !important; /* HTML'deki 20px boşluğu iptal et */
        margin-top: 5px !important;
        display: inline-block !important;
    }

    /* --- TIMELINE (DAVA SÜRECİ) TAŞMA DÜZELTMESİ --- */
    .section-title { font-size: 1.6rem !important; }
    
    .timeline::after { left: 20px; } /* Dikey çizgiyi biraz daha sola aldık */
    
    .container-t { 
        width: 100% !important; 
        padding-left: 45px !important; /* Sol boşluğu azalttık (70px çok fazlaydı) */
        padding-right: 15px !important; 
        left: 0 !important; 
        margin-bottom: 20px;
    }
    
    .container-t::after { 
        left: 10px; /* Yuvarlakları yeni çizgi hizasına aldık */
        right: auto; 
    }

    .content-t { 
        padding: 20px !important; /* Kutu içindeki boşluğu daralttık */
    }

    .content-t h2 { 
        font-size: 1.2rem !important; /* "Preliminary Interview" yazısının sığması için küçülttük */
        line-height: 1.3;
        word-wrap: break-word; /* Uzun kelimeleri alt satıra zorlar */
    }
    
    .content-t p {
        font-size: 0.9rem !important;
    }

    /* Footer Mobil */
    .footer-container { grid-template-columns: 1fr; text-align: center; padding: 3rem 20px !important; }
    .footer-info { flex-direction: column; gap: 1.5rem; }
    .footer-logo-side img { height: 75px !important; margin: 0 auto !important; }
    .footer-contact-links p { justify-content: center; }
    .footer-map-wrapper iframe { width: 100%; max-width: 100%; height: 200px; }
    .whatsapp-float {
        display: flex !important;      /* Kesinlikle göster */
    visibility: visible !important;
    opacity: 1 !important;         /* Şeffaflığı iptal et */
    width: 55px !important;
    height: 55px !important;
    bottom: 25px !important;
    right: 20px !important;
    font-size: 28px !important;
    z-index: 10000 !important;     /* Header'ın (2000) bile üstüne çık */
    transform: none !important;    /* Kayma animasyonunu iptal et */}
}

/* --- ANİMASYONLAR --- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }