/*==================================================
Zhitu Network - Consult
==================================================*/

.consult {
    position: relative;
    background: linear-gradient(180deg, #07142b 0%, #081a32 100%);
    overflow: hidden;
}

.consult::before {
    content: "";
    position: absolute;
    right: -140px;
    top: 40px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 119, 255, .14), transparent 72%);
    filter: blur(20px);
    pointer-events: none;
}

.consult .section-title span {
    color: #5eb8ff;
}

.consult .section-title h2 {
    color: #fff;
}

.consult .section-title p {
    color: #8fb4d4;
}

.consult-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.consult-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 32px 28px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .35s;
}

.consult-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 119, 255, .28), transparent 70%);
    opacity: 0;
    transition: .35s;
    pointer-events: none;
}

.consult-card:hover {
    transform: translateY(-8px);
    border-color: rgba(22, 119, 255, .45);
    box-shadow: 0 25px 65px rgba(0, 0, 0, .35);
}

.consult-card:hover::before {
    opacity: 1;
}

.consult-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(22, 119, 255, .24), rgba(107, 92, 255, .22));
    border: 1px solid rgba(255, 255, 255, .12);
    color: #8fc8ff;
    font-size: 26px;
}

.consult-name {
    font-size: 22px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.consult-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #9ec8e8;
    margin-bottom: 24px;
}

.consult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 110px;
    height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.consult-btn-kefu {
    background: linear-gradient(135deg, #1677ff, #3b5bff);
}

.consult-btn-kefu:hover {
    filter: brightness(1.08);
    box-shadow: 0 10px 28px rgba(22, 119, 255, .35);
}

.consult-btn-pay {
    background: linear-gradient(135deg, #ff4d4f, #e12b2d);
}

.consult-btn-pay:hover {
    filter: brightness(1.08);
    box-shadow: 0 10px 28px rgba(255, 77, 79, .35);
}

@media (max-width: 1200px) {
    .consult-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .consult-card {
        padding: 26px 22px;
    }

    .consult-name {
        font-size: 20px;
    }
}
