/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* 询价表单整体容器 */
.inquiry-form-section {
    padding: 30px;
    background-color: #f0f8f0; /* 浅绿背景，可根据需求修改 */
    border-radius: 8px;
}

/* 单个表单项的行容器 */
.form-row {
    margin-bottom: 24px; /* 表单项之间的垂直间距 */
}

/* 表单项标签 */
.form-row label {
    display: block; /* 让标签独占一行，输入框在下方 */
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* 输入框（文本、邮箱、电话） */
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"] {
    width: 100%; /* 占满父容器宽度 */
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* 确保 padding/border 不撑破宽度 */
    font-size: 16px;
    transition: border-color 0.3s;
}

/* 输入框 hover/聚焦效果 */
.form-row input[type="text"]:hover,
.form-row input[type="email"]:hover,
.form-row input[type="tel"]:hover,
.form-row textarea:hover {
    border-color: #999;
}
.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row input[type="tel"]:focus,
.form-row textarea:focus {
    border-color: #009688; /* 主题色，可修改 */
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 150, 136, 0.2);
}

/* 文本域（Message） */
.form-row textarea {
    width: 100%; /* 占满父容器宽度 */
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    min-height: 120px; /* 最小高度，可调整 */
    resize: vertical; /* 仅允许垂直拉伸 */
    transition: border-color 0.3s;
}

/* 提交按钮 */
.form-row button[type="submit"] {
    background-color: #009688; /* 主题绿，可修改 */
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: inline-block; /* 行内块，可居中 */
    transition: background-color 0.3s;
}
.form-row button[type="submit"]:hover {
    background-color: #00796b; /*  hover 深色 */
}

/* 可选：让按钮居中 */
.form-row button[type="submit"] {
    margin: 20px auto 0; /* 上下间距 + 水平居中 */
    display: block;
}