/* Variables & Reset */
:root {
    --blue-primary: #0055A4;
    --blue-dark: #003087;
    --red-primary: #EF4135;
    --red-dark: #E1000F;
    --white: #FFFFFF;
    --bg-primary: #0A0E27;
    --bg-secondary: #111827;
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-blue: linear-gradient(135deg, #0055A4 0%, #003087 100%);
    --gradient-red: linear-gradient(135deg, #EF4135 0%, #E1000F 100%);
    --gradient-primary: linear-gradient(135deg, #0055A4 0%, #EF4135 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    transition: all 0.3s ease;
}

.navbar {
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 39, 0.9);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo-image {
    height: 200px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--blue-primary);
}

.btn-primary-nav {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: 25px;
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0E27 0%, #1a1f3a 50%, #0A0E27 100%);
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 85, 164, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--blue-primary);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Badge Réponse 48h */
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    color: #78350F;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin: 16px 0;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

.response-badge i {
    font-size: 20px;
    animation: rotate-clock 2s linear infinite;
}

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

@keyframes rotate-clock {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D1D5DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-h2 {
    font-size: 28px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-primary);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 164, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 85, 164, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.advantage-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    color: var(--white);
}

.blue-gradient {
    background: var(--gradient-blue);
}

.red-gradient {
    background: var(--gradient-red);
}

.purple-gradient {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
}

.advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.advantage-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.9) 100%);
}

.service-content {
    padding: 24px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-description {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    gap: 40px;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-description {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    text-align: center;
    padding: 24px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 16px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-secondary);
}

.contact-info-card a {
    color: var(--blue-primary);
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
}

/* Améliorer la visibilité des options select */
.form-group select option {
    background: #1a1d35;
    color: #ffffff;
    padding: 12px;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--text-secondary);
}

.footer-nav h4,
.footer-contact h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--blue-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Boutons Flottants ULTRA-VISIBLES */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.floating-btn i {
    font-size: 20px;
}

.floating-btn-phone {
    background: #10B981;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    animation: pulse-phone 2s ease-in-out infinite, glow-green 2s ease-in-out infinite;
}

.floating-btn-phone:hover {
    background: #059669;
}

.floating-btn-phone i {
    animation: phone-ring 2s ease-in-out infinite;
}

.floating-btn-form {
    background: var(--gradient-primary);
    box-shadow: 0 8px 30px rgba(0, 85, 164, 0.4);
    animation: pulse-form 2.5s ease-in-out infinite, glow-blue 2.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

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

/* Animations Boutons Flottants */
@keyframes pulse-float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes pulse-form {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

@keyframes glow-green {
    0%, 100% { box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(16, 185, 129, 0.8), 0 0 20px rgba(16, 185, 129, 0.6); }
}

@keyframes glow-blue {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 85, 164, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(0, 85, 164, 0.7), 0 0 20px rgba(0, 85, 164, 0.5); }
}

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

/* Classe bounce au scroll */
.floating-btn.bounce {
    animation: bounce-scroll 0.5s ease-out;
}

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

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup.show {
    display: flex;
}

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

.popup-modal {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: popup-enter 0.4s ease-out;
    color: #1F2937;
}

@keyframes popup-enter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #1F2937;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.popup-icon {
    text-align: center;
    margin-bottom: 24px;
}

.popup-logo {
    width: 150px;
    height: auto;
    margin: 0 auto;
    animation: popup-logo-pulse 2s ease-in-out infinite;
}

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

.popup-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #1F2937;
}

.popup-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
}

.popup-form .form-group {
    margin-bottom: 16px;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    background: #F9FAFB;
    color: #1F2937;
    font-size: 15px;
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.popup-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.popup-dismiss {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: #6B7280;
    font-size: 14px;
    cursor: pointer;
}

.popup-dismiss:hover {
    color: #1F2937;
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 65px;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 12px 16px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .btn-primary-nav {
        text-align: center;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .btn-text {
        display: none;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        justify-content: center;
        padding: 0;
    }
    
    .popup-modal {
        padding: 32px 24px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 55px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODALE DE SUCCÈS FORMULAIRE
   ============================================ */

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal-overlay.show {
    opacity: 1;
}

.success-modal {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal-overlay.show .success-modal {
    transform: translateY(0);
    opacity: 1;
}

.success-modal-content {
    text-align: center;
}

/* Checkmark animée */
.success-checkmark {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #10B981;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #10B981;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #10B981;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #fff;
    stroke-width: 3;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 50px #10B981;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

/* Logo */
.success-logo {
    width: 180px;
    height: auto;
    margin: 24px auto 32px;
    display: block;
    animation: fadeInUp 0.6s ease 0.5s both;
}

/* Titre */
.success-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.6s both;
}

/* Message */
.success-message {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.7s both;
}

/* Infos */
.success-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.success-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 16px;
}

.success-info-item:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 4px;
}

.success-info-item:last-child {
    padding-top: 16px;
}

.success-info-item i {
    color: var(--blue-primary);
    font-size: 20px;
    min-width: 20px;
}

.success-info-item strong {
    color: var(--white);
    font-weight: 700;
}

/* Bouton */
.success-btn {
    background: linear-gradient(135deg, #0055A4 0%, #EF4135 100%);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.9s both;
    box-shadow: 0 10px 30px rgba(0, 85, 164, 0.3);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 85, 164, 0.4);
}

.success-btn:active {
    transform: translateY(0);
}

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

/* Responsive */
@media (max-width: 768px) {
    .success-modal {
        padding: 32px 24px;
        max-width: 90%;
    }
    
    .success-logo {
        width: 140px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-message {
        font-size: 16px;
    }
    
    .success-info-item {
        font-size: 14px;
    }
    
    .success-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .success-modal {
        padding: 24px 16px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-logo {
        width: 120px;
        margin: 16px auto 24px;
    }
    
    .success-title {
        font-size: 20px;
    }
    
    .success-message {
        font-size: 14px;
    }
    
    .success-info {
        padding: 16px;
    }
    
    .success-info-item {
        font-size: 13px;
        gap: 8px;
    }
    
    .success-info-item i {
        font-size: 16px;
    }
}
