/* ============================================
   MANIFESTE DESIGN - DISTRIBUTION FLYERS
   Dark Mode Premium avec accent orange
   ============================================ */

/* ============================================
   1. RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #B8BDD9;
    background-color: #0E0F1A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================================
   2. TYPOGRAPHIE
   ============================================ */

h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #FFFFFF;
}

h3 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

h4 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

p {
    font-size: 15px;
    line-height: 1.6;
    color: #B8BDD9;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

strong {
    font-weight: 600;
    color: #FFFFFF;
}

a {
    color: #FF8A3D;
    text-decoration: none;
    transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #FFA05C;
}

a:focus {
    outline: 2px solid #FF8A3D;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   3. LAYOUT & CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.content {
    padding: 90px 0px 0px 0px;
}

/* ============================================
   3.5. HERO IMAGE (dans le header)
   ============================================ */

.header .hero-image-container {
    margin: 24px auto 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.header .hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* ============================================
   4. HEADER (Hero avec dégradé radial)
   ============================================ */

.header {
    background:
        radial-gradient(
            circle at 65% 40%,
            rgba(28, 46, 92, 0.55),
            rgba(14, 19, 36, 0.85) 45%,
            rgba(10, 14, 28, 1) 75%
        ),
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 122, 24, 1),
            rgba(255, 122, 24, 0.8) 25%,
            rgba(255, 122, 24, 0.6) 45%,
            rgba(255, 122, 24, 0.35) 65%,
            rgba(14, 19, 36, 0.85) 95%
        ),
        linear-gradient(
            180deg,
            #0E1324,
            #0A0E1C
        );
    color: #FFFFFF;
    padding: 70px 24px 70px 24px;
    text-align: center;
    margin: 0 -24px -18px -24px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}


.header .logo {
    display: none;
    max-width: 200px;
    height: auto;
    margin-bottom: 32px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.header h1 {
    color: #FFFFFF;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.header .subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #B8BDD9;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-block;
    background: rgba(255,138,61,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,138,61,0.3);
    color: #FF8A3D;
    position: relative;
    z-index: 1;
}

/* ============================================
   5. SECTIONS
   ============================================ */

.section {
    margin-bottom: 96px;
    animation: fadeInUp 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF8A3D, #FF6A1F);
    color: #FFFFFF;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,138,61,0.3);
}

.section-title {
    margin: 0;
    color: #FFFFFF;
}

/* ============================================
   6. CARDS (Style dark premium)
   ============================================ */

.card {
    background: #181A33;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,138,61,0.4);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.card p {
    color: #B8BDD9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ============================================
   7. BOUTONS (Orange accent)
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8A3D, #FF6A1F);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(255,138,61,0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(255,138,61,0.35);
    color: #FFFFFF;
}

.btn-primary:focus {
    outline: 2px solid #FF8A3D;
    outline-offset: 2px;
}

.btn-success {
    background: linear-gradient(135deg, #FF8A3D, #FF6A1F);
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(255,138,61,0.25);
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(255,138,61,0.35);
    color: #FFFFFF;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #FFFFFF;
}

.btn-secondary:hover {
    border-color: #FF8A3D;
    color: #FFFFFF;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   8. ALERTES (Adaptées dark mode)
   ============================================ */

.alert {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    border-left: 4px solid;
    background: #181A33;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.alert-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.alert-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.alert-text {
    font-size: 15px;
    line-height: 1.6;
    color: #B8BDD9;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.alert-warning {
    border-left-color: #FF8A3D;
    background: rgba(255,138,61,0.1);
}

.alert-info {
    border-left-color: #FF8A3D;
    background: rgba(255,138,61,0.1);
}

.alert-success {
    border-left-color: #22C55E;
    background: rgba(34,197,94,0.1);
}

.alert-danger {
    border-left-color: #EF4444;
    background: rgba(239,68,68,0.1);
}

/* ============================================
   9. WELCOME BOX & TIP BOX
   ============================================ */

.welcome-box {
    background: #181A33;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.welcome-box h2 {
    margin-bottom: 16px;
    color: #FF8A3D;
}

.welcome-box p {
    color: #B8BDD9;
}

.tip-box {
    background: rgba(255,138,61,0.15);
    border-left: 4px solid #FF8A3D;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    border: 1px solid rgba(255,138,61,0.2);
}

.tip-box-title {
    font-weight: 600;
    font-size: 16px;
    color: #FF8A3D;
    margin-bottom: 8px;
}

.tip-box p {
    color: #B8BDD9;
    margin: 0;
}

/* ============================================
   10. CONTACTS GRID
   ============================================ */

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-card {
    background: linear-gradient(
        135deg,
        rgba(255, 122, 24, 0.25),
        rgba(255, 122, 24, 0.15) 50%,
        rgba(28, 46, 92, 0.2) 100%
    );
    border-radius: 16px;
    border: 1px solid rgba(255, 122, 24, 0.3);
    padding: 24px;
    box-shadow: none;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 200ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 24, 0.6);
    box-shadow: 
        0 8px 30px rgba(255, 122, 24, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.15);
}

.contact-role {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-name {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.contact-info {
    font-size: 15px;
    color: #B8BDD9;
    line-height: 1.6;
}

.contact-info a {
    color: #FF8A3D;
    word-break: break-word;
}

/* ============================================
   11. STEPS
   ============================================ */

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
    counter-reset: step-counter;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
}

.step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -12px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF8A3D, #FF6A1F);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 122, 24, 0.4);
}

.step-content {
    background: #181A33;
    border-radius: 16px;
    padding: 32px 20px 20px 20px;
    border: 1px solid rgba(255, 122, 24, 0.2);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.step-content:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 24, 0.4);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #FF8A3D;
    margin-bottom: 12px;
    margin-top: 8px;
}

.step-content p {
    margin: 0;
    color: #B8BDD9;
    line-height: 1.6;
}

/* ============================================
   12. CHECKLIST
   ============================================ */

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-left: 0;
}

