/* Contact 섹션 */
.section-contact {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
}

.section-contact .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 1000px;
}

.contact-main h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-contact-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-contact-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* 반응형 */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .contact-item {
        padding: 20px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
