/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 03 2026 | 09:58:07 */
/* =========================
  Modules-05 INQUIRY SECTION
========================= */
.inquiry-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: #ffffff;
    padding: 80px 70px;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.inquiry-section *,
.inquiry-section *::before,
.inquiry-section *::after {
    box-sizing: border-box;
}

/* =========================
   左侧文案区域
========================= */
.inquiry-left {
    flex: 1;
}

.inquiry-title {
    font-size: 48px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 30px;
    line-height: 1.18;
}

.inquiry-features {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 40px;
}

.inquiry-features li {
    font-size: 18px;
    color: #111111;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* 左侧按钮：统一调用 Woody 全站弹窗 */
.inquiry-btn-left {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #007bff;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.inquiry-btn-left:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.inquiry-btn-left::after {
    content: "→";
    font-size: 22px;
    line-height: 1;
}

/* =========================
   右侧 Formspree 表单区域
========================= */
.inquiry-right {
    flex: 1;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    padding: 30px;
}

.inquiry-form {
    margin: 0;
}

.inquiry-form-group {
    margin-bottom: 20px;
}

.inquiry-form-group input,
.inquiry-form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background: #f8f9fc;
    border-radius: 4px;
    font-size: 16px;
    color: #555555;
    outline: none;
}

.inquiry-form-group input:focus,
.inquiry-form-group textarea:focus {
    box-shadow: 0 0 0 1px #007bff;
}

.inquiry-form-group textarea {
    height: 175px;
    resize: vertical;
}

.inquiry-form-group input::placeholder,
.inquiry-form-group textarea::placeholder {
    color: #aaaaaa;
}

/* 上传按钮：与 ship-upload-btn 统一 */
.inquiry-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #007bff;
    color: #007bff;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.inquiry-upload-btn:hover {
    background: #007bff;
    color: #ffffff;
}

.inquiry-upload-btn input {
    display: none;
}

/* 提交按钮：与 ship-submit-btn 统一 */
.inquiry-submit-btn {
    width: 100%;
    background: #007bff !important;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 600;
    padding: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.inquiry-submit-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================
   响应式适配
========================= */
@media (max-width: 1024px) {
    .inquiry-section {
        flex-direction: column;
        align-items: stretch;
        padding: 50px 20px;
        gap: 40px;
    }

    .inquiry-title {
        font-size: 32px;
    }

    .inquiry-features li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .inquiry-section {
        padding: 45px 20px;
    }

    .inquiry-title {
        font-size: 30px;
    }

    .inquiry-btn-left,
    .inquiry-submit-btn {
        width: 100%;
        font-size: 17px;
    }

    .inquiry-right {
        padding: 24px 20px;
    }

    .inquiry-form-group textarea {
        height: 150px;
    }
}