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

:root {
    /* SwissKap inspired colors */
    --primary-color: #243e59;
    --primary-dark: #1a2f42;
    --secondary-color: #64748b;
    --accent-color: #243e59;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo-img {
    height: 140px;
    width: auto;
    max-width: 480px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 110px;
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 96px;
        max-width: 320px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-icon {
    font-size: 18px;
    line-height: 1;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.language-option:hover {
    background: linear-gradient(135deg, #243e59 0%, #1a2f42 100%);
    color: white;
    transform: translateX(4px);
}

.language-option.active {
    background: linear-gradient(135deg, #243e59 0%, #1a2f42 100%);
    color: white;
    font-weight: 600;
}

.flag {
    font-size: 18px;
    line-height: 1;
}

.lang-name {
    font-size: 14px;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

.btn-remove {
    background: var(--error-color);
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: heroGradient 12s ease-in-out infinite;
}

@keyframes heroGradient {
    0%, 100% {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    33% {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    }
    66% {
        background: linear-gradient(135deg, #cbd5e1 0%, #f1f5f9 100%);
    }
}

/* Particles d'arrière-plan animées */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.dot{fill:rgba(59,130,246,0.1);animation:float 3s ease-in-out infinite}</style></defs><circle class="dot" cx="10" cy="20" r="2"/><circle class="dot" cx="80" cy="80" r="1.5" style="animation-delay:-1s"/><circle class="dot" cx="40" cy="40" r="1" style="animation-delay:-2s"/><circle class="dot" cx="90" cy="30" r="1.5" style="animation-delay:-0.5s"/></svg>');
    animation: particlesFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particlesFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--primary-color), #243e59, var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite, fadeInUp 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-size: 1.15rem;
    display: block;
    margin-top: 1rem;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #243e59, #1a2f42);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #243e59);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.section-header h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.lpp-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.services-highlight {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.services-text {
    margin-bottom: 2.5rem;
}

.services-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-box p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    animation: servicesGradient 15s ease-in-out infinite;
}

@keyframes servicesGradient {
    0%, 100% {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    }
    33% {
        background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    }
    66% {
        background: linear-gradient(135deg, #cbd5e1 0%, #f1f5f9 50%, #f8fafc 100%);
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><style>.dot{fill:rgba(59,130,246,0.08);animation:float 6s ease-in-out infinite}</style></defs><circle class="dot" cx="15" cy="25" r="2.5"/><circle class="dot" cx="85" cy="75" r="2" style="animation-delay:-2s"/><circle class="dot" cx="45" cy="85" r="1.5" style="animation-delay:-4s"/><circle class="dot" cx="75" cy="15" r="1.8" style="animation-delay:-1s"/><circle class="dot" cx="25" cy="65" r="1.2" style="animation-delay:-3s"/></svg>');
    animation: particlesFloat 30s linear infinite;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.03), transparent);
    clip-path: polygon(0 60%, 100% 80%, 100% 100%, 0% 100%);
    animation: waveSubtle 20s ease-in-out infinite;
}

@keyframes waveSubtle {
    0%, 100% {
        transform: scaleX(1);
    }
    50% {
        transform: scaleX(1.1);
    }
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.1;
    background: linear-gradient(45deg, var(--primary-color), #243e59, #1a2f42);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #243e59);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

.services-highlight {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 138, 0.05));
    border-radius: var(--radius-xl);
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    animation: highlightPulse 3s ease-in-out infinite;
}

.services-highlight::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.6s;
    animation: highlightSweep 4s ease-in-out infinite;
}

@keyframes highlightSweep {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 0 15px 60px rgba(59, 130, 246, 0.2);
    }
}

.services-text {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.services-text p:nth-child(2) {
    animation-delay: 0.5s;
}

.services-text p:nth-child(3) {
    animation-delay: 0.7s;
}

.highlight-box {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
    animation: fadeInUp 1s ease-out 0.9s both;
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), transparent);
    pointer-events: none;
}

.highlight-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #243e59);
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

.highlight-box h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Calendly Section */
.calendly-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.consultation-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: fadeInUp 1s ease-out;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: spotlightRotate 15s linear infinite;
    pointer-events: none;
}

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

.consultation-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 120px rgba(30, 58, 138, 0.15);
}

.consultation-card:hover::before {
    animation-duration: 8s;
}

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

.consultation-content h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), #243e59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

.consultation-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-item span {
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.calendly-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.calendly-embed::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), #243e59, #1a2f42, var(--primary-color));
    background-size: 400% 400%;
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
}

