/* ========================================
   Footer (THE HAN KANG GROUP corporate layout)
   ======================================== */

#footer {
    background-color: #f2f2f2;
    color: rgba(51, 51, 51, 0.5);
    font-family: 'Noto Sans KR', sans-serif;
    border-top: 1px solid #e0e0e0;
    width: 100%;
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 로고 */
#footer .footer_logo {
    margin-bottom: 35px;
}

#footer .footer_logo img {
    width: 170px;
    height: auto;
    display: block;
}

/* 정보 영역 */
#footer .footer_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

#footer .info_row {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

#footer .info_item {
    display: inline-block;
    font-size: 13px;
    color: rgba(51, 51, 51, 0.5);
    margin-right: 25px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

#footer .info_item:last-child {
    margin-right: 0;
}

#footer .address_row {
    margin-top: 4px;
}

#footer .address_row .info_item {
    font-size: 13px;
    color: rgba(51, 51, 51, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.6;
}

#footer .mobile-br {
    display: none;
}

/* 저작권 */
#footer .footer_copy {
    margin-top: 40px;
    width: 100%;
}

#footer .footer_copy p {
    color: rgba(51, 51, 51, 0.5);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ========================================
   반응형 디자인 (Responsive Settings)
   ======================================== */

/* 테블릿 & 모바일 공통 (1199px 이하) */
@media (max-width: 1199px) {
    #footer .inner {
        padding: 50px 30px;
    }
}

/* 모바일 전용 (767px 이하) */
@media (max-width: 767px) {
    #footer .inner {
        padding: 40px 20px;
    }
    
    #footer .footer_logo {
        margin-bottom: 25px;
    }
    
    #footer .footer_logo img {
        width: 160px;
    }
    
    #footer .footer_info {
        gap: 0;
    }
    
    #footer .info_row {
        display: block;
    }
    
    #footer .info_item {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    #footer .address_row {
        margin-top: 0;
    }
    
    #footer .address_row .info_item {
        margin-bottom: 0;
    }
    
    #footer .mobile-br {
        display: block;
    }
    
    #footer .footer_copy {
        margin-top: 30px;
    }
    
    #footer .footer_copy p {
        font-size: 11px;
    }
}

/* 작은 모바일 화면 보정 */
@media (max-width: 480px) {
    #footer .inner {
        padding: 35px 15px;
    }
    
    #footer .footer_logo img {
        width: 150px;
    }
}

/* =========================================================================
   Global Floating Buttons (Counsel & Call)
   ========================================================================= */
.global_floating_bar {
    position: fixed;
    right: 25px;
    bottom: 85px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.global_floating_bar .floating_btn {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.16);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.global_floating_bar .floating_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.global_floating_bar .floating_btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .global_floating_bar {
        right: 16px;
        bottom: 80px;
        gap: 10px;
    }
    
    .global_floating_bar .floating_btn {
        width: 52px;
        height: 52px;
    }
}