.checklist li > *:not(.checklist-icon) {
    min-width: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,138,61,0.15);
    color: #FF8A3D;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(255,138,61,0.2);
}

.checklist li:last-child {
    margin-bottom: 0;
}

/* ============================================
   13. APP CONTROLS
   ============================================ */

.app-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.app-control {
    background: #181A33;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.app-control:hover {
    transform: translateY(-4px);
    border-color: rgba(255,138,61,0.4);
}

.app-control.start {
    border-top: 4px solid #22C55E;
}

.app-control.pause {
    border-top: 4px solid #FF8A3D;
}

.app-control.stop {
    border-top: 4px solid #EF4444;
}

.app-control-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.app-control-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.app-control-desc {
    font-size: 14px;
    color: #B8BDD9;
    line-height: 1.6;
}

/* ============================================
   14. GPS IMAGE CONTAINER
   ============================================ */

.gps-image-container {
    margin: 32px 0;
    text-align: center;
}

.gps-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.gps-caption {
    margin-top: 16px;
    font-size: 14px;
    color: #8B90B3;
    font-style: italic;
}

.sector-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin: 24px 0;
}

.sector-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-image-container {
    text-align: center;
}

.sector-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ============================================
   15.5. CONSEILS PRATIQUES LAYOUT
   ============================================ */

.conseils-layout {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 32px;
    align-items: stretch;
    margin: 32px 0;
}

.conseils-image-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
}

