﻿/* ================================== */
/* --- STILURI SUPORT (PASUL 6) --- */
/* ================================== */

.support-group {
    padding: 0px 0;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    background-color: #0a0a0a;
    padding-top: 3rem; /* Am adăugat acest spațiu aici */
}

.support-title {
    font-family: 'Teko', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 5px;
    background-color: #0a0a0a !important;
}

    .support-title svg {
        width: 36px;
        height: 36px;
        fill: #C10206;
    }

.support-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.support-card {
    background-color: #0a0a0a;
    border-radius: 12px;
    padding: 20px;
    max-width: 420px;
    margin: 0 auto;
}

.support-header {
    text-align: center;
    margin-bottom: 15px;
}

.support-name {
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 2px;
}

.support-description {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    max-width: 300px;
    margin: -10px auto 20px auto;
}

/* Fereastra de chat */
.support-chat-window {
    background-color: #0a0a0a;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex-grow: 1;
    padding-right: 10px;
}

/* Stil pentru bulele de chat, copiat din exemplul tău */
.chat-bubble-journey {
    max-width: 85%;
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 14px;
    opacity: 0;
    transform: translateY(15px);
    animation: slide-in 0.5s forwards;
}

    .chat-bubble-journey.user {
        background-color: #f5f1f1;
        color: #000;
        margin-left: auto;
        border-bottom-right-radius: 4px;
        font-weight: 500;
    }

    .chat-bubble-journey.expert {
        background-color: #1a1a1a;
        color: #fff;
        margin-right: auto;
        border-bottom-left-radius: 4px;
    }

    .chat-bubble-journey .typing-indicator {
        display: flex;
        align-items: center;
        padding: 5px 0;
    }

.typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #666;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bounce 1.2s infinite;
}

    .typing-indicator span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-indicator span:nth-child(3) {
        animation-delay: 0.4s;
    }

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

@keyframes slide-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-footer {
    margin-top: 15px;
    text-align: center;
}

.whatsapp-cta-button {
    display: flex; /* Schimbat din inline-flex */
    justify-content: center; /* Centrează iconița și textul */
    width: 100%; /* Forțează butonul să ocupe toată lățimea */
    align-items: center;
    gap: 10px;
    background-color: #c10206;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px #890104;
}

    .whatsapp-cta-button:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 20px #890104;
    }

    .whatsapp-cta-button svg {
        width: 24px;
        height: 24px;
    }
