/* Contact Page Styles */

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 70px);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Form Title */
.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

.form-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

/* Form Groups */
.form-group {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.form-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.label-text {
    margin-right: 5px;
}

.required {
    color: #ff0000;
    font-size: 12px;
    margin-left: 3px;
}

/* Input Fields */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid transparent;
    background: transparent;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-bottom-color: #333;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right center;
    background-size: 20px;
    padding-right: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    padding: 5px 0;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-text {
    user-select: none;
}

/* File Upload and Submit Button */
.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.file-input {
    display: none;
}

.file-name {
    font-size: 13px;
    color: #999;
}

.submit-button {
    padding: 12px 40px;
    background: #333;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
}

.submit-button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Form Notice */
.form-notice {
    margin: 40px 0 30px;
    padding: 20px;
    background: #f0f4ff;
    border-left: 4px solid #4a6fa5;
    border-radius: 4px;
}

.form-notice p {
    font-size: 14px;
    color: #4a6fa5;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn-main {
    padding: 16px 60px;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Pretendard Variable', 'Noto Sans KR', sans-serif;
    letter-spacing: -0.5px;
}

.submit-btn-main:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.submit-btn-main:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .checkbox-group {
        gap: 10px;
    }
    
    .form-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .submit-button {
        width: 100%;
    }
    
    .submit-btn-main {
        width: 100%;
        padding: 14px 40px;
    }
    
    .form-notice {
        margin: 30px 0 20px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 40px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
        box-shadow: none;
        border-radius: 0;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .checkbox-item {
        font-size: 13px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .submit-btn-main {
        font-size: 15px;
        padding: 14px 30px;
    }
    
    .form-notice p {
        font-size: 13px;
    }
}