.azy-contact-card {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 99999;
    width: 230px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0,0,0,0.08);
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    overflow: hidden;
    animation: azyCardIn 0.5s ease;
}

@keyframes azyCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.azy-contact-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #1672be 0%, #0256ac 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.azy-contact-head::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.azy-contact-icon {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.azy-contact-title {
    flex: 1;
    position: relative;
    z-index: 1;
}

.azy-contact-title strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.azy-contact-title span {
    display: block;
    font-size: 11px;
    opacity: 0.85;
    margin-top: 2px;
}

.azy-status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: azyPulse 2s infinite;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@keyframes azyPulse {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.azy-tel-block {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px 14px 14px;
    background: #f8fbff;
    border-bottom: 1px solid #eef4fa;
    transition: background 0.2s;
}

.azy-tel-block:hover {
    background: #edf5ff;
}

.azy-tel-num {
    font-size: 20px;
    font-weight: 700;
    color: #1672be;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: Arial, "Helvetica Neue", sans-serif;
}

.azy-tel-meta {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.azy-divider {
    display: flex;
    align-items: center;
    padding: 10px 18px 0;
    font-size: 13px;
    color: #1672be;
    font-weight: 700;
    gap: 6px;
}

.azy-divider::before,
.azy-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d0e3f5;
}

.azy-divider-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 4px;
}

.azy-divider span {
    padding: 0 8px;
    white-space: nowrap;
}

.azy-leave-box {
    padding: 10px 16px 16px;
    display: flex;
    gap: 8px;
}

.azy-leave-input {
    flex: 1;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.azy-leave-input:focus {
    border-color: #1672be;
}

.azy-leave-btn {
    height: 36px;
    padding: 0 14px;
    background: linear-gradient(135deg, #1672be 0%, #0256ac 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
    font-weight: 600;
}

.azy-leave-btn:hover {
    opacity: 0.9;
}

.azy-leave-btn:active {
    transform: scale(0.96);
}

/* ---------------- ÐÞ¸´°æ Toast ÌáÊ¾ÑùÊ½ ---------------- */
.azy-toast {
    position: fixed;
    left: 50%;
    bottom: 20%;
    transform: translate(-50%, 20px) scale(0.92);
    background: #ffffff;
    color: #333;
    padding: 14px 22px 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    z-index: 9999999 !important;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0,0,0,0.08);
    border-left: 4px solid #52c41a;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    min-width: 220px;
    max-width: 86vw;
    line-height: 1.4;
}
.azy-toast::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #52c41a;
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
}
.azy-toast.show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}
.azy-toast-text {
    font-weight: 600;
    color: #1f1f1f;
}
@media (max-width: 768px) {
    .azy-toast {
        bottom: 18%;
        padding: 12px 18px 12px 14px;
        font-size: 14px;
        min-width: 200px;
    }
    .azy-toast::before {
        width: 20px;
        height: 20px;
        background-size: 13px;
    }
}