/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E90FF;
    --secondary-color: #00CED1;
    --accent-color: #FF6B6B;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1E90FF 0%, #00CED1 50%, #1E90FF 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite, fadeOut 0.5s ease 2s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.splash-content {
    text-align: center;
    color: var(--white);
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    font-size: 100px;
    animation: bounceIn 1s ease, float 2s ease-in-out 1s infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.splash-screen h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    animation: slideInUp 0.8s ease 0.3s both;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

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

.splash-screen p {
    font-size: 18px;
    opacity: 0.95;
    animation: slideInUp 0.8s ease 0.5s both;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--white);
    border-radius: 50%;
    margin: 40px auto 0;
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

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

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

/* App Container */
.app-container {
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Header */
.app-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-small {
    font-size: 28px;
}

.app-header h1 {
    font-size: 22px;
    font-weight: 600;
    flex: 1;
    margin-left: 15px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Selector */
.language-selector {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.language-selector:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.language-selector option {
    background: var(--primary-color);
    color: var(--white);
}

/* Chat Button Round (like WhatsApp) */
.chat-fab-header {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-fab-header:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.chat-fab-header:active {
    transform: scale(0.95);
}

.menu-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Bannière Réservation VIP */
.reservation-banner {
    background: linear-gradient(135deg, #1E90FF, #00CED1, #1E90FF);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite, slideInDown 0.6s ease;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.5);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.reservation-banner::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%; }
}

.reservation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.reservation-icon-wrapper {
    font-size: 50px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.reservation-text {
    flex: 1;
    color: white;
}

.reservation-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.reservation-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 15px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-icon {
    font-size: 18px;
}

.contact-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.reservation-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.reservation-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
}

.reservation-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* Responsive pour la bannière */
@media (max-width: 768px) {
    .reservation-banner {
        padding: 15px;
    }
    
    .reservation-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .reservation-icon-wrapper {
        font-size: 40px;
    }
    
    .reservation-text h3 {
        font-size: 16px;
    }
    
    .reservation-details {
        justify-content: center;
        font-size: 13px;
    }
    
    .contact-separator {
        display: none;
    }
    
    .reservation-features {
        justify-content: center;
    }
    
    .feature-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .reservation-cta {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.side-menu.active {
    left: 0;
}

.menu-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header h2 {
    font-size: 20px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    padding: 10px 0;
}

.menu-list li {
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    border-bottom: 1px solid var(--bg-light);
}

.menu-list li:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-section.active {
    display: block;
}

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

/* Hero Banner */
.hero-banner {
    background: 
        linear-gradient(135deg, rgba(30, 144, 255, 0.95), rgba(0, 206, 209, 0.95)),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1200&h=400&fit=crop') center/cover;
    border-radius: 20px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.3);
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 206, 209, 0.1));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    padding: 60px 30px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.hero-overlay h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 25px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

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

/* Quick Access */
.quick-access {
    margin: 30px 0;
}

.quick-access h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Chat CTA Banner */
.chat-cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: pulseGlow 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.chat-cta-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
}

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

.chat-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    flex: 1;
}

.chat-cta-icon {
    font-size: 50px;
    animation: bounce 2s infinite;
}

.chat-cta-text h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.chat-cta-text p {
    font-size: 15px;
    opacity: 0.95;
}

.chat-cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.chat-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.quick-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-btn {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border: 2px solid transparent;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

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

.quick-btn:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 144, 255, 0.3);
    border-color: var(--primary-color);
}

.quick-btn:active {
    transform: translateY(-4px) scale(0.98);
}

.btn-icon {
    font-size: 45px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s;
}

.quick-btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s;
}

.quick-btn:hover .btn-text {
    color: var(--primary-color);
}

/* Highlights */
.highlights {
    margin: 40px 0;
}

.highlights h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.25);
    border-color: var(--primary-color);
}

.card-emoji {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
    transition: all 0.3s;
}

.highlight-card:hover .card-emoji {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(5px 5px 10px rgba(30, 144, 255, 0.3));
}

.highlight-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s;
}

.highlight-card:hover h4 {
    color: var(--primary-color);
}

.highlight-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

/* Category Lists */
.content-section h2 {
    font-size: 26px;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.category-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.category-text p {
    font-size: 14px;
    color: var(--text-light);
}

/* Tips Section */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0 30px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.tip-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Floating Chat Button - DÉSACTIVÉ car on utilise le widget Voiceflow */
.chat-fab {
    display: none; /* Caché car Voiceflow affiche son propre bouton */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.chat-fab:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(30, 144, 255, 0);
    }
}

