/* ===== INQUIRY PAGE ===== */
.inquiry-page {
    padding: 40px 0 80px;
}

.inquiry-page__header {
    margin-bottom: 40px;
}

.inquiry-page__subtitle {
    margin-bottom: 8px;
}

.color-orange { color: #E84E0F; }
.color-green  { color: #3A7D44; }

/* 테이블 폼 */
.inquiry-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #333;
    margin-bottom: 40px;
}

.inquiry-table__row {
    border-bottom: 1px solid #ddd;
}

.inquiry-table__label {
    width: 180px;
    padding: 20px 24px;
    text-align: left;
    vertical-align: middle;
    font-weight: 400;
    background: transparent;
}

.inquiry-table__field {
    padding: 16px 12px;
    vertical-align: middle;
}

/* 인풋 공통 */
.inquiry-input {
    width: 100%;
    max-width: 580px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.inquiry-input:focus {
    border-color: #E84E0F;
}

/* 휴대폰 */
.phone-wrap { gap: 8px; }

.inquiry-select {
    width: 100px;
    height: 44px;
    padding: 0 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.inquiry-input--phone {
    width: 100px;
    max-width: 100px;
    text-align: center;
}

.phone-dash { color: #555; }

/* 텍스트에어리어 */
.inquiry-textarea {
    width: 100%;
    max-width: 1060px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.2s;
}

.inquiry-textarea:focus {
    border-color: #E84E0F;
}

/* 버튼 */
.inquiry-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-inquiry-submit {
    display: inline-block;
    padding: 16px 60px;
    background-color: #E84E0F;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-inquiry-submit:hover {
    background-color: #c94209;
}