/* 퀵바 스타일 */
.nit_quickbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 15px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 190px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

.nit_quickbar_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.nit_quickbar_item {
    margin: 0;
}

.nit_quickbar_link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 700;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

.nit_quickbar_link:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    transform: translateX(-3px);
    border-radius: 10px;
}

.nit_quickbar_separator {
    height: 1px;
    background: #e2e8f0;
    margin: 5px 0;
}

.nit_quickbar_separator.double {
    margin: 5px 0;
    height: 2px;
    background: #e2e8f0;
}

/* 퀵바 아이콘 영역 */
.nit_quickbar_link::before {
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.nit_quickbar_link span {
    flex: 1;
    text-align: center;
    margin-right: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

/* 퀵바 아이콘 */
.nit_quickbar_link[href="index.php"]::before,
nit_quickbar_link[href="#home"]::before {

    content: "\f015";
}

.nit_quickbar_link[href="nit_internet.php"]::before,
nit_quickbar_link[href="#internet"]::before {
    content: "\f6ff";
}

.nit_quickbar_link[href="nit_phone.php"]::before,
nit_quickbar_link[href="#phone"]::before {
    content: "\f3cd";
}

.nit_quickbar_link[href="nit_tv.php"]::before,
nit_quickbar_link[href="#tv"]::before {
    content: "\f26c";
}

.nit_quickbar_link[href="nit_network.php"]::before,
nit_quickbar_link[href="#network"]::before {
    content: "\f0e8";
}

.nit_quickbar_link[href="#inquiry"]::before {
    content: "\f0e0";
}

.nit_quickbar_link[href="#kakao"]::before {
    content: "\f075";
}

.nit_quickbar_link[href="#tel"]::before {
    content: "\f879";
}

.nit_quickbar_link[href="#top"]::before {
    content: "\f062";
}

@media screen and (max-width: 768px) {
    .nit_quickbar {
        display: none;
    }
} 