/* 레이아웃 CSS */
@media all and (max-width:1024px) { 
    .footer_gnb .inner {padding-left: 0px !important; padding-right: 0px !important;}
    .footer_copy .inner {padding-left: 0px !important; padding-right: 0px !important;}
}

/* 상담 바로가기 스타일 */
.footer_consult_wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 0;
}

.footer_consult_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 60px;
}

.footer_consult_item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.footer_consult_icon {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
    display: block;
}

.footer_consult_item span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    color: #fff;
}

.footer_consult_item.kakao .footer_consult_icon {
    width: 24px;
    height: 24px;
}

/* 모바일 반응형 */
@media all and (max-width: 768px) {
    .footer_consult_wrap {
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .footer_consult_item {
        min-width: 65px;
        padding: 8px 10px;
    }
    
    .footer_consult_icon {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    
    .footer_consult_item span {
        font-size: 10px;
    }
}