/* BASIC css start */
/* =================================================================
   Footer & Fixed Buttons (개선안)
================================================================= */

/* 1. 변수 및 기본 설정 */
:root {
    --color-primary: #0C025B;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #e9e9e9;
    --color-bg: #f9fafb;
    --font-main: 'Pretendard', sans-serif;
    --border-radius: 8px;
}

/* 2. Footer */
#footer {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    padding: 5rem 1rem; /* 상하 여백을 padding으로 처리 */
    border-top: 1px solid var(--color-border);
}

.foot_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: center; /* ✅ flex-start 에서 center 로 변경 */
    flex-wrap: wrap;
    gap: 6rem; /* 간격은 그대로 유지 */
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.customer-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo img {
    height: 80px;
    object-fit: contain;
}

.customer-details h4 {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.customer-details .phone {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.customer-details .time {
    font-size: 0.875rem; /* 14px */
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0 0 1rem;
}

.customer-details .bank strong {
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
}

.company-info {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem; /* 14px */
    color: var(--color-text-light);
    line-height: 1.7;
}

.company-info strong {
    color: var(--color-text);
    margin-right: 0.5rem;
}

.biz-check {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s;
}
.biz-check:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom .copy {
    font-size: 0.8125rem; /* 13px */
    color: #999;
}


/* 3. Fixed Move Buttons */
.fix_move_btn {
    position: fixed;
    bottom: 3rem;
    right: 2rem;
    z-index: 100;
}

.fix_move_btn ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fix_move_btn a {
    display: block;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.fix_move_btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.fix_move_btn img {
    width: 100%;
    height: 100%;
}


/* 4. Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    #footer {
        padding: 3rem 1rem;
    }
    .customer-center {
        flex-direction: column;
        align-items: flex-start;
    }
    .company-info {
        flex-direction: column;
        gap: 1rem;
    }
    .fix_move_btn {
        bottom: 1.5rem;
        right: 1rem;
    }
}

/* BASIC css end */

