/* Footer Styles - Main Site (OLD - DEPRECATED) */
.footer {
    display: none;
}

/* 새로운 푸터 스타일 */
.new-footer {
    width: 100%;
    background: #191919;
    border-top:1px solid #fff;
    position: relative;
    z-index: 10;
}

.frame-circle {
    width: 100%;
    height: 30px;
    display: block;
}

.new-footer-container {
    display: flex;
    width: 100%;
    min-height: 280px;
}

/* 왼쪽 섹션 - Let's Talk */
.footer-left {
    flex: 0 0 auto;
    width: 50%;
    padding: 81px 50px;
    display: flex;
    flex-direction: column;
    gap: 41px;
    border-right: 1px solid #fff;
    background: #191919;
}

.footer-intro-text {
    font-family: 'SUIT', sans-serif;
    font-size: 42px;
    line-height: 60.8px;
    letter-spacing: -2px;
    color: #fff;
}

.footer-intro-text .text-bold {
    font-weight: 800;
}

.footer-intro-text .text-normal {
    font-weight: 400;
}

.footer-lets-talk {
    display: flex;
    align-items: center;
}

.footer-lets-talk-svg {
    width: 100%;
    max-width: 1014px;
    height: auto;
    color: #fff;
    filter: brightness(0) invert(1);
}

.footer-contact-btn {
    background: #191919;
    border: 2px solid #fff;
    color: #fff;
    padding: 15px 35px;
    font-family: 'SUIT', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.footer-contact-btn:hover {
    background: #ffe600;
    color: #191919;
    border: 2px solid #fff;
    box-shadow: 4px 7px 0px #fff;
}

/* 오른쪽 섹션 */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* SNS 아이콘 */
.footer-sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 30px 50px;
    border-bottom: 1px solid #fff;
}

.footer-sns-icon {
    width: 44.355px;
    height: 44.355px;
    transition: opacity 0.3s ease;
    color: #fff;
    filter: brightness(0) invert(1);
}

.footer-sns-link:hover .footer-sns-icon {
    opacity: 0.7;
}

/* 별 모양 & 네비게이션 */
.footer-nav-section {
    display: flex;
    align-items: stretch;
}

.footer-stars {
    padding: 30px;
    border-right: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-star-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    color: #fff;
}

.footer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-nav a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 50px;
    border-bottom: 1px solid #fff;
    font-family: 'SUIT', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.72px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-nav a:last-child {
    border-bottom: none;
}

.footer-nav a:hover {
    background: rgba(248, 249, 250, 0.1);
}

/* 정보 섹션 */
.footer-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 50px;
    border-top: 1px solid #fff;
    text-align: right;
    justify-content: center;
}

.footer-privacy-link {
    font-family: 'Pretendard GOV', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.28px;
    color: #191919;
    opacity: 0.2;
}

.footer-privacy-link a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-privacy-link a:hover {
    opacity: 1;
}

.footer-company-info {
    font-family: 'SUIT', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.7px;
    letter-spacing: -0.28px;
    color: #fff;
    opacity: 0.2;
}

.footer-copyright {
    font-family: 'SUIT', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16.7px;
    letter-spacing: -0.28px;
    color: #fff;
    opacity: 0.2;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .footer-intro-text {
        font-size: 28px;
        line-height: 40px;
    }

    .footer-lets-talk {
        font-size: 120px;
        line-height: 90px;
        gap: 15px;
    }

    .footer-contact-btn {
        font-size: 24px;
        padding: 12px 28px;
    }
}

@media (max-width: 768px) {
    .new-footer-container {
        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #fff;
        padding: 40px 30px;
        gap: 30px;
    }

    .footer-intro-text {
        font-size: 24px;
        line-height: 34px;
    }

    .footer-lets-talk {
        font-size: 80px;
        line-height: 60px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-contact-btn {
        font-size: 20px;
        padding: 10px 24px;
        width: 100%;
        text-align: center;
    }

    .footer-sns,
    .footer-info-section {
        padding: 20px 30px;
    }

    .footer-stars {
        padding: 20px;
    }

    .footer-star-icon {
        width: 40px;
        height: 40px;
    }

    .footer-nav a {
        padding: 15px 30px;
        font-size: 16px;
    }

    .footer-company-info,
    .footer-copyright,
    .footer-privacy-link {
        font-size: 12px;
        line-height: 14px;
    }
}
