/* Contact Us Widget Styles */
.contact-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.contact-widget-collapsed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px 10px 10px 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    animation: contactPulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.contact-widget-collapsed:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    animation: none;
}

.contact-widget-collapsed i {
    font-size: 18px;
    animation: contactBounce 1.5s infinite;
}

.contact-widget-expanded {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 25px;
    width: 280px;
    animation: expandWidget 0.4s ease-out;
}

.contact-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.contact-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-widget-close {
    background: #f8f9fa;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.contact-widget-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
    color: #333;
}

.contact-options {
    display: grid;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fafafa;
}

.contact-option:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.contact-option i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-option-text {
    font-weight: 500;
    font-size: 14px;
}

.contact-option-label {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Social Media Specific Colors */
.contact-option.facebook:hover {
    background: #1877f2;
}

.contact-option.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-option.linkedin:hover {
    background: #0077b5;
}

.contact-option.whatsapp:hover {
    background: #25d366;
}

.contact-option.email:hover {
    background: #ea4335;
}

.contact-option.phone:hover {
    background: #34a853;
}

/* Animations */
@keyframes contactPulse {
    0% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6), 0 0 20px rgba(102, 126, 234, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }
}

@keyframes contactBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

@keyframes expandWidget {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-widget {
        right: 15px;
    }
    
    .contact-widget-expanded {
        width: 260px;
        padding: 20px;
    }
    
    .contact-widget-collapsed {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-widget {
        right: 10px;
    }
    
    .contact-widget-expanded {
        width: 240px;
        padding: 18px;
    }
    
    .contact-widget-collapsed {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .contact-widget-collapsed i {
        font-size: 16px;
    }
}
