/* ===================================================================
   CONTACT PAGE ENHANCEMENTS
   Animated user icon + trust badges
   =================================================================== */

/* ===================================================================
   ANIMATED USER ICON - PULSE + GLOW
   =================================================================== */

.user-icon-animated {
    animation: userIconPulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes userIconPulse {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(59, 130, 246, 0.7),
            0 8px 32px rgba(59, 130, 246, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 0 20px rgba(59, 130, 246, 0),
            0 12px 40px rgba(59, 130, 246, 0.3);
        transform: scale(1.02);
    }
}

.user-icon-animated:hover {
    animation: userIconHover 1.5s ease-in-out infinite;
}

@keyframes userIconHover {
    0%, 100% {
        box-shadow:
            0 0 0 0 rgba(59, 130, 246, 0.8),
            0 12px 48px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow:
            0 0 0 25px rgba(59, 130, 246, 0),
            0 16px 56px rgba(59, 130, 246, 0.5);
    }
}

.user-icon-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: innerGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes innerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.user-icon-animated img {
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===================================================================
   CONTACT TRUST BADGES
   =================================================================== */

.contact-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding: 24px;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    flex-wrap: wrap;
}

.contact-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
    cursor: default;
    animation: fadeInUp 0.6s ease-out backwards;
}

.contact-trust-badge:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.contact-trust-badge:nth-child(1) { animation-delay: 0.1s; }
.contact-trust-badge:nth-child(2) { animation-delay: 0.2s; }
.contact-trust-badge:nth-child(3) { animation-delay: 0.3s; }
.contact-trust-badge:nth-child(4) { animation-delay: 0.4s; }

.contact-trust-badge-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
}

.contact-trust-badge:nth-child(1) .contact-trust-badge-icon { color: #10b981; }
.contact-trust-badge:nth-child(2) .contact-trust-badge-icon { color: #60a5fa; }
.contact-trust-badge:nth-child(3) .contact-trust-badge-icon { color: #3b82f6; }
.contact-trust-badge:nth-child(4) .contact-trust-badge-icon { color: #60a5fa; }

.contact-trust-badge-text {
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 768px) {
    .contact-trust-badges {
        gap: 16px;
        padding: 20px 16px;
    }

    .contact-trust-badge {
        padding: 10px 16px;
        gap: 8px;
    }

    .contact-trust-badge-icon {
        font-size: 20px;
    }

    .contact-trust-badge-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .contact-trust-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user-icon-animated,
    .user-icon-animated img,
    .user-icon-animated::before {
        animation: none !important;
    }
}
