.chatbot-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chatbot-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 9998;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.chatbot-button.hidden {
    transform: scale(0);
    opacity: 0;
}

.chatbot-button i {
    font-size: 28px;
    color: #fff;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.chatbot-window {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.2s;
}

.chatbot-close:hover {
    opacity: 0.7;
}

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

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.chatbot-message {
    display: flex;
    margin-bottom: 16px;
    animation: messageSlide 0.3s ease;
}

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

.bot-message {
    align-items: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.message-avatar i {
    color: white;
    font-size: 18px;
}

.message-content {
    max-width: 70%;
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.message-content p {
    margin: 0 0 8px 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.message-content li {
    margin-bottom: 4px;
}

.chatbot-quick-replies {
    padding: 10px 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-reply {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.quick-reply:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.chatbot-input-container {
    display: flex;
    padding: 20px;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 20px 20px;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: #1a1a1a;
}

.chatbot-send {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.1);
}

.chatbot-send i {
    color: white;
    font-size: 18px;
}

.human-contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

.contact-header {
    text-align: center;
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    background: white;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.contact-option strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-option p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.default-response-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid #007bff;
}

.response-suggestions ul {
    margin: 10px 0;
    padding-left: 20px;
}

.response-suggestions li {
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-fallback {
    background: white;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.package-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 3px solid #007bff;
}

.package-section h6 {
    margin-bottom: 8px;
    color: #2d2d2d;
    font-size: 14px;
}

.package-section ul {
    margin-bottom: 0;
    font-size: 13px;
}

.team-members {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.team-members p {
    margin-bottom: 5px;
    font-size: 14px;
}

.concert-info {
    background: linear-gradient(135deg, #25d366 0%, #20c157 100%);
    color: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    text-align: center;
}

.concert-info p {
    margin-bottom: 3px;
    font-size: 14px;
}

.concert-info strong {
    font-weight: 600;
}

/* Styles pour le système de tarification */
.pricing-response {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #28a745;
}

.price-range {
    text-align: center;
    font-size: 18px;
    color: #28a745;
    margin: 10px 0;
}

.pricing-recommendations {
    background: #fff3cd;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #ffc107;
}

.pricing-recommendations h6 {
    color: #856404;
    margin-bottom: 8px;
    font-size: 14px;
}

.pricing-recommendations ul {
    margin-bottom: 0;
    font-size: 13px;
}

.pricing-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-quote-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

.quick-quote-form h6 {
    color: #495057;
    margin-bottom: 15px;
    text-align: center;
}

.quick-quote-form .form-group {
    margin-bottom: 12px;
}

.quick-quote-form label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    display: block;
}

.quick-quote-form .form-control {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ced4da;
}

.service-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #495057;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 8px;
}

.typing-indicator .typing-dots {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6c757d;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Nouveaux styles pour les réponses améliorées */
.service-spotlight, .wellness-response, .photo-response, .corporate-response,
.services-overview, .equipment-response, .zone-response, .availability-response,
.drone-response, .team-response {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
}

.package-section, .benefits-section, .equipment-category, .region-coverage,
.availability-process, .seasonal-info, .drone-capabilities, .drone-applications,
.team-expertise, .services-ecosystem {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #28a745;
}

.pricing-info, .pricing-benefits, .special-offers, .quality-guarantee,
.legal-compliance, .urgent-booking {
    background: #fff3cd;
    border-radius: 8px;
    padding: 10px;
    margin: 8px 0;
    border-left: 3px solid #ffc107;
}

.price-grid, .services-grid, .equipment-categories, .coverage-map,
.seasons-grid, .applications-grid, .ecosystem-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 10px 0;
}

.price-card, .service-item, .equipment-category, .region-coverage,
.season-period, .application-item, .ecosystem-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #dee2e6;
    text-align: center;
}

.price-main {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin: 8px 0;
}

.price-includes, .process-steps {
    list-style: none;
    padding-left: 0;
    margin: 8px 0;
}

.process-steps {
    list-style: decimal;
    padding-left: 20px;
}

.price-includes li, .process-steps li {
    padding: 3px 0;
    font-size: 13px;
}

.benefits-row, .venues-grid, .values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.benefits-row span, .venues-grid span, .values-grid span {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
}

.offer-highlight, .guarantee-badge, .compliance-badge, .urgent-notice {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.coverage-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.pricing-option {
    background: white;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.travel-benefits, .popular-venues, .drone-pricing, .certifications {
    margin: 12px 0;
}

.travel-benefits ul, .certifications ul {
    margin: 8px 0;
    font-size: 13px;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: 100%;
        height: 100%;
        right: 0;
        bottom: 0;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .chatbot-header {
        border-radius: 0;
    }
    
    .chatbot-input-container {
        border-radius: 0;
    }
    
    .chatbot-button {
        bottom: 20px;
        right: 20px;
    }
    
    .human-contact-card {
        padding: 15px;
    }
    
    .contact-option {
        padding: 12px;
    }
    
    .price-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-row, .venues-grid, .values-grid {
        flex-direction: column;
    }
    
    .pricing-option {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Styles pour les nouveaux types de réponses */
.testimonials-response, .gratitude-response, .farewell-response, 
.greeting-response, .default-response {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
}

.testimonials-highlight, .next-steps, .final-reminder, .welcome-intro, 
.suggestions, .human-contact {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #28a745;
}

.testimonial-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin: 10px 0;
}

.stat-item {
    flex: 1;
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: #28a745;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    border-left: 3px solid #17a2b8;
}

.testimonial-card p {
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-card small {
    color: #666;
}

.help-topics {
    margin: 10px 0;
    font-size: 14px;
}

.help-topics li {
    margin-bottom: 5px;
}

.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.suggestion-buttons .quick-reply {
    font-size: 12px;
    padding: 6px 12px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.response-time {
    text-align: center;
    margin-top: 15px;
    padding: 8px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
}

.welcome-cta {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 8px;
}

@media (max-width: 480px) {
    .testimonial-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .suggestion-buttons {
        flex-direction: column;
    }
    
    .suggestion-buttons .quick-reply {
        width: 100%;
        text-align: center;
    }
    
    .contact-methods {
        flex-direction: column;
    }
}

/* Styles pour les nouvelles fonctionnalités avancées */
.budget-inquiry, .date-inquiry, .personalized-quote,
.special-offers-response, .quote-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
}

.budget-options, .date-options, .event-types, .additional-services, .guest-ranges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 10px 0;
}

.budget-option, .date-option, .calc-option {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.budget-option:hover, .date-option:hover, .calc-option:hover {
    border-color: #007bff;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.budget-option strong, .calc-option strong {
    display: block;
    margin-bottom: 5px;
    color: #007bff;
    font-size: 14px;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.detail-item i {
    width: 20px;
    text-align: center;
}

.package-premium, .package-standard, .package-corporate, .package-celebration {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 8px 0;
    border-left: 4px solid #28a745;
}

.package-premium {
    border-left-color: #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.seasonal-offer {
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    background: white;
}

.seasonal-offer.winter {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    border-left: 4px solid #2196f3;
}

.seasonal-offer.spring {
    background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
    border-left: 4px solid #4caf50;
}

.seasonal-offer.autumn {
    background: linear-gradient(135deg, #fff3e0 0%, #fef7f0 100%);
    border-left: 4px solid #ff9800;
}

.offer-validity {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 8px;
    margin-top: 10px;
    text-align: center;
    border: 1px dashed #ccc;
}

.permanent-offers {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #17a2b8;
}

.offer-item {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.offer-item:last-child {
    border-bottom: none;
}

.calc-step {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.calc-step.active {
    border-color: #007bff;
    background: #f8f9ff;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin: 5px 0;
    cursor: pointer;
    font-size: 13px;
}

.service-checkbox:hover {
    background: #f8f9ff;
    border-color: #007bff;
}

.service-checkbox input {
    margin: 0;
}

.calc-result {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.price-breakdown {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

.next-steps-quote ol {
    text-align: left;
    margin: 10px 0;
    font-size: 13px;
}

.next-steps-quote li {
    margin-bottom: 5px;
    padding: 2px 0;
}

@media (max-width: 480px) {
    .budget-options, .event-types, .guest-ranges {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .event-details {
        gap: 5px;
    }
    
    .calc-step {
        padding: 10px;
        margin: 10px 0;
    }
}

/* Styles pour les nouvelles réponses avancées */
.music-response, .logistics-response, .insurance-response, .chatbot-registration {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #007bff;
}

.genres-grid, .checklist-sections, .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 10px 0;
}

.genre-item, .checklist-section, .cert-item {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.timeline-items {
    margin: 10px 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #007bff;
}

.timeline-item .time {
    background: #007bff;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-item .task {
    flex: 1;
}

.timeline-item .task strong {
    display: block;
    margin-bottom: 5px;
    color: #2d2d2d;
}

.timeline-item .task p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.coverage-items {
    margin: 15px 0;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.coverage-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-icon i {
    font-size: 20px;
}

.coverage-content {
    flex: 1;
}

.coverage-content strong {
    display: block;
    margin-bottom: 8px;
    color: #2d2d2d;
    font-size: 15px;
}

.coverage-content p {
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}

.coverage-content small {
    color: #999;
    font-style: italic;
}

.guarantee-list {
    margin: 15px 0;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    margin: 8px 0;
    border: 1px solid #e9ecef;
    font-size: 13px;
}

.playlist-process ol, .music-tech ul, .logistics-checklist ul {
    margin: 10px 0;
    font-size: 13px;
}

.playlist-process li, .music-tech li, .logistics-checklist li {
    margin-bottom: 8px;
    padding: 2px 0;
}

.checklist-section ul {
    text-align: left;
    margin: 8px 0;
    font-size: 12px;
}

.checklist-section li {
    margin-bottom: 4px;
}

.cert-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #007bff;
}

.cert-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

@media (max-width: 480px) {
    .genres-grid, .checklist-sections, .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .timeline-item .task {
        text-align: left;
    }
    
    .coverage-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .coverage-content {
        text-align: center;
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Styles pour le formulaire d'inscription chatbot */
.chatbot-registration {
    border-left-color: #28a745 !important;
}

.registration-benefits {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #28a745;
}

.registration-benefits ul {
    margin-bottom: 0;
    font-size: 13px;
}

.registration-benefits li {
    margin-bottom: 5px;
}

.registration-form {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

.registration-form .form-group {
    margin-bottom: 15px;
}

.registration-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d2d2d;
    font-size: 13px;
}

.registration-form .form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.registration-form .form-control:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.registration-form .form-text {
    color: #6c757d;
    font-size: 11px;
    margin-top: 3px;
    display: block;
}

.registration-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.registration-form .form-check-input {
    margin: 0;
    margin-top: 2px;
}

.registration-form .form-check-label {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1.4;
}

.registration-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.registration-actions .btn {
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
}

.existing-account {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.existing-account p {
    margin: 0;
    color: #6c757d;
}

.registration-success, .registration-error {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e9ecef;
}

.registration-success {
    border-left: 4px solid #28a745;
}

.registration-error {
    border-left: 4px solid #dc3545;
}

.success-header, .error-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.success-header h6, .error-header h6 {
    margin: 0;
    color: #2d2d2d;
}

.login-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    border-left: 3px solid #007bff;
}

.login-details p {
    margin-bottom: 5px;
    font-size: 13px;
}

.next-steps {
    margin: 15px 0;
}

.next-steps ol {
    font-size: 13px;
    margin-bottom: 0;
}

.next-steps li {
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.action-buttons .btn {
    font-size: 13px;
    padding: 8px 16px;
}

.email-confirmation {
    background: rgba(40, 167, 69, 0.1);
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

.email-warning {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 6px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
}

.error-message p {
    color: #dc3545;
    margin-bottom: 10px;
    font-size: 13px;
}

.login-redirect, .retry-actions {
    text-align: center;
    margin: 15px 0;
}

.contact-support {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.alternatives-suggestion {
    background: white;
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    border-left: 3px solid #17a2b8;
}

@media (max-width: 480px) {
    .registration-actions {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .registration-form .form-control {
        font-size: 16px; /* Éviter le zoom sur iOS */
    }
}

/* Styles pour le système de capture proactive ULTRA-AGRESSIF */
.proactive-capture, .capture-insist, .capture-alternative, 
.request-phone, .request-email, .prefilled-registration {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    border: 3px solid #ff4757;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
    animation: pulseCapture 2s infinite;
}

@keyframes pulseCapture {
    0% { box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3); }
    50% { box-shadow: 0 8px 35px rgba(255, 71, 87, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3); }
}

.capture-benefits, .phone-benefits, .email-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.benefit-item, .benefit {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-weight: 500;
}

.benefit-item i {
    margin-right: 10px;
    font-size: 16px;
}

.capture-question {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

.capture-urgency {
    text-align: center;
    margin-top: 20px;
}

.urgency-badge, .incentive-badge {
    background: linear-gradient(135deg, #ff4757 0%, #c44569 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    animation: bounce 1s infinite;
}

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

.missing-info {
    margin: 15px 0;
}

.info-needed {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 8px 0;
    border-left: 4px solid #fff;
}

.alternative-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.option-priority {
    background: rgba(40, 167, 69, 0.9);
    padding: 20px;
    border-radius: 15px;
    border: 3px solid #28a745;
    position: relative;
}

.priority-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 12px;
}

.option-secondary {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.prefilled-registration {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-color: #d35400;
}

.client-recap {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.info-confirmed div {
    padding: 5px 0;
    font-size: 14px;
}

.vip-offer {
    text-align: center;
    margin: 20px 0;
}

.vip-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.vip-benefits {
    margin: 20px 0;
}

.benefit-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 10px;
    margin: 8px 0;
    border-left: 4px solid #ffd700;
    font-weight: 600;
}

.cta-buttons {
    text-align: center;
    margin: 25px 0;
}

.pulsing {
    animation: pulse 1.5s infinite;
    font-size: 16px !important;
    padding: 15px 30px !important;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.subtle-capture {
    background: rgba(0, 123, 255, 0.1);
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.capture-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.price-capture {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    padding: 8px 15px;
    border-radius: 8px;
    margin: 10px 0;
    text-align: center;
}

.capture-cta {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
}

/* Animations supplémentaires pour attirer l'attention */
.urgent {
    position: relative;
    overflow: hidden;
}

.urgent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ================== STYLES ULTRA-AVANCÉS ================== */

/* Menu Ultra-Avancé */
.ultra-advanced-menu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: ultraMenuAppear 0.8s ease-out;
}

.ultra-advanced-menu .menu-header h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ultra-advanced-menu .menu-header p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}

.ultra-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.category-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-section h6 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ultra-option {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ultra-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.ultra-option .option-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.ultra-option .option-badge {
    background: #ff4757;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

/* Panel Synchronisation Google Calendar */
.calendar-sync-panel {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
}

.calendar-sync-panel .sync-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-sync-panel .sync-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.sync-status {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px 0;
    text-align: center;
    font-size: 13px;
}

.sync-status.connected {
    background: rgba(52, 168, 83, 0.3);
    border: 1px solid rgba(52, 168, 83, 0.5);
}

.sync-status.disconnected {
    background: rgba(244, 67, 54, 0.3);
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.calendar-events-list {
    max-height: 200px;
    overflow-y: auto;
    margin: 15px 0;
}

.calendar-event-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    margin: 8px 0;
    border-left: 4px solid #fff;
}

.calendar-event-item .event-title {
    font-weight: bold;
    font-size: 14px;
}

.calendar-event-item .event-details {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Manager de Playlists */
.playlist-manager {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.playlist-controls {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.playlist-controls .btn-playlist {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-controls .btn-playlist:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.playlist-songs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 250px;
    overflow-y: auto;
}

.song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.song-item:last-child {
    border-bottom: none;
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 500;
    font-size: 14px;
}

.song-artist {
    font-size: 12px;
    opacity: 0.7;
}

.song-actions {
    display: flex;
    gap: 5px;
}

.song-actions button {
    background: none;
    border: none;
    color: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.song-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Panel Recommandations IA */
.ai-recommendation-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-recommendation-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 10s linear infinite;
}

.ai-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.ai-header .ai-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.ai-recommendations {
    position: relative;
    z-index: 2;
}

.recommendation-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.recommendation-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.recommendation-description {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.4;
}

.confidence-score {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
}

/* Panel Réseaux Sociaux */
.social-media-panel {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(131, 58, 180, 0.3);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.social-platform {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-platform:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.social-platform .platform-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.social-platform .platform-name {
    font-size: 12px;
    font-weight: bold;
}

.content-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-preview .preview-header {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-preview .preview-text {
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.hashtags {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
}

.hashtag {
    color: #87ceeb;
    margin-right: 8px;
}

/* Panel Feedback */
.feedback-panel {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(86, 171, 47, 0.3);
}

.feedback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recent-feedback {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.feedback-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-item:last-child {
    border-bottom: none;
}

.feedback-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    margin-right: 10px;
}

.feedback-date {
    font-size: 11px;
    opacity: 0.7;
}

.feedback-comment {
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
}

/* Animations Ultra-Avancées */
@keyframes ultraMenuAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes dataFlow {
    0% { 
        transform: translateX(-100%) scale(0); 
        opacity: 0; 
    }
    50% { 
        transform: translateX(0) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(100%) scale(0); 
        opacity: 0; 
    }
}

/* Effets de Particules */
.particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Responsive Design pour Ultra-Avancé */
@media (max-width: 768px) {
    .ultra-categories {
        grid-template-columns: 1fr;
    }
    
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feedback-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .playlist-controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ultra-advanced-menu {
        padding: 15px;
    }
    
    .category-section {
        padding: 12px;
    }
    
    .ultra-option {
        padding: 8px 12px;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .feedback-stats {
        grid-template-columns: 1fr;
    }
}

/* Responsive pour mobile */
@media (max-width: 480px) {
    .proactive-capture, .capture-insist, .capture-alternative,
    .request-phone, .request-email, .prefilled-registration {
        padding: 15px;
        margin: 10px 0;
    }
    
    .alternative-options {
        gap: 10px;
    }
    
    .option-priority {
        padding: 15px;
    }
    
    .capture-hint {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Formulaire Express de Capture */
.quick-registration-form {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 2px solid #ff4757;
    border-radius: 15px;
    padding: 20px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
    animation: formSlideIn 0.8s ease-out;
}

.quick-registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.1), transparent);
    animation: shine 2s infinite;
}

.quick-registration-form .form-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.quick-registration-form .form-header h5 {
    color: #ff4757;
    font-weight: bold;
    margin-bottom: 10px;
}

.quick-registration-form .form-container {
    position: relative;
    z-index: 2;
}

.quick-reg-form .form-group {
    margin-bottom: 15px;
}

.quick-reg-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.quick-reg-form .form-control,
.quick-reg-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.quick-reg-form .form-control:focus,
.quick-reg-form .form-select:focus {
    border-color: #ff4757;
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.25);
    outline: none;
}

.quick-reg-form .form-control:valid {
    border-color: #28a745;
    background-image: linear-gradient(45deg, transparent 49%, rgba(40, 167, 69, 0.1) 50%);
}

.benefits-reminder {
    background: linear-gradient(135deg, #e8f8ff 0%, #f0f9ff 100%);
    border: 1px solid #b3d9ff;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
    color: #0066cc;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-note {
    display: block;
    margin-top: 10px;
    color: #6c757d;
    font-size: 12px;
}

.quick-capture-form {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
    animation: pulseGlow 2s infinite;
}

.quick-capture-form .form-title {
    font-size: 14px;
    font-weight: bold;
    color: #856404;
    margin-bottom: 15px;
}

.quick-capture-form .btn {
    width: 100%;
    padding: 12px 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.quick-capture-form .alternative-text {
    margin-top: 10px;
}

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

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3); 
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6); 
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ================== STYLES ULTRA-AVANCÉS ================== */

/* Menu Ultra-Avancé */
.ultra-advanced-menu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: ultraMenuAppear 0.8s ease-out;
}

.ultra-advanced-menu .menu-header h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ultra-advanced-menu .menu-header p {
    opacity: 0.9;
    font-size: 14px;
    margin-bottom: 20px;
}

.ultra-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.category-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-section h6 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.ultra-option {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ultra-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.ultra-option .option-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.ultra-option .option-badge {
    background: #ff4757;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

/* Panel Synchronisation Google Calendar */
.calendar-sync-panel {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
}

.calendar-sync-panel .sync-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-sync-panel .sync-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.sync-status {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    margin: 10px 0;
    text-align: center;
    font-size: 13px;
}

.sync-status.connected {
    background: rgba(52, 168, 83, 0.3);
    border: 1px solid rgba(52, 168, 83, 0.5);
}

.sync-status.disconnected {
    background: rgba(244, 67, 54, 0.3);
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.calendar-events-list {
    max-height: 200px;
    overflow-y: auto;
    margin: 15px 0;
}

.calendar-event-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px;
    margin: 8px 0;
    border-left: 4px solid #fff;
}

.calendar-event-item .event-title {
    font-weight: bold;
    font-size: 14px;
}

.calendar-event-item .event-details {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Manager de Playlists */
.playlist-manager {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.playlist-controls {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.playlist-controls .btn-playlist {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-controls .btn-playlist:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.playlist-songs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 250px;
    overflow-y: auto;
}

.song-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.song-item:last-child {
    border-bottom: none;
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 500;
    font-size: 14px;
}

.song-artist {
    font-size: 12px;
    opacity: 0.7;
}

.song-actions {
    display: flex;
    gap: 5px;
}

.song-actions button {
    background: none;
    border: none;
    color: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.song-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Panel Recommandations IA */
.ai-recommendation-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-recommendation-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 10s linear infinite;
}

.ai-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.ai-header .ai-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    animation: pulse 2s infinite;
}

.ai-recommendations {
    position: relative;
    z-index: 2;
}

.recommendation-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.recommendation-title {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.recommendation-description {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.4;
}

.confidence-score {
    display: inline-block;
    background: rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
}

/* Panel Réseaux Sociaux */
.social-media-panel {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(131, 58, 180, 0.3);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.social-platform {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-platform:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.social-platform .platform-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.social-platform .platform-name {
    font-size: 12px;
    font-weight: bold;
}

.content-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-preview .preview-header {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-preview .preview-text {
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.hashtags {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
}

.hashtag {
    color: #87ceeb;
    margin-right: 8px;
}

/* Panel Feedback */
.feedback-panel {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(86, 171, 47, 0.3);
}

.feedback-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recent-feedback {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    max-height: 200px;
    overflow-y: auto;
}

.feedback-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-item:last-child {
    border-bottom: none;
}

.feedback-rating {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    margin-right: 10px;
}

.feedback-date {
    font-size: 11px;
    opacity: 0.7;
}

.feedback-comment {
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
}

/* Animations Ultra-Avancées */
@keyframes ultraMenuAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes dataFlow {
    0% { 
        transform: translateX(-100%) scale(0); 
        opacity: 0; 
    }
    50% { 
        transform: translateX(0) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(100%) scale(0); 
        opacity: 0; 
    }
}

/* Effets de Particules */
.particle-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Responsive Design pour Ultra-Avancé */
@media (max-width: 768px) {
    .ultra-categories {
        grid-template-columns: 1fr;
    }
    
    .social-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feedback-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .playlist-controls {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ultra-advanced-menu {
        padding: 15px;
    }
    
    .category-section {
        padding: 12px;
    }
    
    .ultra-option {
        padding: 8px 12px;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .feedback-stats {
        grid-template-columns: 1fr;
    }
}

/* ================== MESSAGE DE DÉVELOPPEMENT ================== */

.development-notice {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border: 2px solid #e17055;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(225, 112, 85, 0.2);
    animation: developmentPulse 3s ease-in-out infinite;
}

.development-notice .notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #d63031;
    border-bottom: 1px solid rgba(214, 48, 49, 0.3);
    padding-bottom: 10px;
}

.development-notice .notice-content {
    color: #2d3436;
    line-height: 1.6;
}

.development-notice ul {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 15px 20px;
    margin: 10px 0;
}

.development-notice li {
    margin: 5px 0;
    font-weight: 500;
}

.notice-actions {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(214, 48, 49, 0.2);
    padding-top: 15px;
}

.notice-actions .btn {
    font-weight: bold;
    border-radius: 20px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.notice-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Démonstration rapide */
.quick-demo {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

.quick-demo h6 {
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.demo-options {
    margin: 15px 0;
}

.demo-options .btn {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.demo-options .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Tarifs de service */
.service-prices {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.service-prices h6 {
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.price-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
}

.price-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    border-left: 4px solid #ffeaa7;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.price-item .price {
    color: #ffeaa7;
    font-weight: bold;
    font-size: 16px;
}

/* Informations de contact */
.contact-info {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.contact-info h6 {
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-details p {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.contact-details a {
    color: #ffeaa7;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    color: white;
    text-decoration: underline;
}

/* Animation pour le message de développement */
@keyframes developmentPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(225, 112, 85, 0.2);
    }
    50% {
        box-shadow: 0 12px 35px rgba(225, 112, 85, 0.4);
    }
}

/* Responsive pour le message de développement */
@media (max-width: 480px) {
    .development-notice {
        padding: 15px;
    }
    
    .notice-actions .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .demo-options .btn {
        width: 100%;
        margin: 5px 0;
    }
}
