/* Kankacım, Header Stilleri - MAVİ & TURUNCU KONSEPT + İKONLAR */

:root {
    --primary-color: #317da8;       /* Petrol Mavisi/Turkuaz */
    --primary-dark-color: #256286;
    --accent-color: #e68f23;        /* Enerjik Turuncu (İkonlar için) */
    
    --primary-text: #1a1a1a;        
    --text-gray: #666666;           
    --light-bg: #f9f9f9;            
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

/* --- MASAÜSTÜ TOP BAR --- */
.top-bar {
    width: 100%;
    height: 45px;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.top-bar-left {
    background-color: var(--primary-color);
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 60px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    font-size: 13px;
    font-weight: 600;
    width: 55%;
}

.top-bar-left span { margin-right: 5px; }
.top-bar-left a { color: white; text-decoration: none; font-weight: 700; margin-left: 5px; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 10%;
    font-size: 13px;
    color: var(--text-gray);
    flex: 1;
    justify-content: flex-end;
}

.header-email-area {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.header-email-area:hover {
    color: var(--primary-color);
}

.separator { width: 1px; height: 15px; background-color: #ddd; }
.social-media { display: flex; align-items: center; gap: 15px; }
.social-media a { color: var(--primary-text); font-size: 14px; transition: var(--transition); }
.social-media a:hover { color: var(--primary-color); }

/* --- MOBİL ÖZEL TOP BAR --- */
.mobile-top-bar {
    display: none;
    width: 100%;
    height: 60px; 
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
}

/* Sol Grafiksel Alan - MAVİ */
.mobile-tb-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark-color) 100%); 
    color: white;
    height: 100%;
    width: 68%; 
    display: flex;
    align-items: center;
    padding-left: 15px;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    gap: 12px;
    position: relative;
    z-index: 2;
}

.mobile-tb-left i { 
    font-size: 24px;
    animation: phone-shake 3s infinite; 
}

@keyframes phone-shake {
    0%, 90% { transform: rotate(0deg); }
    92% { transform: rotate(15deg); }
    94% { transform: rotate(-15deg); }
    96% { transform: rotate(15deg); }
    98% { transform: rotate(-15deg); }
    100% { transform: rotate(0deg); }
}

.mobile-phone-nums {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mobile-phone-nums a {
    color: white;
    text-decoration: none;
    display: block;
}

.phone-primary {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.phone-secondary {
    font-size: 12px;
    font-weight: 600;
    opacity: 1;
    margin-top: 2px;
}

.mobile-top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 69%;
    height: 100%;
    background-color: rgba(49, 125, 168, 0.2); 
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
    transform: translateX(5px); 
    z-index: 1;
}

.mobile-tb-right {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 15px;
    flex: 1;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.mobile-tb-right a { 
    color: #333; 
    font-size: 18px; 
    text-decoration: none; 
    transition: color 0.3s;
}

.mobile-tb-right a:hover {
    color: var(--primary-color);
}

/* --- MAIN HEADER --- */
.main-header {
    background-color: #fff;
    padding: 10px 0; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1550px; 
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- LOGO ALANI --- */
.logo-area {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.logo-area a {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-area img {
    height: 125px; /* Heybetli logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-area:hover img {
    transform: scale(1.05);
}

/* --- MENÜ (YENİ İKONLU STİL) --- */
.nav-menu ul { list-style: none; display: flex; gap: 25px; }

.nav-menu a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px; /* İkon ile yazı arası boşluk */
    padding: 5px 0;
    position: relative;
}

/* Menü İkonları - TURUNCU */
.nav-menu a i {
    font-size: 16px;
    color: var(--accent-color); /* Turuncu renk ile canlandırdık */
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Menü Hover */
.nav-menu a.active, .nav-menu a:hover {
    color: var(--primary-color); /* Yazı MAVİ */
}

/* Hover'da İkon Efekti */
.nav-menu a:hover i {
    color: var(--primary-color); /* İkon da MAVİ olur */
    transform: translateY(-2px); /* Hafif zıplar */
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Sağ Taraf Action */
.header-actions { display: flex; align-items: center; gap: 25px; }
.phone-box { display: flex; align-items: center; gap: 12px; }
.phone-icon-circle { width: 45px; height: 45px; background-color: #f3f3f3; border-radius: 8px; display: flex; justify-content: center; align-items: center; color: var(--primary-color); font-size: 20px; transition: var(--transition); }
.phone-box:hover .phone-icon-circle { background-color: var(--primary-color); color: white; }
.phone-info { display: flex; flex-direction: column; line-height: 1.2; }
.phone-label { font-size: 12px; color: var(--text-gray); }
.phone-number { font-size: 18px; font-weight: 800; color: var(--primary-text); }

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(49, 125, 168, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(49, 125, 168, 0); }
    100% { box-shadow: 0 0 0 0 rgba(49, 125, 168, 0); }
}

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-contact { background-color: var(--primary-color); color: white; padding: 12px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 14px; transition: var(--transition); animation: pulse-blue 2s infinite; }
.btn-contact:hover { background-color: var(--primary-dark-color); transform: translateY(-2px); animation: none; }

.btn-search { display: none; }

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1005; }
.bar { width: 30px; height: 3px; background-color: #000; transition: var(--transition); border-radius: 2px; }

.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- RESPONSIVE (Mobil) --- */
@media (max-width: 1200px) {
    .top-bar { display: none; }
    .mobile-top-bar { display: flex; } 
    
    .nav-menu { display: none; } 
    .header-actions { display: none; } 
    
    .hamburger { 
        display: flex; 
        transform: translateY(0); 
    }

    .header-container { padding: 0 20px; height: 100px; }
    .logo-area img { height: 85px; } 

    /* KANKACIM BURASI FULL SCREEN AYARI */
    .nav-menu.active {
        display: flex; 
        position: fixed; 
        top: 0; 
        right: 0; 
        /* %100 Genişlik (Tam Ekran) */
        width: 100%;
        height: 100vh;
        background-color: white; 
        flex-direction: column; 
        /* Üst padding sıfırlandı, artık .mobile-menu-top-header'ın paddingi var */
        padding-top: 0; 
        z-index: 1001;
        overflow-y: auto; 
    }

    .nav-menu.active ul { 
        flex-direction: column; 
        padding: 0 20px; 
        width: 100%; 
        gap: 15px;
        margin-bottom: 20px; 
        flex: 1;
    }
    .nav-menu.active ul li { border-bottom: 1px solid #f1f1f1; padding-bottom: 10px; }
    
    /* Mobil menü ikonları için ayar */
    .nav-menu.active a {
        font-size: 18px;
    }
    .nav-menu.active i {
        font-size: 20px;
        margin-right: 10px;
    }

    .mobile-actions-area {
        background-color: var(--primary-color);
        padding: 30px 20px;
        color: white; 
        margin-top: auto; 
        width: 100%;
        position: relative;
        text-align: center; 
    }

    .mobile-phone-box { 
        display: flex; 
        align-items: center; 
        gap: 15px; 
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .mobile-phone-box i { 
        font-size: 24px; 
        background: rgba(255,255,255,0.2); 
        padding: 10px; 
        border-radius: 50%; 
    }

    /* Alttaki butonu kaldırdık ama sınıfı burada kalsa da olur, HTML'den sildik */
    .mobile-btn-contact { 
        display: block; 
        background-color: white; 
        color: var(--primary-color); 
        padding: 15px 0; 
        border-radius: 50px; 
        font-weight: 800; 
        text-decoration: none; 
        margin: 0 20px; 
        width: auto; 
        text-align: center; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        animation: pulse-white 2s infinite;
    }
}