/* Styles pour la page 404 */
.error-404-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    font-family: Outfit, sans-serif;
}

.error-404-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.error-404-content {
    flex: 1;
    max-width: 600px;
}

.error-404-title {
    font-family: Outfit, sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color-rent-car);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(245, 183, 84, 0.2);
}

.error-404-subtitle {
    font-family: Outfit, sans-serif;
    font-size: 36px;
    color: #333;
    margin: 20px 0;
    font-weight: 500;
}

.error-404-text {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary-404,
.btn-secondary-404 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: Outfit, sans-serif;
}

.btn-primary-404 {
    background-color: var(--primary-color-rent-car);
    color: white;
    border: 2px solid var(--primary-color-rent-car);
}

.btn-secondary-404 {
    background-color: transparent;
    color: var(--primary-color-rent-car);
    border: 2px solid var(--primary-color-rent-car);
}

.btn-primary-404:hover {
    background-color: transparent;
    color: var(--primary-color-rent-car);
}

.btn-secondary-404:hover {
    background-color: var(--primary-color-rent-car);
    color: white;
}

.error-404-image {
    flex: 1;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

.error-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(245, 183, 84, 0.1));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .error-404-container {
        flex-direction: column;
        text-align: center;
    }

    .error-404-content,
    .error-404-image {
        max-width: 100%;
    }

    .error-404-actions {
        justify-content: center;
    }

    .error-404-title {
        font-size: 100px;
    }

    .error-404-subtitle {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .error-404-actions {
        flex-direction: column;
    }

    .btn-primary-404,
    .btn-secondary-404 {
        width: 100%;
        justify-content: center;
    }

    .error-404-title {
        font-size: 80px;
    }

    .error-404-subtitle {
        font-size: 24px;
    }

    .error-404-text {
        font-size: 16px;
    }
}