.calendly-embed iframe {
    border-radius: var(--radius-lg);
    width: 100% !important;
    height: 700px !important;
    border: none !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    100% {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--text-primary);
    font-weight: 600;
}

.close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-modal h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-container {
    padding: 2rem;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 1rem;
    flex: 1;
    min-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.5);
}

.progress-step.completed .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.multi-step-form {
    margin-bottom: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    position: relative;
    z-index: 1;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.15), 0 4px 20px rgba(30, 58, 138, 0.1);
    transform: translateY(-2px);
    background: rgba(248, 250, 252, 0.8);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: var(--primary-color);
    opacity: 0.7;
}

/* Radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-dark);
    font-weight: 500;
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Password strength */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: var(--error-color);
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    color: var(--text-secondary);
}

/* Styles pour la barre de force du mot de passe dans le formulaire principal */
.strength-fill.weak {
    background: #ef4444;
    width: 25%;
}

.strength-fill.fair {
    background: #f59e0b;
    width: 50%;
}

.strength-fill.good {
    background: #243e59;
    width: 75%;
}

.strength-fill.strong {
    background: #10b981;
    width: 100%;
}

/* Employer sections */
.employers-section {
    margin-top: 2rem;
}

.employers-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.employer-group {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.employer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.employer-header h5 {
    color: var(--text-primary);
    font-weight: 600;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Dashboard Styles */
.dashboard {
    min-height: 100vh;
    background: var(--bg-secondary);
    padding-top: 70px;
}

.dashboard-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-content {
    padding: 2rem 0;
}

.dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.request-status {
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-item.completed .timeline-icon {
    background: var(--success-color);
    color: white;
}

.timeline-item.pending .timeline-icon {
    background: var(--border-color);
    color: var(--text-light);
}

.timeline-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

/* Admin Panel Styles */
.admin-panel {
    min-height: 100vh;
    background: var(--bg-secondary);
    padding-top: 70px;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-actions .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-actions .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Change Password Modal */
.change-password-form {
    max-width: 500px;
    margin: 0 auto;
}

.change-password-form .form-group {
    margin-bottom: 1.5rem;
}

.change-password-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.change-password-form .password-strength {
    margin-top: 0.5rem;
}

.change-password-form .strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.change-password-form .strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.change-password-form .strength-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
}

.change-password-form .strength-fill.weak {
    background: #ef4444;
    width: 25%;
}

.change-password-form .strength-fill.fair {
    background: #f59e0b;
    width: 50%;
}

.change-password-form .strength-fill.good {
    background: #243e59;
    width: 75%;
}

.change-password-form .strength-fill.strong {
    background: #10b981;
    width: 100%;
}

/* Admin Controls */
.admin-controls {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.search-container {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input-container {
    position: relative;
    max-width: 400px;
}

.export-csv-btn {
    white-space: nowrap;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.clear-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: none;
}

.clear-search-btn:hover {
    background: var(--bg-accent);
    color: var(--primary-color);
}

.clear-search-btn.show {
    display: block;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-select {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.reset-filters-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.admin-header {
    background: var(--bg-primary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Search results count */
.search-results-count {
    margin: 1rem 0 0.5rem 0;
    padding: 0.75rem;
    background: rgba(30, 58, 138, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.search-results-count i {
    margin-right: 0.5rem;
}

.admin-content {
    padding: 2rem 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Tables */
.requests-table-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.requests-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.requests-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.requests-table th:first-child {
    border-top-left-radius: var(--radius-md);
}

.requests-table th:last-child {
    border-top-right-radius: var(--radius-md);
}

.requests-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.requests-table tr:hover {
    background: var(--bg-accent);
}

.status-select {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 62, 89, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-accent);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.pagination-btn i {
    font-size: 0.75rem;
}

.pagination-ellipsis {
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
}

.status-badge.processing {
    background: rgba(59, 130, 246, 0.1);
    color: #243e59;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Request Details Modal */
.request-details-modal {
    max-width: 1000px;
    max-height: 95vh;
}

.request-details-container {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.request-details-section {
    background: var(--bg-accent);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.request-details-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.request-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.request-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.request-detail-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.request-detail-value {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem;
    background: white;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.request-detail-value.empty {
    color: var(--text-light);
    font-style: italic;
}

.employers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.employer-item {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.employer-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.document-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.document-info {
    flex: 1;
}

.document-name {
    font-weight: 600;
    color: var(--text-primary);
}

.document-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.status-header h2 {
    margin: 0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.close-modal {
    cursor: pointer;
}

/* Print styles */
@media print {
    .modal-actions {
        display: none !important;
    }
    
    .modal-header {
        border-bottom: none !important;
    }
    
    .request-details-modal {
        max-width: none !important;
        max-height: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    .request-details-container {
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* Login form */
.login-form {
    padding: 1rem;
}

.login-form .form-group {
    margin-bottom: 1rem;
}

.full-width {
    width: 100%;
}

/* Error messages */
.error-message {
    background: var(--error-color);
    color: white;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* Styles pour les erreurs de champ spécifiques */
.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    font-weight: 500;
    line-height: 1.4;
}

/* Styles pour l'upload de fichiers */
.file-upload-container {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.file-upload-container:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.file-upload-container.dragover {
    border-color: var(--primary-color);
    background: #dbeafe;
    transform: scale(1.02);
}

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-display {
    pointer-events: none;
}

.file-upload-display i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.file-upload-text {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.file-upload-info {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #e5e7eb;
    display: none;
}

.file-preview.show {
    display: block;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-sm);
}

.file-preview .file-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.file-preview .file-actions {
    margin-top: 0.5rem;
}

.file-preview .file-actions button {
    margin-right: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Styles pour la signature */
.signature-container {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md);
    padding: 1rem;
    background: white;
}

.signature-canvas-container {
    text-align: center;
}

#signatureCanvas {
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    cursor: crosshair;
    background: white;
    display: block;
    margin: 0 auto 1rem;
}

.signature-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.signature-controls button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.signature-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: var(--radius-sm);
    border: 1px solid #e5e7eb;
    display: none;
    text-align: center;
}

.signature-preview.show {
    display: block;
}

.signature-preview img {
    max-width: 100%;
    max-height: 100px;
    border-radius: var(--radius-sm);
}

.signature-preview .signature-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Styles pour les documents dans le dashboard admin */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.document-item:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.document-info {
    flex: 1;
}

.document-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.document-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.document-name {
    font-weight: 500;
    color: var(--text-primary);
}

.document-size {
    color: var(--text-secondary);
}

.document-date {
    color: var(--text-secondary);
}

.document-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.document-actions .btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
}

.document-actions .btn-sm i {
    margin-right: 0.25rem;
}

/* Responsive pour les documents */
@media (max-width: 768px) {
    .document-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .document-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .document-details {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    /* Responsive pour l'étape 6 - Documents d'identité */
    .file-upload-container {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .file-upload-display i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .file-upload-text {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .file-upload-info {
        font-size: 0.8rem;
    }
    
    .file-preview {
        margin-top: 0.75rem;
        padding: 0.75rem;
    }
    
    .file-preview img {
        max-width: 100%;
        height: auto;
        border-radius: var(--radius-sm);
    }
    
    /* Signature responsive */
    .signature-container {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    #signatureCanvas {
        width: 100%;
        max-width: 350px;
        height: 120px;
        margin: 0 auto 0.75rem;
    }
    
    .signature-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .signature-controls .btn-secondary {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .signature-preview {
        margin-top: 0.75rem;
        text-align: center;
    }
    
    .signature-preview img {
        max-width: 100%;
        height: auto;
        border-radius: var(--radius-sm);
        border: 1px solid #e5e7eb;
    }
}

/* Responsive pour très petits écrans - Documents d'identité */
@media (max-width: 480px) {
    .file-upload-container {
        padding: 1rem 0.75rem;
    }
    
    .file-upload-display i {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .file-upload-text {
        font-size: 0.85rem;
    }
    
    .file-upload-info {
        font-size: 0.75rem;
    }
    
    #signatureCanvas {
        height: 100px;
        max-width: 300px;
    }
    
    .signature-container {
        padding: 0.5rem;
    }
    
    .signature-controls .btn-secondary {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .file-preview {
        padding: 0.5rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Footer Waves Animation */
.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: waveMove 8s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave2 {
    animation-delay: -2s;
    opacity: 0.2;
}

.wave3 {
    animation-delay: -4s;
    opacity: 0.1;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(-50%) skewX(0deg);
    }
    50% {
        transform: translateX(-40%) skewX(5deg);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #243e59, transparent);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
    }
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 160px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-logo-img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .footer-logo-img {
        width: 120px;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #243e59, #243e59);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #243e59;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #243e59;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateX(3px);
}

.contact-item i {
    width: 16px;
    color: #243e59;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin-bottom: 2rem;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge:nth-child(1) {
    animation-delay: 0s;
}

.badge:nth-child(2) {
    animation-delay: 1s;
}

.badge:nth-child(3) {
    animation-delay: 2s;
}

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

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .wave {
        animation-duration: 6s;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    
    .expertise {
        padding: 80px 0;
    }
    
    .calendly-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2::after {
        width: 80px;
        height: 2px;
    }
    
    .section-header h3 {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .lpp-stats {
        gap: 2rem;
        margin: 3rem 0 1rem;
    }
    
    .consultation-content h4 {
        font-size: 2rem;
    }
    
    .consultation-content > p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1.2rem 1.5rem;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .calendly-embed iframe {
        height: 600px !important;
    }
    
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .services-title::after {
        width: 60px;
        height: 2px;
    }
    
    .services-highlight {
        font-size: 1.3rem;
        padding: 1.2rem 2rem;
        margin-bottom: 2rem;
    }
    
    .services-text {
        margin-bottom: 3rem;
    }
    
    .services-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .highlight-box h4 {
        font-size: 1.4rem;
    }
    
    .highlight-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 60px 0;
    }
    
    .expertise {
        padding: 60px 0;
    }
    
    .calendly-section {
        padding: 60px 0 40px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .lpp-stats {
        gap: 1.5rem;
    }
    
    .consultation-content h4 {
        font-size: 1.8rem;
    }
    
    .consultation-content > p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .calendly-embed iframe {
        height: 500px !important;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .services-highlight {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .services-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .highlight-box h4 {
        font-size: 1.3rem;
    }
    
    .footer {
        margin-top: 0;
    }
    
    .footer-content {
        padding: 3rem 0 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Responsive Design */
/* ── HAMBURGER BURGER (mobile) ─────────────────────────── */
.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 0.375rem;
    transition: background 0.2s;
    flex-shrink: 0;
}
.navbar-burger:hover { background: rgba(36,62,89,0.07); }
.navbar-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-burger.is-open span:nth-child(2) { opacity: 0; }
.navbar-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile déroulant */
.navbar-mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: #fff;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
    animation: navMobileSlide 0.2s ease both;
}
.navbar-mobile-menu.is-open { display: flex; }
@keyframes navMobileSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.navbar-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.18s, color 0.18s;
}
.navbar-mobile-link:hover { background: var(--bg-secondary); color: var(--primary-color); }
.navbar-mobile-link i { width: 18px; text-align: center; font-size: 0.95rem; color: var(--primary-color); }
.navbar-mobile-divider { height: 1px; background: var(--border-color); margin: 0.4rem 0; }
.navbar-mobile-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
}
.navbar-mobile-langs a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border: 1.5px solid var(--border-color);
    border-radius: 999px;
    transition: all 0.18s;
}
.navbar-mobile-langs a:hover,
.navbar-mobile-langs a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.navbar-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.4rem 0.75rem 0;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.navbar-mobile-btn:hover { opacity: 0.9; color: #fff; }

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }

    /* Cacher les liens desktop, montrer le burger */
    .nav-links {
        display: none !important;
    }
    .navbar-burger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* Désactiver le survol sur mobile pour le dropdown desktop */
    .language-selector:hover .language-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
    .language-dropdown.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Footer contact sur très petits écrans */
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .lpp-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .consultation-features {
        flex-direction: column;
        align-items: center;
    }
    
    .admin-controls {
        padding: 1rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        justify-content: space-between;
    }
    
    .filter-select {
        min-width: auto;
        flex: 1;
    }
    
    .search-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .export-csv-btn {
        width: 100%;
        justify-content: center;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .requests-table {
        font-size: 0.8rem;
    }
    
    .requests-table th,
    .requests-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        min-width: auto;
        padding: 0;
    }
    
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-label {
        padding: 0.5rem;
    }
    
    /* Pagination responsive */
    .pagination-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pagination-info {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .consultation-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    /* Pagination sur très petits écrans */
    .pagination-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .pagination-btn i {
        display: none; /* Masquer les icônes sur très petits écrans */
    }
}

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

.hero-content,
.section-header,
.stat-card,
.consultation-card {
    animation: fadeIn 0.6s ease-out;
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #243e59 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOutLoader 0.8s ease-out 1.5s forwards;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-left: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

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

@keyframes fadeOutLoader {
    0% { 
        opacity: 1;
        visibility: visible;
    }
    100% { 
        opacity: 0;
        visibility: hidden;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}