/* Chat Modal */
.chat-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.chat-modal.active {
    bottom: 0;
}

.chat-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chat-avatar {
    font-size: 35px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-title h3 {
    font-size: 18px;
    font-weight: 600;
}

.status {
    font-size: 13px;
    opacity: 0.9;
}

.close-chat-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--bg-light);
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

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

.message-avatar {
    font-size: 30px;
    flex-shrink: 0;
}

.message-content {
    background: var(--white);
    padding: 12px 18px;
    border-radius: 15px;
    max-width: 75%;
    box-shadow: var(--shadow);
}

.message-content p {
    margin: 8px 0;
    line-height: 1.5;
    font-size: 15px;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-light);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

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

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Chat Suggestions */
.chat-suggestions {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid var(--bg-light);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

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

.suggestion-chip {
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.suggestion-chip:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Chat Input */
.chat-input-container {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid var(--bg-light);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--bg-light);
    border-radius: 25px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-overlay h2 {
        font-size: 26px;
    }
    
    .hero-overlay p {
        font-size: 16px;
    }
    
    .quick-buttons {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    /* Chat CTA responsive */
    .chat-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .chat-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .chat-cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .app-header h1 {
        font-size: 18px;
    }
    
    .hero-overlay {
        padding: 40px 20px;
    }
    
    .hero-overlay h2 {
        font-size: 22px;
    }
    
    .quick-btn {
        padding: 20px 10px;
    }
    
    .btn-icon {
        font-size: 32px;
    }
    
    .btn-text {
        font-size: 14px;
    }
}

/* iOS Safe Area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .app-container {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
    
    .chat-input-container {
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }
    
    .chat-fab {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* Bouton WhatsApp Flottant - À GAUCHE (symétrique avec Voiceflow à droite) */
.whatsapp-fab {
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    right: auto !important;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 9999 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: white;
    margin-bottom: 2px;
}

.whatsapp-text {
    font-size: 9px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive pour WhatsApp - TOUJOURS À GAUCHE */
@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 24px !important;
        left: 20px !important;
        right: auto !important;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .whatsapp-text {
        font-size: 7px;
    }
}

/* Footer */
.app-footer {
    background: linear-gradient(135deg, var(--text-dark), #1a252f);
    color: var(--white);
    margin-top: 60px;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-icon {
    font-size: 32px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 14px;
    opacity: 0.8;
    font-style: italic;
}

.footer-links,
.footer-info {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-info li {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-links li:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin: 5px 0;
}

.footer-made-with {
    font-size: 13px;
    font-style: italic;
    color: var(--secondary-color);
}

/* Responsive - Mobile Optimization for Header Actions */
@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
    }
    
    .language-selector {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .chat-fab-header {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .app-header h1 {
        font-size: 18px;
    }
    
    .logo-small {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .chat-fab-header {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Header Subtitle for Expert local */
.header-subtitle {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 5px;
}

/* Services Description in Banner */
.services-description {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 15px 0;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust feature badges for more services */
.reservation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-badge {
    font-size: 13px;
    padding: 8px 14px;
}

@media (max-width: 768px) {
    .header-subtitle {
        font-size: 10px;
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .feature-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LEAD CAPTURE MODAL - FORMULAIRE DE QUALIFICATION
   ═══════════════════════════════════════════════════════════════ */

.moguide-lead-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.moguide-lead-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.moguide-lead-form {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.moguide-lead-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.moguide-lead-close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.moguide-lead-header {
    text-align: center;
    margin-bottom: 30px;
}

.moguide-lead-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    animation: bounce 1s ease infinite;
}

.moguide-lead-header h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.moguide-lead-header p {
    font-size: 16px;
    color: #7F8C8D;
}

.moguide-lead-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.moguide-input-group {
    display: flex;
    flex-direction: column;
}

.moguide-input-group label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.moguide-input-group span {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
}

.moguide-input-group input,
.moguide-input-group select {
    padding: 14px 16px;
    border: 2px solid #E8ECEF;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.moguide-input-group input:focus,
.moguide-input-group select:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.moguide-input-group input::placeholder {
    color: #BDC3C7;
}

.moguide-submit-btn {
    margin-top: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1E90FF, #00CED1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.moguide-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.moguide-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.moguide-privacy {
    text-align: center;
    margin-top: 16px;
    color: #95A5A6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .moguide-lead-form {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .moguide-lead-header h2 {
        font-size: 24px;
    }

    .moguide-input-group input,
    .moguide-input-group select {
        padding: 12px 14px;
    }
}
