/* Georgian Transfer - Premium Contact Box Styles (Site Theme) */

.contact-box-premium {
    position: relative;
    overflow: hidden;
}

.contact-box-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,184,0,0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* WhatsApp Button Hover Effect */
.btn-whatsapp-small {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
    background: #20ba5a !important;
}

.btn-whatsapp-small:active {
    transform: translateY(0);
}

.btn-whatsapp-small svg {
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-8deg); }
    20%, 40%, 60%, 80% { transform: rotate(8deg); }
}

.btn-whatsapp-small:hover svg {
    animation: none;
    transform: scale(1.15) rotate(0deg);
}

/* Contact Item Hover */
.contact-item {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: #222 !important;
    border-color: #ffb800 !important;
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.2);
}

/* Icon Animation */
.contact-item i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-box-premium {
        padding: 30px 20px !important;
    }
    
    .contact-icon img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .btn-whatsapp-small {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .contact-item {
        padding: 20px !important;
        margin-bottom: 15px;
    }
}

/* Link Hover Effects */
.contact-item a {
    transition: all 0.3s ease;
    position: relative;
}

.contact-item a:hover {
    color: #ffb800 !important;
    text-decoration: none;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffb800;
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

/* Badge Animation */
.badge {
    animation: fadeInDown 1s ease-out;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

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

/* Badge Pulse */
.badge {
    animation: fadeInDown 1s ease-out, badgePulse 2s ease-in-out infinite 1s;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 184, 0, 0.6);
    }
}