.conseils-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.conseils-days-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.conseils-day-item {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.conseils-day-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.conseils-day-title {
    font-size: 16px;
    font-weight: 600;
    color: #FF8A3D;
    margin-bottom: 4px;
}

.conseils-day-image {
    height: 200px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 2px 10px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ============================================
   15. FAQ
   ============================================ */

.faq-item {
    background: #181A33;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,138,61,0.4);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #FF8A3D;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: #B8BDD9;
    line-height: 1.6;
}

/* ============================================
   16. FOOTER
   ============================================ */

.footer {
    background: #12142A;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 24px;
    margin: 36px -24px 0 -24px;
    text-align: center;
}

.footer-message {
    font-size: 18px;
    line-height: 1.6;
    color: #B8BDD9;
    margin-bottom: 32px;
}

.footer-message strong {
    color: #FF8A3D;
}

.footer-contact {
    font-size: 15px;
    line-height: 1.6;
    color: #8B90B3;
}

.footer-contact a {
    color: #FF8A3D;
}

/* ============================================
   17. UTILITAIRES
   ============================================ */

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ============================================
   18. RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Typographie mobile */
    h1 {
        font-size: 36px;
        line-height: 44px;
    }

    h2 {
        font-size: 28px;
        line-height: 36px;
    }

    h3 {
        font-size: 22px;
        line-height: 28px;
    }

    p {
        font-size: 15px;
    }

    /* Header mobile */
    .header {
        padding: 32px 16px;
        border-radius: 16px;
        margin: 0 -16px -20px -16px;
        background:
            radial-gradient(
                circle at 50% 30%,
                rgba(28, 46, 92, 0.45),
                rgba(14, 19, 36, 0.9) 55%
            ),
            radial-gradient(
                circle at 50% 70%,
                rgba(255, 122, 24, 0.95),
                rgba(255, 122, 24, 0.7) 35%,
                rgba(255, 122, 24, 0.5) 55%,
                rgba(14, 19, 36, 0.9) 90%
            ),
            #0A0E1C;
    }

    .header .logo {
        max-width: 150px;
        margin-bottom: 16px;
    }

    .header .subtitle {
        font-size: 16px;
    }

    /* Container mobile */
    .container {
        padding: 0 16px;
    }

    .content {
        padding: 64px 0;
    }

    /* Hero image mobile */
    .header .hero-image-container {
        margin: 16px auto 0 auto;
        max-width: 100%;
    }

    .header .hero-image {
        max-height: 250px;
        border-radius: 12px;
    }

    /* Sections mobile */
    .section {
        margin-bottom: 64px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* Cards mobile */
    .card {
        padding: 20px;
    }

    /* Checklist mobile */
    .checklist li {
        min-width: 0;
    }

    .checklist li > *:not(.checklist-icon) {
        min-width: 0;
        flex: 1;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .checklist li strong {
        display: inline;
    }

    /* Contacts grid mobile */
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Steps mobile */
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step::before {
        width: 36px;
        height: 36px;
        font-size: 16px;
        top: -10px;
        left: 16px;
    }

    .step-content {
        padding: 28px 16px 16px 16px;
    }

    /* App controls mobile */
    .app-controls {
        grid-template-columns: 1fr;
    }

    /* Boutons mobile */
    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Footer mobile */
    .footer {
        padding: 32px 16px;
        margin: 4px -16px 0 -16px;
    }

    /* Welcome box mobile */
    .welcome-box {
        padding: 24px;
    }

    /* Sector layout mobile */
    .sector-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Conseils layout mobile */
    .conseils-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .conseils-days-container {
        gap: 12px;
    }
}

/* ============================================
   19. ANIMATIONS & TRANSITIONS
   ============================================ */

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

/* ============================================
   20. ACCESSIBILITÉ
   ============================================ */

/* Focus visible pour tous les éléments interactifs */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #FF8A3D;
    outline-offset: 2px;
}

/* Contraste minimum WCAG AA */
/* Tous les textes respectent le ratio 4.5:1 minimum */

/* Skip link pour l'accessibilité */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #FF8A3D;
    color: #FFFFFF;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   21. WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    animation: fadeInUp 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    visibility: visible;
    opacity: 1;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(37, 211, 102, 0.5),
        0 6px 16px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.whatsapp-title {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.whatsapp-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.95;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .whatsapp-float {
        position: fixed !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        top: auto !important;
        z-index: 99999 !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
        margin: 0 !important;
        padding: 0 !important;
    }

    .whatsapp-link {
        padding: 14px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0 !important;
        justify-content: center !important;
        box-shadow: none !important;
        display: flex !important;
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        margin: 0 !important;
    }

    .whatsapp-link:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .whatsapp-icon {
        width: 36px !important;
        height: 36px !important;
        display: block !important;
    }

    .whatsapp-text {
        display: flex !important;
    }

    .whatsapp-title {
        font-size: 13px !important;
        display: block !important;
    }

    .whatsapp-subtitle {
        font-size: 11px !important;
        display: block !important;
    }

    /* Ajouter un padding-bottom au footer pour éviter qu'il soit caché */
    .footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 64px 0 0px 0;
    }
}
