/* === CHATBOT WIDGET STYLES === */
.platform-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    animation: chatbotPulse 2s ease-in-out infinite;
}

.chatbot-toggle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

@keyframes chatbotPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(102, 126, 234, 0.6); }
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatbotSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.chatbot-container.active {
    display: flex;
}

@keyframes chatbotSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    font-size: 1.2rem;
    font-weight: 700;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 15px;
    animation: messageSlideIn 0.3s ease;
}

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

.bot-message .message-content {
    background: white;
    color: #2c3e50;
    padding: 12px 16px;
    border-radius: 12px 12px 12px 4px;
    max-width: 85%;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px 12px 4px 12px;
    max-width: 85%;
    display: inline-block;
    float: right;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.chatbot-quick-options {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.quick-btn {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: translateY(-2px);
}

.chatbot-input-area {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chatbot-input-area input {
    flex: 1;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chatbot-input-area input:focus {
    border-color: #667eea;
}

.chatbot-input-area button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-input-area button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
    }
    
    .platform-chatbot {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .chatbot-toggle {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .chatbot-container {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 80px;
        max-height: calc(100vh - 120px);
    }
}

/* === CONTACT SOCIAL MEDIA STYLES === */
.footer-social-section {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.footer-social-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-social-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.social-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn-youtube {
    background: #FF0000;
}

.social-btn-facebook {
    background: #1877F2;
}

.social-btn-tiktok {
    background: #000000;
}

.social-btn-whatsapp {
    background: #25D366;
}

.social-btn-viber {
    background: #665CAC;
}

.footer-contact-direct {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
}

.footer-contact-direct a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
}

.footer-contact-direct a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .social-buttons-grid {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
