/* ===== MOBİL HAMBURGER MENÜ - SAĞDAN AÇILAN ===== */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 18px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 100000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active { display: block; opacity: 1; }

/* Panel - SAĞDAN AÇILAN */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
}
.mobile-menu-panel.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: transparent;
}
.mobile-menu-header img { height: 55px; width: auto; }

.mobile-menu-panel > ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu-panel > ul > li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu-panel > ul > li > a {
    display: block;
    padding: 16px 50px 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}
.mobile-menu-panel > ul > li > a:hover { background: #f8f8f8; color: #01cab8; }

.mobile-menu-panel ul ul { background: transparent; display: none; list-style: none; margin: 0; padding: 0; }
.mobile-menu-panel .has-submenu.open > ul { display: block !important; }
.mobile-menu-panel ul ul li { list-style: none; position: relative; }
.mobile-menu-panel ul ul li a {
    display: block;
    padding: 12px 50px 12px 35px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.mobile-menu-panel ul ul li a:hover { color: #01cab8; }

/* 2. seviye açıldığında arka plan rengi */
.mobile-menu-panel ul ul li.has-submenu.open > a { background: rgba(2, 201, 184, 0.1); color: #01cab8; }

/* 3. seviye menü */
.mobile-menu-panel ul ul ul { padding-left: 15px; }
.mobile-menu-panel ul ul ul li a { padding-left: 50px; font-size: 13px; }

.mobile-menu-panel .has-submenu { position: relative; }
.mobile-submenu-toggle {
    position: absolute; right: 10px; top: 0;
    width: 36px; height: 52px;
    background: transparent; border: none; border-radius: 6px;
    cursor: pointer; font-size: 22px;
    color: #666;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease;
}
/* 2. ve 3. seviye toggle butonları için daha küçük yükseklik */
.mobile-menu-panel ul ul .mobile-submenu-toggle { height: 42px; font-size: 18px; }
.mobile-submenu-toggle:hover { color: #01cab8; }
.mobile-menu-panel .has-submenu.open > .mobile-submenu-toggle { transform: rotate(180deg); color: #01cab8; }

.mobile-menu-footer {
    padding: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
}
.mobile-menu-footer a {
    display: block;
    padding: 14px 20px;
    background: #002c5d;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.2s;
}
.mobile-menu-footer a:hover { background: #003d7a; }
.mobile-menu-footer a.mobile-menu-phone { background: #01cab8; }
.mobile-menu-footer a.mobile-menu-phone:hover { background: #00b5a5; }

/* Responsive */
@media (max-width: 1200px) {
    .mobile-menu-toggle { display: flex !important; }
    .menuPort { display: none !important; }
    .topBarInMenu { display: none !important; }
    html, body { overflow-x: hidden !important; }
    /* Header logo mobilde küçült */
    .bt-logo-area .logo img, .btMainLogo { height: 75px !important; }
}
@media (min-width: 1201px) {
    .mobile-menu-toggle, .mobile-menu-overlay, .mobile-menu-panel { display: none !important; }
}
