/* Public/css/contact.css */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* En-tête */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.contact-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
}

.contact-header p {
    color: #8e96b0;
    font-size: 14px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cartes d'information */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: #1a1f2e;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(46, 204, 113, 0.15);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #2ecc71;
}

.info-card h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 13px;
    color: #8e96b0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #2ecc71;
    border-radius: 30px;
    padding: 8px 16px;
    color: #2ecc71;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.info-btn:hover {
    background: #2ecc71;
    color: white;
}

.email-btn, .telegram-btn {
    display: inline-flex;
    background: transparent;
    border: 1px solid #2ecc71;
    border-radius: 30px;
    padding: 8px 16px;
    color: #2ecc71;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.email-btn:hover, .telegram-btn:hover {
    background: #2ecc71;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: #1a1f2e;
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 30px;
}

.faq-section h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section h2 i {
    color: #2ecc71;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #0f1322;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: white;
}

.faq-question:hover {
    background: rgba(46, 204, 113, 0.1);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 18px;
    color: #8e96b0;
    font-size: 13px;
    line-height: 1.5;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 18px 15px 18px;
    border-top-color: rgba(46, 204, 113, 0.2);
}

/* Bouton flottant chat */
.chat-float-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.chat-float-btn:hover {
    transform: scale(1.1);
}

.chat-float-btn i {
    font-size: 28px;
    color: white;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animation du bouton flottant */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(46, 204, 113, 0);
    }
}

.chat-float-btn {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-header h1 {
        font-size: 24px;
    }
    
    .faq-section h2 {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 12px 15px;
    }
    
    .chat-float-btn {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .chat-float-btn i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }
    
    .info-card {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 12px;
    }
}

/* Public/css/contact.css - Ajouter à la fin */

/* Cacher le widget Tawk par défaut */
iframe[src*="tawk.to"],
iframe[src*="embed.tawk"],
div[id^="tawk"],
div[class*="tawk"],
#tawk-widget,
div[style*="tawk"],
.gqr633mn1u9c1780243568702 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Style du message de bienvenue */
.welcome-chat {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #1a1f2e;
    border-radius: 16px;
    padding: 12px 15px;
    width: 260px;
    display: flex;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(46,204,113,0.3);
    z-index: 1000;
    animation: fadeInUp 0.3s ease;
    cursor: pointer;
    transition: all 0.3s;
}

.welcome-chat:hover {
    transform: translateY(-2px);
    border-color: #2ecc71;
}

.welcome-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.welcome-text {
    flex: 1;
}

.welcome-text strong {
    display: block;
    color: #2ecc71;
    font-size: 12px;
}

.welcome-text p {
    color: white;
    font-size: 11px;
    margin: 3px 0;
}

.welcome-text small {
    color: #8e96b0;
    font-size: 9px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}