
/* --- 页面整体容器 --- */
.wh-contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
}

/* 顶部介绍文字 */
.wh-contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* --- 三列卡片布局 --- */
.wh-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* 单个卡片样式 */
.wh-contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* 轻微阴影增加立体感 */
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wh-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12, 139, 86, 0.15); /* 悬停时出现绿色光晕 */
    border-color: #0C8B56;
}

/* 图标样式 */
.wh-icon-box {
    width: 60px;
    height: 60px;
    background: #f0fdf6; /* 极淡的绿色背景 */
    color: #0C8B56; /* 品牌主色 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.wh-icon-box svg {
    width: 30px;
    height: 30px;
}

/* 文字排版 */
.wh-contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.wh-contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 强调文字（电话/人名） */
.wh-name {
    font-weight: 600;
    color: #333;
}

.wh-highlight {
    font-size: 18px;
    font-weight: bold;
    color: #0C8B56;
}

/* 链接样式 */
.wh-link {
    color: #0C8B56;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #E4B667; /* 金色下划线 */
    transition: all 0.2s;
}

.wh-link:hover {
    background: #E4B667;
    color: #fff;
    border-color: #E4B667;
}

/* --- 地图区域 --- */
.wh-map-section {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.wh-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 强制美化底部自带的 Inquiry Form (针对 ly_form_9) --- */
/* 这部分会作用于您页面下方原本存在的那个表单 */

/* 表单整体背景 */
.ly_form_9 .form_bg {
    display: none !important; /* 隐藏原本那张模糊的大图，保持干净 */
}

.ly_form_9 .form_box {
    background: #fff;
    max-width: 1000px !important;
    margin: 0 auto;
    padding: 0 !important;
}

.ly_form_9 .form_inquiry_box {
    padding: 40px !important;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fafafa;
}

/* 表单标题 */
.ly_form_9 .form_title {
    color: #0C8B56 !important;
    font-weight: bold;
    text-align: center;
}

/* 输入框优化 */
.ly_form_9 input.input_txt, 
.ly_form_9 textarea.textarea_txt {
    border: 1px solid #ddd !important;
    background: #fff !important;
    border-radius: 6px !important;
    padding: 12px !important;
    transition: border 0.3s;
}

.ly_form_9 input.input_txt:focus, 
.ly_form_9 textarea.textarea_txt:focus {
    border-color: #0C8B56 !important;
    box-shadow: 0 0 5px rgba(12, 139, 86, 0.2);
}

/* 提交按钮优化 */
.ly_form_9 .inquiry_submit {
    background-color: #0C8B56 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 12px 40px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.ly_form_9 .inquiry_submit:hover {
    background-color: #0a7a4b !important;
    box-shadow: 0 5px 15px rgba(12, 139, 86, 0.4);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .wh-contact-card {
        padding: 30px 20px;
    }
    
    .wh-map-section {
        height: 300px;
    }
}
