/* 咨询页面专用样式 - Refined Flat Design */
.jt-inquiry-wrap {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "sans-serif";
    color: #2c3e50;
    line-height: 1.6;
}

/* 电话咨询区域 - Clean Layout */
.jt-tel-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: 5px solid #0086cd;
    padding: 40px 50px;
    margin-bottom: 50px;
}

.jt-tel-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jt-tel-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.jt-tel-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 32px;
    font-weight: 800;
    color: #1b1e21;
    flex: 1;
}

.jt-tel-left i {
    color: #0086cd;
    font-size: 22px;
    margin-right: 20px;
    width: 48px;
    height: 48px;
    border: 2px solid #0086cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jt-tel-office {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
    margin-left: 68px;
    margin-top: 2px;
}

.jt-tel-divider {
    width: 1px;
    height: 70px;
    background-color: #ced4da;
}

.jt-tel-right {
    flex: 0 0 300px;
}

.jt-hours-label {
    color: #d9534f;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

.jt-hours-item {
    font-size: 15px;
    color: #495057;
    margin-bottom: 3px;
    font-weight: 500;
}

.jt-hours-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

/* 表单内容区域 */
.jt-form-container {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 50px 60px;
}

.jt-form-container h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #212529;
}

.jt-form-desc {
    text-align: center;
    color: #6c757d;
    margin-bottom: 45px;
    font-size: 16px;
}

.jt-form-group {
    margin-bottom: 30px;
}

.jt-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #343a40;
}

/* 必填符号显眼 */
.jt-required {
    color: #dc3545 !important;
    margin-left: 5px;
    font-weight: bold;
}

.jt-input,
.jt-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 16px;
    background: #fdfdfd;
    transition: all 0.2s ease-in-out;
    color: #495057;
}

.jt-input:focus,
.jt-textarea:focus {
    background: #fff;
    border-color: #0086cd;
    outline: none;
    box-shadow: none;
}

.jt-textarea {
    height: 150px;
    resize: vertical;
}

/* 隐私声明区域 */
.jt-privacy-box {
    margin: 15px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    height: 300px;
    overflow-y: scroll;
    font-size: 14px;
    line-height: 1.8;
    color: #495057;
}

.jt-agree-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    font-weight: 700;
    font-size: 16px;
}

.jt-agree-label input {
    margin-right: 15px;
    width: 18px;
    height: 18px;
}

.jt-submit-btn {
    display: block;
    width: 320px;
    margin: 50px auto 0;
    padding: 18px;
    background: #0086cd;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.jt-submit-btn:hover {
    background: #005a8c;
}

@media screen and (max-width: 767px) {
    .jt-inquiry-wrap {
        margin: 30px auto;
    }

    .jt-tel-section {
        padding: 30px 15px;
    }

    .jt-tel-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .jt-tel-divider {
        display: none;
    }

    .jt-tel-left {
        font-size: 26px;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .jt-tel-left i {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 5px;
        border-radius: 50%;
    }

    .jt-tel-num {
        display: block;
        line-height: 1.2;
    }

    .jt-tel-office {
        margin-left: 0;
        display: block;
    }

    .jt-form-container {
        padding: 30px 15px;
    }

    .jt-submit-btn {
        width: 100%;
        max-width: 320px;
    }
}