/* ========== 联系我们页面专属样式 ========== */
/* 注意：过渡模块 .product-detail-banner 已在 common.css 中定义，此处不再重复 */

.contact-page {
    padding: 50px 0;
}
.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* 左侧联系方式区块 */
.contact-info-left {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.contact-info-left h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1f2a3e;
}
.contact-info-left > p {
    color: #5a6e8a;
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.info-icon {
    width: 48px;
    height: 48px;
    background: #eef2f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon svg {
    width: 24px;
    height: 24px;
    fill: #1a5aaa;
}
.info-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2a3e;
}
.info-text p {
    color: #5a6e8a;
    font-size: 14px;
    line-height: 1.5;
}
.social-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef2f8;
}
.social-contact h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1f2a3e;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f4f9;
    border-radius: 50%;
    transition: all 0.2s;
    text-decoration: none;
}
.social-icons a:hover {
    background: #1a5aaa;
    transform: translateY(-2px);
}
.social-icons svg {
    width: 20px;
    height: 20px;
    fill: #2c3e50;
}
.social-icons a:hover svg {
    fill: #fff;
}

/* 右侧表单区块 */
.contact-form-right {
    flex: 1.2;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.contact-form-right h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #1f2a3e;
}
.form-desc {
    color: #5a6e8a;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5aaa;
    box-shadow: 0 0 0 3px rgba(26,90,170,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group {
    flex: 1;
}
.btn-submit {
    background: #1a5aaa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-submit:hover {
    background: #0e4a8a;
    transform: translateY(-2px);
}

/* 地图区域 */
.map-section {
    margin-top: 50px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.map-section iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}