/* --- GLOBAL --- */
:root {
    --steel: #1e3a5f;
    --gold: #d4a853;
    --white: #ffffff;
    --text: #1e3a5f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Manrope', sans-serif; /* Montserrat yerine Manrope geldi */
    color: var(--text);
    overflow-x: hidden;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* --- NAVIGATION (HEADER) --- */
nav {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0; /* Metal sitesiyle aynı padding */
    height: 85px;
    display: flex;
    align-items: center;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Düzenlemesi */
.logo-wrapper { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-main { 
    font-family: 'Playfair Display', serif; 
    font-weight: 900; 
    font-size: 26px; 
    color: var(--steel); 
}
.logo-main .dot { color: var(--gold); }
.logo-sub { 
    font-family: 'Manrope', sans-serif;
    font-size: 9px; 
    letter-spacing: 4px; 
    font-weight: 800; 
    color: #94a3b8; 
    margin-top: 2px;
    text-transform: uppercase;
}

/* Menü Linkleri */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Linkler arası boşluk */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--steel);
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links li a:hover { color: var(--gold); }
.nav-links li a.cta-link { color: var(--gold) !important; }

/* --- HERO FULL SPLIT --- */
.hero-full-split {
    display: flex;
    height: calc(100vh - 85px); /* Header yüksekliğini çıkarıyoruz */
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* --- HERO FLOATING BADGE --- */
.hero-full-split { position: relative; } /* Rozetin buna göre konumlanması için şart */

.hero-floating-badge {
    position: absolute;
    bottom: 80px; /* Alttan yükseklik */
    left: 50%;
    transform: translateX(-50%); /* Tam merkeze hizalar */
    z-index: 1500; /* Panellerin üzerinde, Header'ın altında */
    pointer-events: none; /* Altındaki panellere tıklamayı engellemez */
}

.badge-inner {
    background: #fff;
    padding: 40px 50px 40px 80px; /* Sol tarafta dikey yazı için boşluk */
    border-radius: 0 40px 0 40px; /* Modern asimetrik kesim */
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: float-badge 4s ease-in-out infinite; /* Havada süzülme animasyonu */
}

/* Sol Taraftaki Dikey Yazı */
.badge-vertical-text {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.badge-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--gold);
    font-size: 24px;
    opacity: 0.3;
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--gold); /* Referans resmindeki turuncu yerine Gold */
    line-height: 1;
    margin-bottom: 5px;
}

.badge-number span {
    font-size: 40px;
    margin-left: 5px;
}

.badge-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--steel);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
}

/* Süzülme Animasyonu */
@keyframes float-badge {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
    100% { transform: translateX(-50%) translateY(0); }
}

/* Mobil Düzenleme: Rozeti biraz küçültelim */
@media (max-width: 991px) {
    .hero-floating-badge {
        bottom: 50px;
        transform: translateX(-50%) scale(0.8);
    }
    .badge-inner {
        padding: 30px 40px 30px 60px;
    }
    .badge-number { font-size: 56px; }
}

.hero-panel {
    flex: 1;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1.5px solid rgba(255, 255, 255, 0.1);
}

.panel-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: 1s ease;
}

.panel-content { position: relative; z-index: 10; color: #fff; }
.panel-tag { color: var(--gold); font-weight: 800; font-size: 11px; letter-spacing: 4px; display: block; margin-bottom: 15px; }
.panel-content h3 { font-family: 'Playfair Display'; font-size: 44px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; }
.panel-btn { font-weight: 800; font-size: 12px; text-transform: uppercase; border-bottom: 2px solid var(--gold); padding-bottom: 5px; color: #fff; }

.hero-panel:hover { flex: 1.3; }
.hero-panel:hover .panel-image { filter: grayscale(0%) brightness(0.6); }

/* --- INTRO SECTION --- */
.intro-text-section { padding: 100px 0; background: #fff; }
.intro-flex { display: flex; gap: 60px; align-items: flex-start; }
.intro-left { flex: 1; }
.intro-right { flex: 1; padding-top: 40px; }
.intro-left h2 { font-family: 'Playfair Display'; font-size: 48px; font-weight: 900; color: var(--steel); line-height: 1.1; }
.intro-left h2 span { color: var(--gold); }
.intro-right p { font-size: 17px; color: #64748b; line-height: 1.8; margin-bottom: 30px; }

.digital-badge { 
    display: inline-flex; align-items: center; gap: 10px; background: #f8fafc; 
    padding: 10px 20px; border-radius: 50px; font-size: 11px; font-weight: 800; 
    border: 1px solid #e2e8f0; margin-bottom: 25px;
}

/* --- MOBİL --- */
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--steel); cursor: pointer; }

@media (max-width: 991px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: var(--steel); flex-direction: column; padding: 100px 40px; transition: 0.4s ease; z-index: 10000;
    }
    .nav-links.active { right: 0; }
    .nav-links li a { color: #fff !important; font-size: 18px; }
    .nav-close { display: block; position: absolute; top: 25px; right: 25px; color: var(--gold); font-size: 30px; }
    
    .hero-full-split { flex-direction: column; height: auto; }
    .hero-panel { height: 45vh; padding: 40px; }
    .intro-flex { flex-direction: column; gap: 30px; }
    .intro-right { padding-top: 0; }
}