/**
 * 联系我们区域样式
 * 包含：联系卡片、图标、按钮、提示信息、响应式布局
 */

/* 联系容器 */
.contact-container {
    max-width: 90%;
    margin: 0 auto;
}

/* 联系卡片网格 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

/* 联系卡片 */
.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 联系图标 */
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 28px;
}

/* 联系标题 */
.contact-title {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

/* 联系值 */
.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    word-break: break-all;
}

/* 联系操作按钮 */
.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 70%;
}

.contact-action i {
    margin-right: 8px;
}

.contact-action:hover {
    opacity: 0.9;
    box-shadow: 0 4px 8px rgba(63, 207, 187, 0.3);
}

.contact-action.disabled {
    background: #f1f1f1;
    color: #999;
    cursor: not-allowed;
}

.contact-action.disabled:hover {
    box-shadow: none;
    opacity: 1;
}

/* 联系提示 */
.contact-notice {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.notice-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.notice-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 15px;
}

.notice-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
    .contact-container {
        max-width: 100%;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

