/* Contact Section Styles */
.contact-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-hover:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-info {
    font-size: 0.9rem;
    word-break: break-word;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
}

.contact-card:hover .contact-info {
    color: var(--accent-color) !important;
}

/* WhatsApp specific hover */
.contact-card:hover .fa-whatsapp {
    color: #25D366 !important;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

/* Instagram specific hover */
.contact-card:hover .fa-instagram {
    color: #E4405F !important;
    text-shadow: 0 0 10px rgba(228, 64, 95, 0.5);
}

/* Email specific hover */
.contact-card:hover .fa-envelope {
    color: #FFA500 !important;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact-icon {
    animation: pulse 2s infinite;
}

.contact-card:hover .contact-icon {
    animation: none;
}

/* Click animation */
.contact-card:active {
    transform: scale(0.95);
}

/* Toast customization */
.toast {
    border: 1px solid var(--accent-color);
}