/* 고객 문의 페이지 스타일 */

.customer-collect-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    gap: 20px;
}

/* 설명 영역 */
.description {
    width: 55%;
    color: #222;
}

.summary-title {
    color: #999;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.title {
    font-weight: 700;
    font-size: 36px;
    margin: 10px 0 30px 0;
    line-height: 1.2;
    word-break: keep-all;
}

.introduce {
    margin-bottom: 20px;
}

.introduce p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.introduce p.emphasis {
    font-size: 18px;
    margin-bottom: 34px;
    font-weight: 600;
    line-height: 1.3;
}

.introduce p.emphasis.medium {
    font-size: 18px;
}

.introduce p.emphasis.large {
    font-size: 24px;
}

.introduce p.emphasis.large-2 {
    font-size: 28px;
}

.introduce p.emphasis.large-3 {
    font-size: 36px;
}

/* 로고 */
.to-logo-container {
    margin-top: 30px;
}

.to-logo-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
}

.to-logo-item {
    flex-shrink: 0;
}

.to-logo-image {
    vertical-align: top;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* 폼 영역 */
.form-container {
    margin-left: 20px;
    margin-top: 80px;
    border-radius: 10px;
    padding: 35px 40px;
    width: 40%;
    min-height: 830px;
    box-shadow: 0 0 20px rgba(88, 88, 88, 0.2);
    background: #fff;
}

.rd-select-title {
    font-weight: 700;
    color: #222;
    font-size: 18px;
    margin-bottom: 16px;
}

.landingpopup_sm1 {
    width: 100%;
    background: #fff;
    border-radius: 3px;
}

.box_consultinput {
    margin: 4px 0;
}

.box_consultinput input,
.box_consultinput textarea {
    border: 1px solid #ddd;
    box-shadow: inset 0 0 0 rgba(204, 204, 204, 0.8);
    background: #fff;
    width: 100%;
    height: 54px;
    border-radius: 3px;
    padding-left: 10px;
    margin: 4px 0;
    box-sizing: border-box;
    font-size: 14px;
}

.box_consultinput textarea {
    height: 100px;
    padding: 17px 14px;
    resize: vertical;
}

.box_consultinput.flexible {
    display: flex;
    align-items: center;
}

.box_consultinput input[type="checkbox"],
.box_consultinput input[type="radio"] {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.box_consultinput label {
    cursor: pointer;
    font-size: 14px;
}

/* 방문 경로 */
.path-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-bottom: 22px;
}

.path-form .service {
    display: flex;
    align-items: center;
}

.path-form input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
}

.path-form input[type="radio"] + label {
    color: #666;
    cursor: pointer;
    font-size: 14px;
}

/* 체크박스 설명 */
.chk-descript {
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.chk-descript p {
    margin: 5px 0;
}

.underline {
    text-decoration: underline;
}

/* 제출 버튼 */
.btn-submit {
    background-color: #268D6E;
    width: 100%;
    height: 58px;
    border-radius: 2px;
    color: #fff;
    margin-top: 27px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-submit:hover:not(.disabled) {
    background-color: #1f7459;
}

.btn-submit.disabled {
    pointer-events: none;
    background-color: #ccc;
    cursor: not-allowed;
}

/* 제출 완료 */
.submit-complete {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.submit-complete p {
    font-size: 24px;
    margin: 10px 0;
    text-align: center;
}

/* 반응형 */
@media (max-width: 1024px) {
    .customer-collect-container {
        flex-direction: column;
    }

    .description,
    .form-container {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .form-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .customer-collect-container {
        padding: 10px;
    }

    .introduce p.emphasis.large-3 {
        font-size: 28px;
    }

    .form-container {
        padding: 20px;
    }

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

    .to-logo-list {
        justify-content: center;
    }
}

