/* 联系我们页样式 - Contact Styles */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* 联系方式卡片 */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    flex-shrink: 0;
}

.contact-card .info h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.contact-card .info p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.contact-card .info a {
    color: var(--primary-color);
    font-weight: bold;
}

.contact-card .info .highlight {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

/* 在线表单 */
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form label span {
    color: var(--primary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* 地图区域 */
.map-section {
    margin-top: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-section h2 {
    font-size: 24px;
    color: var(--text-main);
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.map-container {
    height: 350px;
    background: linear-gradient(135deg, #e8e8e8, #d8d8d8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container p {
    color: var(--text-gray);
    font-size: 16px;
}

/* 响应式 */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .contact-card {
        flex: 0 0 100%;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}
