/* BilPark Custom Mobile Nav */
.bp-mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .bp-mobile-nav { display: flex; }
    body { padding-top: 64px; }
    /* Mobilde masaüstü navbar gizli kalsın; hamburger varken çift menüyü
       (navbar + hamburger üst üste) ve sticky navbar'ın içeriği örtmesini önler.
       responsive.css bunu zaten yapar; burada yüksek specificity + !important
       ile garanti altına alınır. */
    .header-area,
    #sticky-header { display: none !important; }
}
.bp-mobile-logo img {
    height: 44px;
    width: auto;
    display: block;
}
.bp-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 0;
}
.bp-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #0c5adb;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.bp-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.bp-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.bp-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}
.bp-nav-list {
    display: none;
    width: 100%;
    list-style: none;
    margin: 8px 0 4px;
    padding: 0;
    border-top: 1px solid #eee;
}
.bp-nav-list.open {
    display: block;
}
.bp-nav-list li {
    border-bottom: 1px solid #eee;
}
.bp-nav-list li a {
    display: block;
    padding: 13px 4px;
    color: #232323;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.bp-nav-list li a:hover {
    color: #0c5adb;
}
/* Mobil menü dil seçici (TR / EN) — lang.js .lang-link'leri otomatik yönetir */
.bp-mobile-lang {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 12px 4px 4px;
    border-bottom: none;
}
.bp-mobile-lang a.lang-link {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #232323;
    text-decoration: none;
    transition: all 0.2s;
}
.bp-mobile-lang a.lang-link.active {
    background: #0c5adb;
    border-color: #0c5adb;
    color: #fff;
}
