/* Contact Badge Component */
.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.7);
    }
}

.badge-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

