/* ====================================================================
   CHATBOT DZ - HERO & ANIMATIONS
   FICHIER : css/hero.css
   VERSION : FINAL.1
   DESCRIPTION : Gère la section Hero, le téléphone 3D et les logos.
====================================================================
*/

/* =================================================================
   1. HERO SECTION CONTAINER
================================================================= */
.hero {
    background: linear-gradient(180deg, var(--primary-50) 0%, #ffffff 100%);
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    overflow: visible; /* Essentiel pour laisser le téléphone "sortir" du cadre */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 80px; /* Espace généreux entre le texte et le téléphone */
}

/* =================================================================
   2. HERO CONTENT (GAUCHE)
================================================================= */
.hero-content {
    flex: 1;
    z-index: 2; /* S'assure que le texte passe au-dessus du fond */
}

.hero h1 {
    font-size: 4rem; /* 64px sur Desktop */
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* --- Preuve Sociale (Avatars + Texte) --- */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.hero-avatars {
    display: flex;
    /* Les avatars se chevauchent légèrement */
}

.avatar-small {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    background-color: var(--slate-200);
    margin-left: -14px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
}

.avatar-small:first-child {
    margin-left: 0;
}

.hero-social-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hero-social-text strong {
    color: var(--text-main);
    font-weight: 700;
    display: block; /* Force le retour à la ligne pour le chiffre */
}

/* =================================================================
   3. HERO PHONE 3D (DROITE) - LE COEUR DE L'ANIMATION
================================================================= */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 2000px; /* Donne la profondeur 3D */
}

/* Cadre principal du téléphone */
.phone-mockup {
    width: 360px;
    height: 720px;
    background: #ffffff;
    border: 14px solid var(--slate-900); /* Bordure style iPhone */
    border-radius: 55px;
    position: relative;
    z-index: 10;
    
    /* Ombres complexes pour réalisme */
    box-shadow: 
        var(--shadow-blue-glow), /* Lueur bleue derrière */
        0 50px 100px -20px rgba(50, 50, 93, 0.25), 
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
        
    /* Rotation 3D Initiale */
    transform: rotateY(-12deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    overflow: hidden;
}

/* Interaction au survol : Le téléphone se redresse et flotte */
.phone-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-15px);
    box-shadow: 
        0 40px 80px -12px rgba(0, 106, 255, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

/* Encoche (Notch) */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 32px;
    background: var(--slate-900);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 20;
}

/* Écran du téléphone */
.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--slate-50);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* =================================================================
   4. INTERFACE CHAT (DANS LE TÉLÉPHONE)
================================================================= */

/* En-tête de l'application (simulée) */
.chat-app-header {
    padding: 50px 20px 15px 20px; /* Padding haut pour compenser l'encoche */
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

/* Avatar du Bot (CORRIGÉ : Fond transparent) */
.chat-avatar-circle {
    width: 42px;
    height: 42px;
    background: transparent !important; /* Plus de fond coloré */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none !important; /* Plus d'ombre noire */
}

/* L'image du logo dans le rond */
.chat-bot-avatar {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garde le logo entier */
    display: block;
}

.chat-status h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-main);
    font-weight: 700;
}

.chat-status span {
    font-size: 0.8rem;
    color: var(--success-main);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-status span::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--success-main);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Zone de messages (Scrollable) */
.chat-area {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    /* Masquer la scrollbar tout en gardant le scroll */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.chat-area::-webkit-scrollbar {
    display: none;
}

/* Bulles de conversation */
.chat-bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    
    /* CORRECTION : Opacité 1 par défaut pour éviter le bug d'affichage */
    opacity: 1;
    transform: translateY(0) scale(1);
    
    /* L'animation s'exécute si possible, mais ne bloque pas la visibilité */
    animation: bubblePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: #ffffff;
    color: var(--text-main);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-light);
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--primary-500);
    color: #ffffff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 106, 255, 0.2);
}

/* Indicateur "En train d'écrire..." */
.typing-indicator {
    padding: 12px 16px;
    background: #fff;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    display: flex;
    gap: 4px;
    border: 1px solid var(--border-light);
    width: fit-content;
    margin-bottom: 10px;
    
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--slate-400);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

/* =================================================================
   5. LOGOS SECTION (PARTENAIRES)
================================================================= */
.logos-section {
    padding-top: 40px;
    padding-bottom: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden; /* Pour le slider infini */
}

/* Conteneur pour le défilement */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Pas de wrap pour le défilement horizontal */
    flex-wrap: nowrap; 
    gap: 60px;
    width: max-content; /* Largeur dynamique */
    
    /* CORRECTION : Couleurs actives, pas de gris */
    opacity: 1;
    filter: none;
    
    /* Animation de défilement infini */
    animation: scrollLogos 25s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    color: var(--text-main);
}

.logo-item i {
    font-size: 1.8rem;
}

/* Couleurs des Icônes Logos (Toujours actives) */
.logo-item i.fa-whatsapp { color: #25D366; }
.logo-item i.fa-facebook-messenger { color: #006AFF; }
.logo-item i.fa-instagram { color: #E4405F; }
.logo-item i.fa-tiktok { color: #000000; }
.logo-item i.fa-shopify { color: #95BF47; }
.logo-item i.fa-wordpress { color: #21759B; }
.logo-item i.fa-globe { color: #007bff; }

/* =================================================================
   6. ANIMATIONS KEYFRAMES
================================================================= */
@keyframes bubblePop {
    0% { opacity: 0; transform: translateY(20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes typingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* =================================================================
   AJOUT : BARRE D'ÉTAT TÉLÉPHONE (REALISME)
================================================================= */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px 5px 20px; /* Padding haut pour éviter l'encoche */
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    background: #ffffff;
    position: relative;
    z-index: 5;
}

.phone-status-bar .time {
    margin-left: 5px;
}

.phone-status-bar .status-icons {
    display: flex;
    gap: 6px;
    font-size: 0.7rem;
}