/* Doctor + mobile menu patch */
.site-mobile-toggle {
    position: relative;
    z-index: 10001;
}

.site-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9998;
}

.site-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    background: #fff;
    transform: translateX(105%);
    transition: transform .28s ease;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -16px 0 45px rgba(0, 0, 0, .18);
}

body.site-mobile-open {
    overflow: hidden;
}

body.site-mobile-open .site-mobile-backdrop {
    opacity: 1;
    visibility: visible;
}

body.site-mobile-open .site-mobile-panel {
    transform: translateX(0);
}

.site-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.site-mobile-logo img {
    max-width: 92px;
    height: auto;
    display: block;
}

.site-mobile-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #222;
    line-height: 42px;
    text-align: center;
    padding: 0;
}

.site-mobile-search {
    padding: 16px 20px 12px;
    border-bottom: 1px solid #f1f1f1;
}

.site-mobile-search form {
    display: flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    border-radius: 999px;
    overflow: hidden;
    background: #fafafa;
}

.site-mobile-search input {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    height: 44px;
    padding: 0 14px;
    outline: 0;
    color: #222;
}

.site-mobile-search button {
    flex: 0 0 48px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #222;
}

.site-mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-mobile-nav > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

.site-mobile-nav a,
.site-mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 20px;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.site-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.site-mobile-nav details[open] > summary {
    background: #fafafa;
}

.site-mobile-nav details[open] > summary i {
    transform: rotate(180deg);
}

.site-mobile-nav summary i {
    transition: transform .2s ease;
    font-size: 12px;
}

.site-mobile-nav details ul {
    padding: 4px 0 8px;
    background: #fbfbfb;
}

.site-mobile-nav details ul a {
    min-height: 42px;
    padding-left: 36px;
    padding-right: 20px;
    font-weight: 500;
    color: #555;
}

.site-mobile-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 18px 20px 26px;
}

.site-mobile-languages a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 36px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    color: #222;
    font-weight: 700;
    text-decoration: none;
}

.site-mobile-languages a.active {
    background: #222;
    border-color: #222;
    color: #fff;
}

@media (min-width: 992px) {

    .site-mobile-backdrop,
    .site-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-header {
        float: none;
    }

    .navbar .navbar-toggle.site-mobile-toggle {
        display: block;
        margin-top: 22px;
        margin-right: 0;
        border: 0;
        background: transparent !important;
        color: #222;
    }

    .navbar.navbar-transparent.white .navbar-toggle.site-mobile-toggle {
        color: #fff;
    }

    .navbar.bootsnav.navbar-fixed.no-background .navbar-toggle.site-mobile-toggle {
        color: #fff;
    }

    .navbar.bootsnav.navbar-fixed .navbar-toggle.site-mobile-toggle {
        color: #222;
    }

    .navbar .navbar-toggle.site-mobile-toggle i {
        font-size: 22px;
    }

    #navbar-menu.navbar-collapse.collapse {
        display: none !important;
    }

    .attr-nav {
        right: 55px;
    }
}

/* v5: kategori/hizmet kartlarını eşit yükseklikte tut */
.category-card-row,
.advisor-items {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.category-card-row::before,
.category-card-row::after,
.advisor-items::before,
.advisor-items::after {
    display: none !important;
}

.category-card-row > .category-grid-card,
.advisor-items > .category-grid-card {
    float: none !important;
    display: flex;
}

.category-grid-card > a {
    display: flex;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.category-grid-card .advisor-item,
.category-grid-card .info-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-grid-card .info-box {
    background: #fff;
    overflow: hidden;
}

.category-grid-card .thumb img,
.category-grid-card .info-box img,
.category-grid-card .blog-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #eee;
}

.category-grid-card .info-title {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.category-grid-card .info-title h4 {
    margin: 0;
    line-height: 1.25;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.social-statik {}

.social-statik .float,
.social-statik .float2 {
    padding: 7px;
    position: fixed;
    width: 50px;
    height: 50px;
    left: 10px;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    z-index: 100;
}

.social-statik .float2 {
    bottom: 115px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFF;
}

.social-statik .float {
    bottom: 60px;
    background-color: #25d366;
    color: #FFF;
}

.social-statik .my-float-text,
.social-statik .my-float-text2 {
    position: absolute;
    width: 96px;
    left: 130%;
    background-color: #e6e6e6;
    font-size: 12px;
    color: #000000;
    top: 11px;
    padding: 3px 0 3px 0;
    margin-right: 7px;
    letter-spacing: -.03em;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;

}

@media (max-width: 991px) {

    .category-card-row,
    .advisor-items {
        display: block;
    }

    .category-card-row > .category-grid-card,
    .advisor-items > .category-grid-card {
        display: block;
        width: 100%;
    }
}
