/* Header Custom Styles */

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(135deg, #0a0a0a 0%, #141420 100%);
    border-bottom: 1px solid rgba(0, 219, 222, 0.2);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar-item i {
    color: #00dbde;
    font-size: 12px;
}

.top-bar-item:hover {
    color: #00dbde;
}

.top-bar-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Ultra Modern Navbar - Footer ile Uyumlu */
.navbar {
    padding: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent 0%, #00dbde 25%, #fc466b 50%, #00dbde 75%, transparent 100%);
    border-image-slice: 1;
    height: 70px;
    overflow: visible;
    z-index: 1000;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 219, 222, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(252, 70, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.navbar .container {
    padding: 0 15px;
    max-width: 1400px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    position: relative;
    z-index: 100;
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-top: 35px;
}

.navbar-brand img {
    max-height: 140px;
    max-width: 700px;
    height: auto;
    width: auto;
    filter: brightness(1.1);
    position: relative;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-brand span {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00dbde 0%, #fc466b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-collapse {
    height: 70px;
    display: flex;
    align-items: center;
}

.navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Menü Öğeleri - Çok Dar */
.navbar-nav {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 0 8px !important;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.85) !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 8px;
    position: relative;
    height: 100%;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00dbde, #fc466b);
    transition: width 0.3s ease;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #00dbde !important;
    background: rgba(0, 219, 222, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

/* Dropdown Menü */
.dropdown-menu {
    margin-top: 0;
    border: none;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 10px;
    min-width: 220px;
    border-top: 2px solid rgba(0, 219, 222, 0.3);
    top: 100% !important;
    transform: translateY(0) !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 9px 12px;
    color: rgba(255,255,255,0.85) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 12.5px;
}

.dropdown-item i {
    width: 16px;
    color: #00dbde;
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 219, 222, 0.1);
    color: #00dbde !important;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.2);
}

/* WhatsApp Butonu */
.navbar-actions {
    margin-left: 15px;
}

.btn-success {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 25px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

/* Mobil Menü */
@media (max-width: 991.98px) {
    .navbar {
        height: 60px;
        position: relative;
        z-index: 1050;
    }

    .navbar-brand {
        margin-top: 0;
    }

    .navbar-brand img {
        max-height: 50px;
        max-width: 150px;
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        z-index: 1051;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        height: auto;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1049;
    }

    .navbar-nav {
        gap: 5px;
        height: auto;
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        height: auto;
    }

    .nav-link::before {
        display: none;
    }

    .dropdown-menu {
        background: rgba(0, 0, 0, 0.3);
        box-shadow: none;
        padding: 5px;
        margin: 5px 0;
        position: static !important;
        transform: none !important;
    }

    .navbar-actions {
        margin: 20px 0 0 0;
        text-align: center;
    }

    .btn-success {
        width: 100%;
        justify-content: center;
    }
}

/* Aktif Menü Öğesi */
.nav-item.active .nav-link {
    color: #00dbde !important;
    background: rgba(0, 219, 222, 0.1);
}

.nav-item.active .nav-link::before {
    width: 80%;
}
