/* Stokkum Gruppe - Design Futuriste Moderne */

:root {
    /* Couleurs principales modernes */
    --primary-blue: #0f172a;
    --secondary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --light-blue: #60a5fa;
    --ultra-light-blue: #dbeafe;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    
    /* Ombres et effets */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Gradients modernes */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-cyber: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
    --gradient-neon: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    
    /* Bordures et rayons */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--light-gray);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Effet de particules en arrière-plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation futuriste */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-neon);
    opacity: 0.6;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none;
    position: relative;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0.1;
    transition: left 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.navbar-nav .nav-link.active {
    background: var(--gradient-neon);
    color: var(--white) !important;
    box-shadow: var(--shadow-glow);
}

/* Hero Section futuriste */
.hero {
    background: var(--gradient-cyber);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    opacity: 0.6;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.8)); }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Cards futuristes */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:not(.form-card):hover::before {
    opacity: 1;
}

/* Hover effects only for non-form cards */
.card:not(.form-card):hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Classe spécifique pour les formulaires - sans animations */
.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: var(--shadow-lg);
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.form-container .card-header {
    background: var(--gradient-neon);
    color: var(--white);
    border: none;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: 1.5rem;
    font-weight: 600;
}

.form-container .card-body {
    padding: 2rem;
}

/* Désactiver TOUS les effets d'animation dans les formulaires */
.form-container,
.form-container *,
.form-container *:hover,
.form-container *:focus,
.form-container *:active {
    animation: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    transform: none !important;
}

/* Champs de formulaire avec transitions légères uniquement */
.form-container .form-control,
.form-container .form-control:focus,
.form-container input,
.form-container input:focus,
.form-container select,
.form-container select:focus,
.form-container textarea,
.form-container textarea:focus {
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    transform: none !important;
    animation: none !important;
}

/* Boutons dans les formulaires sans effets */
.form-container .btn,
.form-container .btn:hover,
.form-container .btn:focus,
.form-container .btn:active {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.card-header {
    background: var(--gradient-neon);
    color: var(--white);
    border: none;
    padding: 2rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

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

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

/* Formulaires modernes */
.form-control {
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    background: var(--white);
    transform: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Boutons futuristes */
.btn-primary {
    background: var(--gradient-neon);
    border: none;
    border-radius: var(--radius-full);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary::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 ease;
}

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

/* Boutons dans les formulaires n'ont pas d'effets de survol */
.form-card .btn-primary:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

/* Boutons normaux gardent leurs effets */
.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Boutons dans les formulaires n'ont pas d'effets de survol */
.form-card .btn-success:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

/* Boutons normaux gardent leurs effets */
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-danger {
    background: var(--gradient-secondary);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Boutons dans les formulaires n'ont pas d'effets de survol */
.form-card .btn-danger:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

/* Boutons normaux gardent leurs effets */
.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Résultats de calculatrice */
.calculator-result {
    background: var(--gradient-success);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.calculator-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

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

.calculator-result h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Badges de statut */
.badge {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.badge-waiting {
    background: linear-gradient(135deg, var(--warning) 0%, #fbbf24 100%);
    color: var(--white);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.badge-approved {
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.badge-rejected {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

/* Tables modernes */
.table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.table thead th {
    background: var(--gradient-cyber);
    color: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.table tbody td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    vertical-align: middle;
    transition: background-color 0.3s ease;
}

.table tbody tr:hover td {
    background-color: rgba(59, 130, 246, 0.05);
}

/* Footer futuriste */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-neon);
}

.footer h5 {
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer a {
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-neon);
    transition: width 0.3s ease;
}

.footer a:hover::after {
    width: 100%;
}

.footer a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Animations avancées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* Process Section Styles */
.process-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.process-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.process-number {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
    animation: float 3s ease-in-out infinite;
}

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

/* Mobile App Section Styles */
.country-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    position: relative;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.country-card:hover::before {
    opacity: 0.1;
}

.country-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.country-card img {
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.country-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Newsletter Section Styles */
.newsletter-section {
    background: var(--gradient-cyber);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

/* Integration Cards Styles */
.integration-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-neon);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.integration-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.integration-card .card-body {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Button Styles */
.btn-modern {
    border-radius: var(--radius-full);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: var(--gradient-neon);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-modern::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 ease;
}

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

/* Boutons dans les formulaires n'ont pas d'effets de survol */
.form-card .btn-modern:hover {
    transform: none;
    box-shadow: var(--shadow-lg);
}

/* Boutons normaux gardent leurs effets */
.btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Enhanced Card Styles */
.card-modern {
    border-radius: var(--radius-2xl);
    border: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Section Headers */
.section-header {
    position: relative;
    margin-bottom: 4rem;
    text-align: center;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-neon);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
}

/* Animated Background */
.animated-bg {
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

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

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Enhanced Form Styles */
.form-modern {
    border-radius: var(--radius-xl);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
}

.form-modern:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
    background: var(--white);
    transform: none;
}

/* Désactiver les effets sur les formulaires modernes dans les conteneurs de formulaire */
.form-container .form-modern {
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.form-container .form-modern:focus {
    transform: none !important;
    animation: none !important;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .process-card,
    .country-card,
    .integration-card {
        margin-bottom: 2rem;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .calculator-result h3 {
        font-size: 2rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--primary-blue);
        color: var(--white);
    }
    
    .card-modern {
        background: rgba(30, 41, 59, 0.95);
        color: var(--white);
        border-color: rgba(59, 130, 246, 0.2);
    }
    
    .form-modern {
        background: rgba(30, 41, 59, 0.9);
        border-color: rgba(59, 130, 246, 0.2);
        color: var(--white);
    }
}

/* Loading Animations */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Typography */
.text-gradient {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-neon);
    border-radius: var(--radius-full);
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-cyber);
}

/* Alert Messages */
.alert {
    border: none;
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-success {
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background: linear-gradient(135deg, var(--warning) 0%, #fbbf24 100%);
    color: var(--white);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.alert-info {
    background: var(--gradient-neon);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

/* Spinner moderne */
.spinner {
    border: 4px solid rgba(59, 130, 246, 0.1);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
}

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

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: particleFloat 6s infinite linear;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Effets de glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
}

/* Effets de néon */
.neon-text {
    color: var(--accent-blue);
    text-shadow: 
        0 0 5px var(--accent-blue),
        0 0 10px var(--accent-blue),
        0 0 15px var(--accent-blue),
        0 0 20px var(--accent-blue);
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px var(--accent-blue),
            0 0 10px var(--accent-blue),
            0 0 15px var(--accent-blue),
            0 0 20px var(--accent-blue);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Effets de morphing */
.morphing {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Effets de cyberpunk */
.cyber-border {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4) border-box;
    border-radius: var(--radius-xl);
}

.cyber-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: cyberGlow 2s linear infinite;
}

@keyframes cyberGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Effets de hologramme */
.hologram {
    position: relative;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.3),
        inset 0 0 20px rgba(59, 130, 246, 0.1);
}

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

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

/* Effets de matrix */
.matrix-bg {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.matrix-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="matrix" width="10" height="10" patternUnits="userSpaceOnUse"><rect width="10" height="10" fill="none" stroke="rgba(0,255,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23matrix)"/></svg>');
    animation: matrixMove 20s linear infinite;
}

@keyframes matrixMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}