/* ========== 联系我们页面样式 ========== */

/* 联系信息卡片 */
.contact-info-section {
    background: white;
}

.contact-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card .icon-box i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* 联系表单 */
.contact-form-section {
    background: var(--light-color);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 40px;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* 公司信息 */
.company-info-wrapper {
    background: var(--gradient-dark);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    height: 100%;
}

.company-info-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-item p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.qr-code {
    margin-top: 2rem;
    text-align: center;
}

.qr-code img {
    width: 120px;
    border-radius: 10px;
    background: white;
    padding: 10px;
}

.qr-code p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 地图区域 */
.map-section {
    background: white;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 400px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* 响应式 */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .company-info-wrapper {
        padding: 2rem;
    }
    
    .company-info-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 2rem;
    }
    
    .contact-form-wrapper h3,
    .company-info-wrapper h3 {
        font-size: 1.5rem;
    }
}
