/* ===========================================
   Navigation CTA Button - 파인싱크 브랜드 색상
   메뉴의 상담문의 버튼
   =========================================== */

.nav-cta {
    /* 배경색 - 파인싱크 남색 */
    background: #1B3559 !important;
    background-color: #1B3559 !important;
    
    /* 글씨 - 흰색 */
    color: #ffffff !important;
    
    /* 직사각형 */
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    
    /* 기타 스타일 */
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    /* 호버 배경색 - 파인싱크 청록색 */
    background: #099F97 !important;
    background-color: #099F97 !important;
    
    /* 글씨 - 흰색 유지 */
    color: #ffffff !important;
    
    /* 직사각형 유지 */
    border-radius: 0 !important;
}

/* 홈 페이지용 추가 스타일 */
.home .navbar .nav-cta {
    background: #1B3559 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.home .navbar .nav-cta:hover {
    background: #099F97 !important;
    color: #ffffff !important;
}

/* 스크롤 시 */
.navbar.scrolled .nav-cta {
    background: #1B3559 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.navbar.scrolled .nav-cta:hover {
    background: #099F97 !important;
    color: #ffffff !important;
}
