/* 레이아웃 CSS */

/* 플로팅 상담 메뉴 */
.floating-consult-menu {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* 상담신청 버튼 - 주황색 */
.consult-apply {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
}

.consult-apply:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7732 100%);
}

/* 전화상담 버튼 - 그린 */
.consult-call {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.consult-call:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* PC에서 전화버튼 - 클릭 불가 */
.pc-no-click {
    cursor: default;
}

.pc-no-click:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* 전화번호 스타일 */
.phone-number {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 펄스 애니메이션 (관심 유도) */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

.consult-apply {
    animation: pulse 2s infinite;
}

/* 태블릿 */
@media all and (min-width: 769px) and (max-width: 1024px) {
    .floating-consult-menu {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* 모바일 */
@media all and (max-width: 768px) {
    .floating-consult-menu {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .floating-btn span {
        display: inline-block;
    }
}

/* 작은 모바일 (아이콘만 표시) */
@media all and (max-width: 480px) {
    .floating-consult-menu {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        padding: 14px;
        min-width: 52px;
        min-height: 52px;
        justify-content: center;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .floating-btn svg {
        width: 26px;
        height: 26px;
    }
}

@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;}
}