/* Contact Hero */
.contact-hero {
    padding: 160px 20px 80px;
    text-align: center;
    background: #111;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    margin: 0 0 16px;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* Contact Bar */
.contact-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.contact-bar-item {
    flex: 1;
    max-width: 280px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border-right: 1px solid #eee;
    transition: background 0.2s;
}

.contact-bar-item:last-child {
    border-right: none;
}

a.contact-bar-item:hover {
    background: #f8f9fa;
}

.contact-bar-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.contact-bar-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 640px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Noto Sans KR", sans-serif;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ebb77;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Noto Sans KR", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-submit-btn:hover {
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-bar {
        flex-wrap: wrap;
    }

    .contact-bar-item {
        flex: 1 1 50%;
        max-width: none;
        padding: 20px 16px;
        border-bottom: 1px solid #eee;
    }

    .contact-bar-item:nth-child(odd) {
        border-right: 1px solid #eee;
    }

    .contact-bar-item:nth-child(even) {
        border-right: none;
    }

    .contact-section {
        padding: 40px 16px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-bar-item {
        flex: 1 1 100%;
        border-right: none !important;
    }
}
