﻿/*.charok-navbar {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #ececec;
    height: 82px;
    transition: .3s;
    z-index: 9999;
}

.logo {
    height: 52px;
    width: auto;
}

.navbar-nav {
    gap: 12px;
}

.nav-link {
    color: #1f2937;
    font-weight: 600;
    font-size: .98rem;
    padding: .8rem 1rem !important;
    position: relative;
    transition: .25s;
}

    .nav-link:hover {
        color: #2563eb;
    }

    .nav-link.active {
        color: #2563eb !important;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 4px;
            height: 3px;
            background: #2563eb;
            border-radius: 50px;
        }

.btn-whatsapp {
    background: #2563eb;
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(37,99,235,.25);
}

    .btn-whatsapp:hover {
        color: white;
        transform: translateY(-2px);
        background: #1d4ed8;
    }

    .btn-whatsapp i {
        font-size: 1.2rem;
    }

.navbar-toggler {
    padding: 8px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

@media (max-width:991px) {

    .charok-navbar {
        height: auto;
        padding: 12px 0;
    }

    .navbar-collapse {
        background: white;
        margin-top: 18px;
        border-radius: 18px;
        padding: 25px;
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .navbar-nav {
        gap: 0;
        margin-bottom: 20px;
    }

    .nav-link {
        padding: 14px 0 !important;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:576px) {

    .logo {
        height: 44px;
    }
}
*/