/* ===== 푸터 공통 ===== */
.site-footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 48px 20px 32px;
    margin-top: 0;
    color: #a0a0b0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: #888;
}

.footer-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0b0;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: #fff;
}

.footer-contact-item i {
    font-size: 16px;
    color: #007bff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-info strong {
    color: #888;
}

.footer-copyright {
    font-size: 12px;
    color: #555;
    margin-top: 8px;
}